1998-09-28 22:37:16 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef nsIMenuButton_h___
|
|
|
|
#define nsIMenuButton_h___
|
|
|
|
|
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsGUIEvent.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsColor.h"
|
|
|
|
#include "nsIImageButton.h"
|
|
|
|
|
|
|
|
#define NS_IMENUBUTTON_IID \
|
|
|
|
{ 0x67b8e261, 0x53c3, 0x11d2, \
|
|
|
|
{ 0x8d, 0xc4, 0x0, 0x60, 0x97, 0x3, 0xc1, 0x4e } }
|
|
|
|
|
|
|
|
/*
|
|
|
|
typedef enum {
|
|
|
|
eButtonVerticalAligment_Top,
|
|
|
|
eButtonVerticalAligment_Center,
|
|
|
|
eButtonVerticalAligment_Bottom
|
|
|
|
} nsButtonVerticalAligment;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
eButtonHorizontalAligment_Left,
|
|
|
|
eButtonHorizontalAligment_Middle,
|
|
|
|
eButtonHorizontalAligment_Right
|
|
|
|
} nsButtonHorizontalAligment;
|
|
|
|
*/
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
class nsIMenuButton : public nsISupports
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the label on the Menu Button
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetLabel(const nsString& aString) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the label on the Menu Button
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetLabel(nsString& aString) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the description that is available when the mouse enters the control
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetRollOverDesc(const nsString& aString) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the description that is available when the mouse enters the control
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetRollOverDesc(nsString& aString) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the command for the Menu Button
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetCommand(PRInt32 &aCommand) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the command for the Menu Button
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetCommand(PRInt32 aCommand) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the border highlight color
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetHighlightColor(const nscolor &aColor) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the border highlight color
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetHighlightColor(nscolor &aColor) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the Shadow highlight color
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetShadowColor(nscolor &aColor) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the Shadow highlight color
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetShadowColor(const nscolor &aColor) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the Dimensions of the Image in the button
|
|
|
|
* (The dimensions should come from the image)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetImageDimensions(const PRInt32 & aWidth, const PRInt32 & aHeight) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the URLs for the Buttons images
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetImageURLs(const nsString& aUpURL,
|
|
|
|
const nsString& aPressedURL,
|
|
|
|
const nsString& aDisabledURL,
|
|
|
|
const nsString& aRollOverURL) = 0;
|
1998-11-06 02:24:50 +00:00
|
|
|
NS_IMETHOD SetImageUpURL(const nsString& aUpURL) = 0;
|
|
|
|
NS_IMETHOD SetImagePressedURL(const nsString& aPressedURL) = 0;
|
|
|
|
NS_IMETHOD SetImageDisabledURL(const nsString& aDisabledURL) = 0;
|
|
|
|
NS_IMETHOD SetImageRollOverURL(const nsString& aRollOverURL) = 0;
|
|
|
|
|
1998-09-28 22:37:16 +00:00
|
|
|
/**
|
|
|
|
* Sets the width of the border
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetBorderWidth(PRInt32 aWidth) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the width of the space between the border and the text or image
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetBorderOffset(PRInt32 aWidth) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets whether the Border show be shown
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetShowBorder(PRBool aState) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets whether the Border show be shown
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetShowButtonBorder(PRBool aState) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets whether the text should be shown
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetShowText(PRBool aState) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets whether the image should be shown
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetShowImage(PRBool aState) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the image's vertical alignment
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetImageVerticalAlignment(nsButtonVerticalAligment aAlign) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the image's horizontal alignment
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetImageHorizontalAlignment(nsButtonHorizontalAligment aAlign) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the text's vertical alignment
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetTextVerticalAlignment(nsButtonVerticalAligment aAlign) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the text's horizontal alignment
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetTextHorizontalAlignment(nsButtonHorizontalAligment aAlign) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show border at all times
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetAlwaysShowBorder(PRBool aState) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show border at all times
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SwapHighlightShadowColors() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* HandleGUI Events
|
|
|
|
*
|
|
|
|
*/
|
1998-11-05 21:03:04 +00:00
|
|
|
NS_IMETHOD_(nsEventStatus) HandleEvent(nsGUIEvent *aEvent) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle OnPaint
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD_(nsEventStatus) OnPaint(nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect) = 0;
|
1998-09-28 22:37:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the PopUp on the Image Button
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetPopUpMenu(nsIPopUpMenu *& aPopUpMenu) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Appends a MenuItem to the PopUp
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD AddMenuItem(const nsString& aMenuLabel, PRInt32 aCommand) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Inserts a MenuItem into the PopUp
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD InsertMenuItem(const nsString& aMenuLabel, PRInt32 aCommand, PRInt32 aPos) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes a MenuItem from the PopUp at a specified location
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD RemovesMenuItem(PRInt32 aPos) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes all the MenuItems from the PopUp
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD RemoveAllMenuItems(PRInt32 aPos) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add Menu Button Listener
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD AddListener(nsIImageButtonListener * aListener) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes Menu Button Listener
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD RemoveListener(nsIImageButtonListener * aListener) = 0;
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsIMenuButton_h___ */
|
|
|
|
|