]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: statusbr.h | |
e54c96f1 | 3 | // Purpose: interface of wxStatusBar |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
526954c5 | 6 | // Licence: wxWindows licence |
23324ae1 FM |
7 | ///////////////////////////////////////////////////////////////////////////// |
8 | ||
b31eaa5c FM |
9 | /** |
10 | @class wxStatusBarPane | |
41d6e8b6 | 11 | |
b31eaa5c | 12 | A status bar pane data container used by wxStatusBar. |
7235c54d FM |
13 | |
14 | @library{wxcore} | |
50b75fe3 | 15 | @category{data} |
7235c54d FM |
16 | |
17 | @see wxStatusBar | |
b31eaa5c FM |
18 | */ |
19 | class wxStatusBarPane | |
20 | { | |
21 | public: | |
22 | /** | |
23 | Constructs the pane with the given @a style and @a width. | |
24 | */ | |
25 | wxStatusBarPane(int style = wxSB_NORMAL, size_t width = 0); | |
c94bdf2a | 26 | |
b31eaa5c FM |
27 | /** |
28 | Returns the pane width; it maybe negative, indicating a variable-width field. | |
29 | */ | |
30 | int GetWidth() const; | |
c94bdf2a | 31 | |
b31eaa5c FM |
32 | /** |
33 | Returns the pane style. | |
34 | */ | |
35 | int GetStyle() const; | |
41d6e8b6 | 36 | |
b31eaa5c | 37 | /** |
6cf68971 VZ |
38 | Returns the text currently shown in this pane. |
39 | */ | |
40 | wxString GetText() const; | |
b31eaa5c FM |
41 | }; |
42 | ||
23324ae1 FM |
43 | /** |
44 | @class wxStatusBar | |
7c913512 | 45 | |
23324ae1 | 46 | A status bar is a narrow window that can be placed along the bottom of a frame |
4701dc09 FM |
47 | to give small amounts of status information. It can contain one or more fields, |
48 | one or more of which can be variable length according to the size of the window. | |
41d6e8b6 | 49 | |
30800ba5 FM |
50 | wxStatusBar also maintains an independent stack of status texts for each field |
51 | (see PushStatusText() and PopStatusText()). | |
52 | ||
c94bdf2a | 53 | Note that in wxStatusBar context, the terms @e pane and @e field are synonyms. |
7c913512 | 54 | |
23324ae1 | 55 | @beginStyleTable |
c4c178c1 | 56 | @style{wxSTB_SIZEGRIP} |
c94bdf2a FM |
57 | Displays a gripper at the right-hand side of the status bar which can be used |
58 | to resize the parent window. | |
c4c178c1 FM |
59 | @style{wxSTB_SHOW_TIPS} |
60 | Displays tooltips for those panes whose status text has been ellipsized/truncated | |
61 | because the status text doesn't fit the pane width. | |
c94bdf2a | 62 | Note that this style has effect only on wxGTK (with GTK+ >= 2.12) currently. |
c4c178c1 FM |
63 | @style{wxSTB_ELLIPSIZE_START} |
64 | Replace the beginning of the status texts with an ellipsis when the status text | |
65 | widths exceed the status bar pane's widths (uses wxControl::Ellipsize). | |
66 | @style{wxSTB_ELLIPSIZE_MIDDLE} | |
67 | Replace the middle of the status texts with an ellipsis when the status text | |
68 | widths exceed the status bar pane's widths (uses wxControl::Ellipsize). | |
69 | @style{wxSTB_ELLIPSIZE_END} | |
70 | Replace the end of the status texts with an ellipsis when the status text | |
71 | widths exceed the status bar pane's widths (uses wxControl::Ellipsize). | |
72 | @style{wxSTB_DEFAULT_STYLE} | |
41d6e8b6 VZ |
73 | The default style: includes |
74 | @c wxSTB_SIZEGRIP|wxSTB_SHOW_TIPS|wxSTB_ELLIPSIZE_END|wxFULL_REPAINT_ON_RESIZE. | |
23324ae1 | 75 | @endStyleTable |
7c913512 | 76 | |
4701dc09 FM |
77 | @remarks |
78 | It is possible to create controls and other windows on the status bar. | |
bb69632a | 79 | Position these windows from an OnSize() event handler. |
4701dc09 | 80 | |
2521c1ba VZ |
81 | @remarks |
82 | Notice that only the first 127 characters of a string will be shown in | |
83 | status bar fields under pre-XP MSW systems (or even under later systems if | |
84 | a proper manifest indicating that the program uses version 6 of common | |
85 | controls library is not used). This is a limitation of the native control | |
86 | on these platforms. | |
87 | ||
23324ae1 FM |
88 | @library{wxcore} |
89 | @category{miscwnd} | |
7c913512 | 90 | |
b31eaa5c | 91 | @see wxStatusBarPane, wxFrame, @ref page_samples_statbar |
23324ae1 | 92 | */ |
f771bae3 | 93 | class wxStatusBar : public wxControl |
23324ae1 FM |
94 | { |
95 | public: | |
4701dc09 FM |
96 | /** |
97 | Default ctor. | |
98 | */ | |
99 | wxStatusBar(); | |
100 | ||
23324ae1 FM |
101 | /** |
102 | Constructor, creating the window. | |
3c4f71cc | 103 | |
7c913512 | 104 | @param parent |
4cc4bfaf | 105 | The window parent, usually a frame. |
7c913512 | 106 | @param id |
4701dc09 FM |
107 | The window identifier. |
108 | It may take a value of -1 to indicate a default value. | |
7c913512 | 109 | @param style |
4cc4bfaf | 110 | The window style. See wxStatusBar. |
7c913512 | 111 | @param name |
4cc4bfaf | 112 | The name of the window. This parameter is used to associate a name with the |
4701dc09 | 113 | item, allowing the application user to set Motif resource values for |
4cc4bfaf | 114 | individual windows. |
3c4f71cc | 115 | |
4cc4bfaf | 116 | @see Create() |
23324ae1 | 117 | */ |
7c913512 | 118 | wxStatusBar(wxWindow* parent, wxWindowID id = wxID_ANY, |
c4c178c1 | 119 | long style = wxSTB_DEFAULT_STYLE, |
11e3af6e | 120 | const wxString& name = wxStatusBarNameStr); |
23324ae1 FM |
121 | |
122 | /** | |
123 | Destructor. | |
124 | */ | |
adaaa686 | 125 | virtual ~wxStatusBar(); |
23324ae1 FM |
126 | |
127 | /** | |
128 | Creates the window, for two-step construction. | |
23324ae1 FM |
129 | See wxStatusBar() for details. |
130 | */ | |
131 | bool Create(wxWindow* parent, wxWindowID id = wxID_ANY, | |
c4c178c1 | 132 | long style = wxSTB_DEFAULT_STYLE, |
43c48e1e | 133 | const wxString& name = wxStatusBarNameStr); |
23324ae1 FM |
134 | |
135 | /** | |
136 | Returns the size and position of a field's internal bounding rectangle. | |
3c4f71cc | 137 | |
7c913512 | 138 | @param i |
4cc4bfaf | 139 | The field in question. |
7c913512 | 140 | @param rect |
4cc4bfaf | 141 | The rectangle values are placed in this variable. |
3c4f71cc | 142 | |
d29a9a8a | 143 | @return @true if the field index is valid, @false otherwise. |
3c4f71cc | 144 | |
1058f652 MB |
145 | @beginWxPerlOnly |
146 | In wxPerl this function returns a @c Wx::Rect if the field | |
147 | index is valid, @c undef otherwise. | |
148 | @endWxPerlOnly | |
149 | ||
4cc4bfaf | 150 | @see wxRect |
23324ae1 | 151 | */ |
328f5751 | 152 | virtual bool GetFieldRect(int i, wxRect& rect) const; |
41d6e8b6 | 153 | |
4df02e42 | 154 | /** |
41d6e8b6 | 155 | Returns the number of fields in the status bar. |
4df02e42 FM |
156 | */ |
157 | int GetFieldsCount() const; | |
41d6e8b6 | 158 | |
23324ae1 | 159 | /** |
b31eaa5c | 160 | Returns the wxStatusBarPane representing the @a n-th field. |
23324ae1 | 161 | */ |
f18e1cf1 | 162 | const wxStatusBarPane& GetField(int n) const; |
41d6e8b6 | 163 | |
c94bdf2a FM |
164 | /** |
165 | Returns the horizontal and vertical borders used when rendering the field | |
166 | text inside the field area. | |
41d6e8b6 | 167 | |
c94bdf2a FM |
168 | Note that the rect returned by GetFieldRect() already accounts for the |
169 | presence of horizontal and vertical border returned by this function. | |
170 | */ | |
171 | wxSize GetBorders() const; | |
41d6e8b6 | 172 | |
23324ae1 FM |
173 | /** |
174 | Returns the string associated with a status bar field. | |
3c4f71cc | 175 | |
7c913512 | 176 | @param i |
4cc4bfaf | 177 | The number of the status field to retrieve, starting from zero. |
3c4f71cc | 178 | |
d29a9a8a | 179 | @return The status field string if the field is valid, otherwise the |
4701dc09 | 180 | empty string. |
3c4f71cc | 181 | |
4cc4bfaf | 182 | @see SetStatusText() |
23324ae1 | 183 | */ |
328f5751 | 184 | virtual wxString GetStatusText(int i = 0) const; |
23324ae1 | 185 | |
b31eaa5c FM |
186 | /** |
187 | Returns the width of the @a n-th field. | |
41d6e8b6 | 188 | |
b31eaa5c FM |
189 | See wxStatusBarPane::GetWidth() for more info. |
190 | */ | |
f18e1cf1 | 191 | int GetStatusWidth(int n) const; |
b31eaa5c FM |
192 | |
193 | /** | |
194 | Returns the style of the @a n-th field. | |
41d6e8b6 | 195 | |
b31eaa5c FM |
196 | See wxStatusBarPane::GetStyle() for more info. |
197 | */ | |
f18e1cf1 | 198 | int GetStatusStyle(int n) const; |
41d6e8b6 | 199 | |
23324ae1 | 200 | /** |
6cf68971 VZ |
201 | Restores the text to the value it had before the last call to |
202 | PushStatusText(). | |
203 | ||
204 | Notice that if SetStatusText() had been called in the meanwhile, | |
205 | PopStatusText() will not change the text, i.e. it does not override | |
206 | explicit changes to status text but only restores the saved text if it | |
207 | hadn't been changed since. | |
3c4f71cc | 208 | |
4cc4bfaf | 209 | @see PushStatusText() |
23324ae1 FM |
210 | */ |
211 | void PopStatusText(int field = 0); | |
212 | ||
213 | /** | |
6cf68971 VZ |
214 | Saves the current field text in a per-field stack, and sets the field |
215 | text to the string passed as argument. | |
fd3ece57 FM |
216 | |
217 | @see PopStatusText() | |
23324ae1 FM |
218 | */ |
219 | void PushStatusText(const wxString& string, int field = 0); | |
220 | ||
221 | /** | |
222 | Sets the number of fields, and optionally the field widths. | |
3c4f71cc | 223 | |
7c913512 | 224 | @param number |
0cd15959 FM |
225 | The number of fields. If this is greater than the previous number, |
226 | then new fields with empty strings will be added to the status bar. | |
7c913512 | 227 | @param widths |
4cc4bfaf | 228 | An array of n integers interpreted in the same way as |
4701dc09 | 229 | in SetStatusWidths(). |
1058f652 MB |
230 | |
231 | @beginWxPerlOnly | |
232 | In wxPerl this function accepts only the @a number parameter. | |
233 | Use SetStatusWidths to set the field widths. | |
234 | @endWxPerlOnly | |
23324ae1 | 235 | */ |
43c48e1e | 236 | virtual void SetFieldsCount(int number = 1, const int* widths = NULL); |
23324ae1 FM |
237 | |
238 | /** | |
4701dc09 FM |
239 | Sets the minimal possible height for the status bar. |
240 | ||
241 | The real height may be bigger than the height specified here depending | |
242 | on the size of the font used by the status bar. | |
23324ae1 | 243 | */ |
adaaa686 | 244 | virtual void SetMinHeight(int height); |
23324ae1 FM |
245 | |
246 | /** | |
247 | Sets the styles of the fields in the status line which can make fields appear | |
4701dc09 | 248 | flat or raised instead of the standard sunken 3D border. |
3c4f71cc | 249 | |
7c913512 | 250 | @param n |
4cc4bfaf | 251 | The number of fields in the status bar. Must be equal to the |
4701dc09 | 252 | number passed to SetFieldsCount() the last time it was called. |
7c913512 | 253 | @param styles |
41d6e8b6 | 254 | Contains an array of @a n integers with the styles for each field. |
c4c178c1 FM |
255 | There are three possible styles: |
256 | - @c wxSB_NORMAL (default): The field appears sunken with a standard 3D border. | |
257 | - @c wxSB_FLAT: No border is painted around the field so that it appears flat. | |
258 | - @c wxSB_RAISED: A raised 3D border is painted around the field. | |
23324ae1 | 259 | */ |
43c48e1e | 260 | virtual void SetStatusStyles(int n, const int* styles); |
23324ae1 FM |
261 | |
262 | /** | |
30800ba5 | 263 | Sets the status text for the @a i-th field. |
41d6e8b6 | 264 | |
6cf68971 VZ |
265 | The given text will replace the current text. |
266 | ||
267 | Note that if PushStatusText() had been called before the new text will | |
268 | also replace the last saved value to make sure that the next call to | |
269 | PopStatusText() doesn't restore the old value, which was overwritten by | |
270 | the call to this function. | |
3c4f71cc | 271 | |
7c913512 | 272 | @param text |
4cc4bfaf | 273 | The text to be set. Use an empty string ("") to clear the field. |
7c913512 | 274 | @param i |
4cc4bfaf | 275 | The field to set, starting from zero. |
3c4f71cc | 276 | |
4cc4bfaf | 277 | @see GetStatusText(), wxFrame::SetStatusText |
23324ae1 FM |
278 | */ |
279 | virtual void SetStatusText(const wxString& text, int i = 0); | |
280 | ||
281 | /** | |
282 | Sets the widths of the fields in the status line. There are two types of | |
54e18afc | 283 | fields: @b fixed widths and @b variable width fields. For the fixed width fields |
23324ae1 FM |
284 | you should specify their (constant) width in pixels. For the variable width |
285 | fields, specify a negative number which indicates how the field should expand: | |
286 | the space left for all variable width fields is divided between them according | |
287 | to the absolute value of this number. A variable width field with width of -2 | |
288 | gets twice as much of it as a field with width -1 and so on. | |
4701dc09 | 289 | |
23324ae1 FM |
290 | For example, to create one fixed width field of width 100 in the right part of |
291 | the status bar and two more fields which get 66% and 33% of the remaining | |
292 | space correspondingly, you should use an array containing -2, -1 and 100. | |
3c4f71cc | 293 | |
7c913512 | 294 | @param n |
4cc4bfaf | 295 | The number of fields in the status bar. Must be equal to the |
4701dc09 | 296 | number passed to SetFieldsCount() the last time it was called. |
f21dd16b | 297 | @param widths_field |
4701dc09 FM |
298 | Contains an array of n integers, each of which is either an |
299 | absolute status field width in pixels if positive or indicates a | |
4cc4bfaf | 300 | variable width field if negative. |
fd3ece57 | 301 | The special value @NULL means that all fields should get the same width. |
3c4f71cc | 302 | |
23324ae1 | 303 | @remarks The widths of the variable fields are calculated from the total |
4cc4bfaf | 304 | width of all fields, minus the sum of widths of the |
4701dc09 | 305 | non-variable fields, divided by the number of variable fields. |
3c4f71cc | 306 | |
1058f652 MB |
307 | @beginWxPerlOnly |
308 | In wxPerl this method takes as parameters the field widths. | |
309 | @endWxPerlOnly | |
310 | ||
4701dc09 | 311 | @see SetFieldsCount(), wxFrame::SetStatusWidths() |
23324ae1 | 312 | */ |
43c48e1e | 313 | virtual void SetStatusWidths(int n, const int* widths_field); |
23324ae1 | 314 | }; |
e54c96f1 | 315 |