]>
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 /////////////////////////////////////////////////////////////////////////////
10 @class wxStatusBarPane
12 A status bar pane data container used by wxStatusBar.
23 Constructs the pane with the given @a style and @a width.
25 wxStatusBarPane(int style
= wxSB_NORMAL
, size_t width
= 0);
28 Returns the pane width; it maybe negative, indicating a variable-width field.
33 Returns the pane style.
38 Returns the stack of strings pushed on this pane.
40 Note that this stack does include also the string currently displayed in this pane
41 as the version stored in the native status bar control is possibly ellipsized.
43 Also note that GetStack().Last() is the top of the stack (i.e. the string shown
46 const wxArrayString
& GetStack() const;
52 A status bar is a narrow window that can be placed along the bottom of a frame
53 to give small amounts of status information. It can contain one or more fields,
54 one or more of which can be variable length according to the size of the window.
58 Displays a gripper at the right-hand side of the status bar.
62 It is possible to create controls and other windows on the status bar.
63 Position these windows from an OnSize() event handler.
68 @see wxStatusBarPane, wxFrame, @ref page_samples_statbar
70 class wxStatusBar
: public wxWindow
79 Constructor, creating the window.
82 The window parent, usually a frame.
84 The window identifier.
85 It may take a value of -1 to indicate a default value.
87 The window style. See wxStatusBar.
89 The name of the window. This parameter is used to associate a name with the
90 item, allowing the application user to set Motif resource values for
95 wxStatusBar(wxWindow
* parent
, wxWindowID id
= wxID_ANY
,
96 long style
= wxST_SIZEGRIP
,
97 const wxString
& name
= wxStatusBarNameStr
);
102 virtual ~wxStatusBar();
105 Creates the window, for two-step construction.
106 See wxStatusBar() for details.
108 bool Create(wxWindow
* parent
, wxWindowID id
= wxID_ANY
,
109 long style
= wxST_SIZEGRIP
,
110 const wxString
& name
= wxStatusBarNameStr
);
113 Returns the size and position of a field's internal bounding rectangle.
116 The field in question.
118 The rectangle values are placed in this variable.
120 @return @true if the field index is valid, @false otherwise.
124 virtual bool GetFieldRect(int i
, wxRect
& rect
) const;
127 Returns the number of fields in the status bar.
129 int GetFieldsCount() const;
132 Returns the wxStatusBarPane representing the @a n-th field.
134 const wxStatusBarPane
& GetField(int n
) const;
137 Returns the string associated with a status bar field.
140 The number of the status field to retrieve, starting from zero.
142 @return The status field string if the field is valid, otherwise the
147 virtual wxString
GetStatusText(int i
= 0) const;
150 Returns the stack of strings pushed (see PushStatusText()) on the
153 See wxStatusBarPane::GetStack() for more info.
155 const wxArrayString
& GetStatusStack(int n
) const;
158 Returns the width of the @a n-th field.
160 See wxStatusBarPane::GetWidth() for more info.
162 int GetStatusWidth(int n
) const;
165 Returns the style of the @a n-th field.
167 See wxStatusBarPane::GetStyle() for more info.
169 int GetStatusStyle(int n
) const;
172 Sets the field text to the top of the stack, and pops the stack of saved
175 @see PushStatusText()
177 void PopStatusText(int field
= 0);
180 Saves the current field text in a per field stack, and sets the field text
181 to the string passed as argument.
185 void PushStatusText(const wxString
& string
, int field
= 0);
188 Sets the number of fields, and optionally the field widths.
191 The number of fields. If this is greater than the previous number,
192 then new fields with empty strings will be added to the status bar.
194 An array of n integers interpreted in the same way as
195 in SetStatusWidths().
197 virtual void SetFieldsCount(int number
= 1, const int* widths
= NULL
);
200 Sets the minimal possible height for the status bar.
202 The real height may be bigger than the height specified here depending
203 on the size of the font used by the status bar.
205 virtual void SetMinHeight(int height
);
208 Sets the styles of the fields in the status line which can make fields appear
209 flat or raised instead of the standard sunken 3D border.
212 The number of fields in the status bar. Must be equal to the
213 number passed to SetFieldsCount() the last time it was called.
215 Contains an array of n integers with the styles for each field. There
216 are three possible styles:
217 - wxSB_NORMAL (default): The field appears sunken with a standard 3D border.
218 - wxSB_FLAT: No border is painted around the field so that it appears flat.
219 - wxSB_RAISED: A raised 3D border is painted around the field.
221 virtual void SetStatusStyles(int n
, const int* styles
);
224 Sets the text for one field.
227 The text to be set. Use an empty string ("") to clear the field.
229 The field to set, starting from zero.
231 @see GetStatusText(), wxFrame::SetStatusText
233 virtual void SetStatusText(const wxString
& text
, int i
= 0);
236 Sets the widths of the fields in the status line. There are two types of
237 fields: @b fixed widths and @b variable width fields. For the fixed width fields
238 you should specify their (constant) width in pixels. For the variable width
239 fields, specify a negative number which indicates how the field should expand:
240 the space left for all variable width fields is divided between them according
241 to the absolute value of this number. A variable width field with width of -2
242 gets twice as much of it as a field with width -1 and so on.
244 For example, to create one fixed width field of width 100 in the right part of
245 the status bar and two more fields which get 66% and 33% of the remaining
246 space correspondingly, you should use an array containing -2, -1 and 100.
249 The number of fields in the status bar. Must be equal to the
250 number passed to SetFieldsCount() the last time it was called.
252 Contains an array of n integers, each of which is either an
253 absolute status field width in pixels if positive or indicates a
254 variable width field if negative.
255 The special value @NULL means that all fields should get the same width.
257 @remarks The widths of the variable fields are calculated from the total
258 width of all fields, minus the sum of widths of the
259 non-variable fields, divided by the number of variable fields.
261 @see SetFieldsCount(), wxFrame::SetStatusWidths()
263 virtual void SetStatusWidths(int n
, const int* widths_field
);