wxStatusBar
The status bar should be a child of a
wxFrame.
Creation Parameters
- atom parent
- integer fields [= 1]
- integer style [= 0]
Functions/Procedures
- func get_field_rect( atom bar, atom field )
- func get_status_fields_count( atom bar )
- func get_status_text( atom bar, atom field )
- proc pop_status_text( atom bar, atom field )
- proc push_status_text( atom bar, sequence text, atom field )
- proc set_min_status_height( atom bar, atom height )
- proc set_status_fields( atom bar, sequence widths )
- proc set_status_styles( atom bar, object styles )
- proc set_status_text( atom bar, sequence text, integer field )
Supertopics
wxStatusBar
Category:
wxStatusBar
Returns the size and position of a field's internal bounding rectangle.
wxStatusBar
Category:
wxStatusBar
Returns the number of fields in the status bar.
wxStatusBar
Category:
wxStatusBar
Returns the string associated with a status bar field.
wxStatusBar
Category:
wxStatusBar
Sets the field text to the top of the stack, and pops the stack of saved strings.
wxStatusBar
Category:
wxStatusBar
Saves the current field text in a per field stack, and sets the field text to the string passed as argument.
wxStatusBar
Category:
wxStatusBar
Sets the minimal possible height for the status bar. The real height may be bigger than the height specified here depending on the size
of the font used by the status bar.
wxStatusBar
Category:
wxStatusBar
widths: An array of n integers, each of which is a status field width in pixels.
A value of -1 indicates that the field is variable width; at least one field must be -1.
wxStatusBar
Category:
wxStatusBar
Sets the styles of the fields in the status line which can make fields appear flat or raised instead of the standard sunken 3D border.
Parameters
- n The number of fields in the status bar. Must be equal to the number passed to SetFieldsCount the last time it was called.
- styles Contains an array of n integers with the styles for each field. There are three possible styles:
- wxSB_NORMAL (default) The field appears sunken with a standard 3D border.
- wxSB_FLAT No border is painted around the field so that it appears flat.
- wxSB_RAISED A raised 3D border is painted around the field.
wxStatusBar
[proc]
set_status_text ( atom bar, sequence text, integer field )
Category:
wxStatusBar
Set the status text of field field (zero based). This routine does
nothing if field refers to a non-existant status field.