]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/statusbr.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxStatusBar
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
12 A status bar is a narrow window that can be placed along the bottom of a frame
13 to give small amounts of status information. It can contain one or more fields,
14 one or more of which can be variable length according to the size of the window.
18 Displays a gripper at the right-hand side of the status bar.
22 It is possible to create controls and other windows on the status bar.
23 Position these windows from an OnSize() event handler.
28 @see wxFrame, @ref page_samples_statbar
30 class wxStatusBar
: public wxWindow
39 Constructor, creating the window.
42 The window parent, usually a frame.
44 The window identifier.
45 It may take a value of -1 to indicate a default value.
47 The window style. See wxStatusBar.
49 The name of the window. This parameter is used to associate a name with the
50 item, allowing the application user to set Motif resource values for
55 wxStatusBar(wxWindow
* parent
, wxWindowID id
= wxID_ANY
,
56 long style
= wxST_SIZEGRIP
,
57 const wxString
& name
= wxStatusBarNameStr
);
62 virtual ~wxStatusBar();
65 Creates the window, for two-step construction.
66 See wxStatusBar() for details.
68 bool Create(wxWindow
* parent
, wxWindowID id
= wxID_ANY
,
69 long style
= wxST_SIZEGRIP
,
70 const wxString
& name
= wxStatusBarNameStr
);
73 Returns the size and position of a field's internal bounding rectangle.
76 The field in question.
78 The rectangle values are placed in this variable.
80 @return @true if the field index is valid, @false otherwise.
84 virtual bool GetFieldRect(int i
, wxRect
& rect
) const;
87 Returns the number of fields in the status bar.
89 int GetFieldsCount() const;
92 Returns the string associated with a status bar field.
95 The number of the status field to retrieve, starting from zero.
97 @return The status field string if the field is valid, otherwise the
102 virtual wxString
GetStatusText(int i
= 0) const;
105 Sets the field text to the top of the stack, and pops the stack of saved
108 @see PushStatusText()
110 void PopStatusText(int field
= 0);
113 Saves the current field text in a per field stack, and sets the field text
114 to the string passed as argument.
118 void PushStatusText(const wxString
& string
, int field
= 0);
121 Sets the number of fields, and optionally the field widths.
124 The number of fields.
126 An array of n integers interpreted in the same way as
127 in SetStatusWidths().
129 virtual void SetFieldsCount(int number
= 1, const int* widths
= NULL
);
132 Sets the minimal possible height for the status bar.
134 The real height may be bigger than the height specified here depending
135 on the size of the font used by the status bar.
137 virtual void SetMinHeight(int height
);
140 Sets the styles of the fields in the status line which can make fields appear
141 flat or raised instead of the standard sunken 3D border.
144 The number of fields in the status bar. Must be equal to the
145 number passed to SetFieldsCount() the last time it was called.
147 Contains an array of n integers with the styles for each field. There
148 are three possible styles:
149 - wxSB_NORMAL (default): The field appears sunken with a standard 3D border.
150 - wxSB_FLAT: No border is painted around the field so that it appears flat.
151 - wxSB_RAISED: A raised 3D border is painted around the field.
153 virtual void SetStatusStyles(int n
, const int* styles
);
156 Sets the text for one field.
159 The text to be set. Use an empty string ("") to clear the field.
161 The field to set, starting from zero.
163 @see GetStatusText(), wxFrame::SetStatusText
165 virtual void SetStatusText(const wxString
& text
, int i
= 0);
168 Sets the widths of the fields in the status line. There are two types of
169 fields: @b fixed widths and @b variable width fields. For the fixed width fields
170 you should specify their (constant) width in pixels. For the variable width
171 fields, specify a negative number which indicates how the field should expand:
172 the space left for all variable width fields is divided between them according
173 to the absolute value of this number. A variable width field with width of -2
174 gets twice as much of it as a field with width -1 and so on.
176 For example, to create one fixed width field of width 100 in the right part of
177 the status bar and two more fields which get 66% and 33% of the remaining
178 space correspondingly, you should use an array containing -2, -1 and 100.
181 The number of fields in the status bar. Must be equal to the
182 number passed to SetFieldsCount() the last time it was called.
184 Contains an array of n integers, each of which is either an
185 absolute status field width in pixels if positive or indicates a
186 variable width field if negative.
187 The special value @NULL means that all fields should get the same width.
189 @remarks The widths of the variable fields are calculated from the total
190 width of all fields, minus the sum of widths of the
191 non-variable fields, divided by the number of variable fields.
193 @see SetFieldsCount(), wxFrame::SetStatusWidths()
195 virtual void SetStatusWidths(int n
, const int* widths_field
);