DVX_GUI/widgets/statbar/statbar.dhs

37 lines
773 B
Text

.section Widgets
.topic widget.statusbar
.title StatusBar
.toc 0 StatusBar
.index StatusBar
.index wgtStatusBar
.h2 StatusBar
A horizontal bar typically placed at the bottom of a window for displaying status text and informational widgets. Children are laid out horizontally.
Header: widgets/widgetStatusBar.h
.h3 Creation
.code
WidgetT *sb = wgtStatusBar(parent);
wgtLabel(sb, "Ready");
.endcode
.h3 Macro
.table
Macro Description
----- -----------
wgtStatusBar(parent) Create a status bar container.
.endtable
.h3 Properties
Uses common container properties. Add child widgets (labels, progress bars, etc.) to populate.
.h3 Events
StatusBar itself has no widget-specific events. Events fire on the child widgets.
.hr