GLOW API version 1.0 reference

Back to
Table of contents


class GlowSeparatorParams

General information

type: struct
inherits: GlowWidgetParams
module: glowSeparatorWidget

GlowSeparatorParams encloses parameters for construction of a GlowSeparatorWidget.

GLOW programs which use separators may need to use GlowSeparatorParams to construct a separator.

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 4.

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 true.

Parameter data specific to separator

GlowSeparatorWidget::Style style

Drawing style. Initial default is GlowSeparatorWidget::valleyStyle.

Color parameter data

GlowColor lightBevelColor
GlowColor darkBevelColor

Static Data

Defaults

static GlowSeparatorParams defaults

Default parameters. These are copied every time a new GlowSeparatorParams is constructed.

Methods

Constructor

GlowSeparatorParams(void)

Constructs a new parameter block, copying defaults

Back to
Table of contents


The GLOW Toolkit