|
Back to Table of contents |
General information |
type: struct
inherits: GlowWidgetParams
module: glowMenuButtonWidgetGlowMenuButtonParams encloses parameters for construction of a GlowMenuButtonWidget.
GLOW programs which use menu buttons may need to use GlowMenuButtonParams to construct a button.
Data |
General widget parameter data
These fields are inherited from GlowWidgetParams. Note that their default values may be different from those of the generic widget params.int width
Width of the widget. Initial default is 100.int height
Height of the widget. Initial default is 25.int x
X location of the upper left of the widget, in pixel coordinates of the parent widget. Initial default is 0.int y
Y location of the upper left of the widget, in pixel coordinates of the parent widget. Initial default is 0.long refcon
Reference constant for this widget. Initial default 0.bool clipping
Should the widget clip to its rectangle when drawing children. Initial default is false.Parameter data specific to menu buttons
const char* text
Label string for the button. Initial default is "".GlowFont font
Font for the button label. Initial default is GlowFont::helvetica12.GlowMenu* menu
Menu to attach to the button, or 0 for no menu. Default is 0.GlowMenuButtonWidget::IconType iconType
Icon to draw in the menu. Default is GlowMenuButtonWidget::menuIconint spacing
Spacing between items in the menu button. Default is 8.Color parameter data
GlowColor boxColor
GlowColor textColor
GlowColor iconColor
GlowColor hiliteBoxColor
GlowColor hiliteTextColor
GlowColor hiliteIconColor
GlowColor disableBoxColor
GlowColor disableTextColor
GlowColor disableIconColor
GlowColor disableOutlineColor
GlowColor lightBevelColor
GlowColor darkBevelColor
Static Data |
Defaults
static GlowMenuButtonParams defaults
Default parameters. These are copied every time a new GlowMenuButtonParams is constructed.
Methods |
Constructor
GlowMenuButtonParams(void)
Constructs a new parameter block, copying defaults
|
Back to Table of contents |
The GLOW Toolkit