Custom controls can be implemented and attached to the status bar, things like sliders, progress meters and so on.
![]() |
class GStatusBar : public GLayout { public: // Panes bool AppendPane(GStatusPane *Pane) GStatusPane *AppendPane(char *Text, int Width) }; |
Argument | Description |
GStatusPane *Pane | Pane to append. |
Appends an already constructed or custom pane.
Argument | Description |
char *Text | The initial text on the button. |
int Width | The width of the button. |
Constructs and appends a generic pane to the status bar.
Space is allocated to panes by aligning the panes to the right first and the left most pane takes up any remaining space.