]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: window.h | |
e54c96f1 | 3 | // Purpose: interface of wxWindow |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
526954c5 | 6 | // Licence: wxWindows licence |
23324ae1 FM |
7 | ///////////////////////////////////////////////////////////////////////////// |
8 | ||
e25cd775 | 9 | |
e25cd775 FM |
10 | /** |
11 | Valid values for wxWindow::ShowWithEffect() and wxWindow::HideWithEffect(). | |
12 | */ | |
13 | enum wxShowEffect | |
14 | { | |
ffa50e73 VZ |
15 | /** |
16 | No effect, equivalent to normal wxWindow::Show() or Hide() call. | |
17 | ||
18 | @since 2.9.1 | |
19 | */ | |
20 | wxSHOW_EFFECT_NONE, | |
21 | ||
e25cd775 FM |
22 | /// Roll window to the left |
23 | wxSHOW_EFFECT_ROLL_TO_LEFT, | |
24 | ||
25 | /// Roll window to the right | |
26 | wxSHOW_EFFECT_ROLL_TO_RIGHT, | |
27 | ||
28 | /// Roll window to the top | |
29 | wxSHOW_EFFECT_ROLL_TO_TOP, | |
30 | ||
31 | /// Roll window to the bottom | |
32 | wxSHOW_EFFECT_ROLL_TO_BOTTOM, | |
33 | ||
34 | /// Slide window to the left | |
35 | wxSHOW_EFFECT_SLIDE_TO_LEFT, | |
36 | ||
37 | /// Slide window to the right | |
38 | wxSHOW_EFFECT_SLIDE_TO_RIGHT, | |
39 | ||
40 | /// Slide window to the top | |
41 | wxSHOW_EFFECT_SLIDE_TO_TOP, | |
42 | ||
43 | /// Slide window to the bottom | |
44 | wxSHOW_EFFECT_SLIDE_TO_BOTTOM, | |
45 | ||
46 | /// Fade in or out effect | |
47 | wxSHOW_EFFECT_BLEND, | |
48 | ||
49 | /// Expanding or collapsing effect | |
89eeba54 RD |
50 | wxSHOW_EFFECT_EXPAND, |
51 | ||
52 | wxSHOW_EFFECT_MAX | |
e25cd775 FM |
53 | }; |
54 | ||
05b0355a | 55 | |
6b3b86fe RD |
56 | /** |
57 | flags for SendSizeEvent() | |
58 | */ | |
59 | enum | |
60 | { | |
61 | wxSEND_EVENT_POST = 1 | |
62 | }; | |
63 | ||
64 | ||
65 | ||
05b0355a RD |
66 | |
67 | /** | |
1995d517 | 68 | Struct containing all the visual attributes of a control. |
05b0355a RD |
69 | */ |
70 | struct wxVisualAttributes | |
71 | { | |
1995d517 | 72 | /// The font used for control label/text inside it. |
05b0355a RD |
73 | wxFont font; |
74 | ||
1995d517 | 75 | /// The foreground colour. |
05b0355a RD |
76 | wxColour colFg; |
77 | ||
1995d517 VZ |
78 | /** |
79 | The background colour. | |
80 | ||
81 | May be wxNullColour if the controls background colour is not solid. | |
82 | */ | |
05b0355a RD |
83 | wxColour colBg; |
84 | }; | |
85 | ||
86 | ||
e25cd775 FM |
87 | /** |
88 | Different window variants, on platforms like eg mac uses different | |
89 | rendering sizes. | |
90 | */ | |
91 | enum wxWindowVariant | |
92 | { | |
93 | wxWINDOW_VARIANT_NORMAL, //!< Normal size | |
94 | wxWINDOW_VARIANT_SMALL, //!< Smaller size (about 25 % smaller than normal) | |
95 | wxWINDOW_VARIANT_MINI, //!< Mini size (about 33 % smaller than normal) | |
96 | wxWINDOW_VARIANT_LARGE, //!< Large size (about 25 % larger than normal) | |
97 | wxWINDOW_VARIANT_MAX | |
98 | }; | |
99 | ||
100 | ||
23324ae1 FM |
101 | /** |
102 | @class wxWindow | |
7c913512 | 103 | |
e25cd775 | 104 | wxWindow is the base class for all windows and represents any visible object |
ccd4e1bc | 105 | on screen. All controls, top level windows and so on are windows. Sizers and |
23324ae1 | 106 | device contexts are not, however, as they don't appear on screen themselves. |
7c913512 | 107 | |
23324ae1 FM |
108 | Please note that all children of the window will be deleted automatically by |
109 | the destructor before the window itself is deleted which means that you don't | |
110 | have to worry about deleting them manually. Please see the @ref | |
962fb6d2 | 111 | overview_windowdeletion "window deletion overview" for more information. |
7c913512 | 112 | |
23324ae1 FM |
113 | Also note that in this, and many others, wxWidgets classes some |
114 | @c GetXXX() methods may be overloaded (as, for example, | |
962fb6d2 | 115 | wxWindow::GetSize or wxWindow::GetClientSize). In this case, the overloads |
23324ae1 FM |
116 | are non-virtual because having multiple virtual functions with the same name |
117 | results in a virtual function name hiding at the derived class level (in | |
118 | English, this means that the derived class has to override all overloaded | |
119 | variants if it overrides any of them). To allow overriding them in the derived | |
120 | class, wxWidgets uses a unique protected virtual @c DoGetXXX() method | |
121 | and all @c GetXXX() ones are forwarded to it, so overriding the former | |
122 | changes the behaviour of the latter. | |
7c913512 | 123 | |
23324ae1 | 124 | @beginStyleTable |
8c6791e4 | 125 | @style{wxBORDER_DEFAULT} |
23324ae1 | 126 | The window class will decide the kind of border to show, if any. |
8c6791e4 | 127 | @style{wxBORDER_SIMPLE} |
23324ae1 FM |
128 | Displays a thin border around the window. wxSIMPLE_BORDER is the |
129 | old name for this style. | |
8c6791e4 | 130 | @style{wxBORDER_SUNKEN} |
23324ae1 FM |
131 | Displays a sunken border. wxSUNKEN_BORDER is the old name for this |
132 | style. | |
8c6791e4 | 133 | @style{wxBORDER_RAISED} |
23324ae1 FM |
134 | Displays a raised border. wxRAISED_BORDER is the old name for this |
135 | style. | |
8c6791e4 | 136 | @style{wxBORDER_STATIC} |
23324ae1 FM |
137 | Displays a border suitable for a static control. wxSTATIC_BORDER |
138 | is the old name for this style. Windows only. | |
8c6791e4 | 139 | @style{wxBORDER_THEME} |
23324ae1 FM |
140 | Displays a native border suitable for a control, on the current |
141 | platform. On Windows XP or Vista, this will be a themed border; on | |
142 | most other platforms a sunken border will be used. For more | |
143 | information for themed borders on Windows, please see Themed | |
144 | borders on Windows. | |
8c6791e4 | 145 | @style{wxBORDER_NONE} |
23324ae1 FM |
146 | Displays no border, overriding the default border style for the |
147 | window. wxNO_BORDER is the old name for this style. | |
8c6791e4 | 148 | @style{wxBORDER_DOUBLE} |
23324ae1 | 149 | This style is obsolete and should not be used. |
8c6791e4 | 150 | @style{wxTRANSPARENT_WINDOW} |
23324ae1 FM |
151 | The window is transparent, that is, it will not receive paint |
152 | events. Windows only. | |
8c6791e4 | 153 | @style{wxTAB_TRAVERSAL} |
23324ae1 | 154 | Use this to enable tab traversal for non-dialog windows. |
8c6791e4 | 155 | @style{wxWANTS_CHARS} |
23324ae1 FM |
156 | Use this to indicate that the window wants to get all char/key |
157 | events for all keys - even for keys like TAB or ENTER which are | |
158 | usually used for dialog navigation and which wouldn't be generated | |
159 | without this style. If you need to use this style in order to get | |
160 | the arrows or etc., but would still like to have normal keyboard | |
161 | navigation take place, you should call Navigate in response to the | |
162 | key events for Tab and Shift-Tab. | |
8c6791e4 | 163 | @style{wxNO_FULL_REPAINT_ON_RESIZE} |
23324ae1 FM |
164 | On Windows, this style used to disable repainting the window |
165 | completely when its size is changed. Since this behaviour is now | |
166 | the default, the style is now obsolete and no longer has an effect. | |
8c6791e4 | 167 | @style{wxVSCROLL} |
23324ae1 FM |
168 | Use this style to enable a vertical scrollbar. Notice that this |
169 | style cannot be used with native controls which don't support | |
170 | scrollbars nor with top-level windows in most ports. | |
8c6791e4 | 171 | @style{wxHSCROLL} |
23324ae1 FM |
172 | Use this style to enable a horizontal scrollbar. The same |
173 | limitations as for wxVSCROLL apply to this style. | |
8c6791e4 | 174 | @style{wxALWAYS_SHOW_SB} |
23324ae1 FM |
175 | If a window has scrollbars, disable them instead of hiding them |
176 | when they are not needed (i.e. when the size of the window is big | |
177 | enough to not require the scrollbars to navigate it). This style is | |
178 | currently implemented for wxMSW, wxGTK and wxUniversal and does | |
179 | nothing on the other platforms. | |
8c6791e4 | 180 | @style{wxCLIP_CHILDREN} |
23324ae1 FM |
181 | Use this style to eliminate flicker caused by the background being |
182 | repainted, then children being painted over them. Windows only. | |
8c6791e4 | 183 | @style{wxFULL_REPAINT_ON_RESIZE} |
23324ae1 FM |
184 | Use this style to force a complete redraw of the window whenever it |
185 | is resized instead of redrawing just the part of the window | |
186 | affected by resizing. Note that this was the behaviour by default | |
187 | before 2.5.1 release and that if you experience redraw problems | |
188 | with code which previously used to work you may want to try this. | |
189 | Currently this style applies on GTK+ 2 and Windows only, and full | |
190 | repainting is always done on other platforms. | |
191 | @endStyleTable | |
7c913512 | 192 | |
23324ae1 | 193 | @beginExtraStyleTable |
8c6791e4 | 194 | @style{wxWS_EX_VALIDATE_RECURSIVELY} |
141794f1 FM |
195 | By default, wxWindow::Validate(), wxWindow::TransferDataTo() and |
196 | wxWindow::TransferDataFromWindow() only work on | |
197 | direct children of the window (compatible behaviour). | |
198 | Set this flag to make them recursively descend into all subwindows. | |
8c6791e4 | 199 | @style{wxWS_EX_BLOCK_EVENTS} |
23324ae1 FM |
200 | wxCommandEvents and the objects of the derived classes are |
201 | forwarded to the parent window and so on recursively by default. | |
202 | Using this flag for the given window allows to block this | |
203 | propagation at this window, i.e. prevent the events from being | |
e25cd775 | 204 | propagated further upwards. Dialogs have this flag on by default |
3e083d65 | 205 | for the reasons explained in the @ref overview_events. |
8c6791e4 | 206 | @style{wxWS_EX_TRANSIENT} |
23324ae1 FM |
207 | Don't use this window as an implicit parent for the other windows: |
208 | this must be used with transient windows as otherwise there is the | |
ccd4e1bc VZ |
209 | risk of creating a dialog/frame with this window as a parent, which |
210 | would lead to a crash if the parent were destroyed before the child. | |
e25cd775 FM |
211 | @style{wxWS_EX_CONTEXTHELP} |
212 | Under Windows, puts a query button on the caption. When pressed, | |
213 | Windows will go into a context-sensitive help mode and wxWidgets | |
141794f1 | 214 | will send a @c wxEVT_HELP event if the user clicked on an application window. |
4c025875 FM |
215 | This style cannot be used (because of the underlying native behaviour) |
216 | together with @c wxMAXIMIZE_BOX or @c wxMINIMIZE_BOX, so these two styles | |
217 | are automatically turned off if this one is used. | |
8c6791e4 | 218 | @style{wxWS_EX_PROCESS_IDLE} |
23324ae1 | 219 | This window should always process idle events, even if the mode set |
141794f1 | 220 | by wxIdleEvent::SetMode is @c wxIDLE_PROCESS_SPECIFIED. |
8c6791e4 | 221 | @style{wxWS_EX_PROCESS_UI_UPDATES} |
23324ae1 | 222 | This window should always process UI update events, even if the |
141794f1 | 223 | mode set by wxUpdateUIEvent::SetMode is @c wxUPDATE_UI_PROCESS_SPECIFIED. |
23324ae1 | 224 | @endExtraStyleTable |
7c913512 | 225 | |
3051a44a FM |
226 | @beginEventEmissionTable |
227 | @event{EVT_ACTIVATE(id, func)} | |
228 | Process a @c wxEVT_ACTIVATE event. See wxActivateEvent. | |
229 | @event{EVT_CHILD_FOCUS(func)} | |
230 | Process a @c wxEVT_CHILD_FOCUS event. See wxChildFocusEvent. | |
231 | @event{EVT_CONTEXT_MENU(func)} | |
232 | A right click (or other context menu command depending on platform) has been detected. | |
233 | See wxContextMenuEvent. | |
234 | @event{EVT_HELP(id, func)} | |
235 | Process a @c wxEVT_HELP event. See wxHelpEvent. | |
236 | @event{EVT_HELP_RANGE(id1, id2, func)} | |
237 | Process a @c wxEVT_HELP event for a range of ids. See wxHelpEvent. | |
238 | @event{EVT_DROP_FILES(func)} | |
239 | Process a @c wxEVT_DROP_FILES event. See wxDropFilesEvent. | |
240 | @event{EVT_ERASE_BACKGROUND(func)} | |
241 | Process a @c wxEVT_ERASE_BACKGROUND event. See wxEraseEvent. | |
242 | @event{EVT_SET_FOCUS(func)} | |
243 | Process a @c wxEVT_SET_FOCUS event. See wxFocusEvent. | |
244 | @event{EVT_KILL_FOCUS(func)} | |
245 | Process a @c wxEVT_KILL_FOCUS event. See wxFocusEvent. | |
246 | @event{EVT_IDLE(func)} | |
247 | Process a @c wxEVT_IDLE event. See wxIdleEvent. | |
248 | @event{EVT_JOY_*(func)} | |
249 | Processes joystick events. See wxJoystickEvent. | |
250 | @event{EVT_KEY_DOWN(func)} | |
251 | Process a @c wxEVT_KEY_DOWN event (any key has been pressed). | |
252 | See wxKeyEvent. | |
253 | @event{EVT_KEY_UP(func)} | |
254 | Process a @c wxEVT_KEY_UP event (any key has been released). | |
ff450486 | 255 | See wxKeyEvent. |
3051a44a FM |
256 | @event{EVT_CHAR(func)} |
257 | Process a @c wxEVT_CHAR event. | |
258 | See wxKeyEvent. | |
ff450486 VZ |
259 | @event{EVT_CHAR_HOOK(func)} |
260 | Process a @c wxEVT_CHAR_HOOK event. | |
261 | See wxKeyEvent. | |
3051a44a FM |
262 | @event{EVT_MOUSE_CAPTURE_LOST(func)} |
263 | Process a @c wxEVT_MOUSE_CAPTURE_LOST event. See wxMouseCaptureLostEvent. | |
264 | @event{EVT_MOUSE_CAPTURE_CHANGED(func)} | |
265 | Process a @c wxEVT_MOUSE_CAPTURE_CHANGED event. See wxMouseCaptureChangedEvent. | |
266 | @event{EVT_MOUSE_*(func)} | |
267 | See wxMouseEvent. | |
268 | @event{EVT_PAINT(func)} | |
269 | Process a @c wxEVT_PAINT event. See wxPaintEvent. | |
270 | @event{EVT_POWER_*(func)} | |
271 | The system power state changed. See wxPowerEvent. | |
272 | @event{EVT_SCROLLWIN_*(func)} | |
273 | Process scroll events. See wxScrollWinEvent. | |
274 | @event{EVT_SET_CURSOR(func)} | |
275 | Process a @c wxEVT_SET_CURSOR event. See wxSetCursorEvent. | |
3051a44a FM |
276 | @event{EVT_SIZE(func)} |
277 | Process a @c wxEVT_SIZE event. See wxSizeEvent. | |
278 | @event{EVT_SYS_COLOUR_CHANGED(func)} | |
279 | Process a @c wxEVT_SYS_COLOUR_CHANGED event. See wxSysColourChangedEvent. | |
280 | @endEventTable | |
281 | ||
23324ae1 | 282 | @library{wxcore} |
e25cd775 | 283 | @category{miscwnd} |
7c913512 | 284 | |
3051a44a | 285 | @see @ref overview_events, @ref overview_windowsizing |
23324ae1 FM |
286 | */ |
287 | class wxWindow : public wxEvtHandler | |
288 | { | |
289 | public: | |
1c7910c3 RR |
290 | /** |
291 | Default constructor | |
292 | */ | |
293 | wxWindow(); | |
a3ac93e3 | 294 | |
23324ae1 FM |
295 | /** |
296 | Constructs a window, which can be a child of a frame, dialog or any other | |
297 | non-control window. | |
3c4f71cc | 298 | |
7c913512 | 299 | @param parent |
4cc4bfaf | 300 | Pointer to a parent window. |
7c913512 | 301 | @param id |
4cc4bfaf | 302 | Window identifier. If wxID_ANY, will automatically create an identifier. |
7c913512 | 303 | @param pos |
4cc4bfaf | 304 | Window position. wxDefaultPosition indicates that wxWidgets |
e25cd775 FM |
305 | should generate a default position for the window. |
306 | If using the wxWindow class directly, supply an actual position. | |
7c913512 | 307 | @param size |
e25cd775 FM |
308 | Window size. wxDefaultSize indicates that wxWidgets should generate |
309 | a default size for the window. If no suitable size can be found, the | |
4cc4bfaf | 310 | window will be sized to 20x20 pixels so that the window is visible but |
e25cd775 | 311 | obviously not correctly sized. |
7c913512 | 312 | @param style |
4cc4bfaf | 313 | Window style. For generic window styles, please see wxWindow. |
7c913512 | 314 | @param name |
4cc4bfaf | 315 | Window name. |
23324ae1 | 316 | */ |
7c913512 FM |
317 | wxWindow(wxWindow* parent, wxWindowID id, |
318 | const wxPoint& pos = wxDefaultPosition, | |
319 | const wxSize& size = wxDefaultSize, | |
320 | long style = 0, | |
321 | const wxString& name = wxPanelNameStr); | |
23324ae1 FM |
322 | |
323 | /** | |
e25cd775 FM |
324 | Destructor. |
325 | ||
326 | Deletes all sub-windows, then deletes itself. Instead of using | |
327 | the @b delete operator explicitly, you should normally use Destroy() | |
328 | so that wxWidgets can delete a window only when it is safe to do so, in idle time. | |
3c4f71cc | 329 | |
75b00cf8 | 330 | @see @ref overview_windowdeletion "Window Deletion Overview", |
4cc4bfaf | 331 | Destroy(), wxCloseEvent |
23324ae1 | 332 | */ |
adaaa686 | 333 | virtual ~wxWindow(); |
23324ae1 | 334 | |
d0a67157 | 335 | |
05b0355a RD |
336 | bool Create(wxWindow *parent, |
337 | wxWindowID id, | |
338 | const wxPoint& pos = wxDefaultPosition, | |
339 | const wxSize& size = wxDefaultSize, | |
340 | long style = 0, | |
341 | const wxString& name = wxPanelNameStr); | |
342 | ||
d0a67157 FM |
343 | /** |
344 | @name Focus functions | |
345 | ||
346 | See also the static function FindFocus(). | |
347 | */ | |
348 | //@{ | |
349 | ||
23324ae1 FM |
350 | /** |
351 | This method may be overridden in the derived classes to return @false to | |
0824e369 VZ |
352 | indicate that this control doesn't accept input at all (i.e.\ behaves like |
353 | e.g.\ wxStaticText) and so doesn't need focus. | |
3c4f71cc | 354 | |
4cc4bfaf | 355 | @see AcceptsFocusFromKeyboard() |
23324ae1 | 356 | */ |
962fb6d2 | 357 | virtual bool AcceptsFocus() const; |
23324ae1 FM |
358 | |
359 | /** | |
360 | This method may be overridden in the derived classes to return @false to | |
361 | indicate that while this control can, in principle, have focus if the user | |
362 | clicks it with the mouse, it shouldn't be included in the TAB traversal chain | |
363 | when using the keyboard. | |
364 | */ | |
962fb6d2 | 365 | virtual bool AcceptsFocusFromKeyboard() const; |
23324ae1 | 366 | |
962fb6d2 | 367 | /** |
ccd4e1bc | 368 | Overridden to indicate whether this window or one of its children accepts |
962fb6d2 | 369 | focus. Usually it's the same as AcceptsFocus() but is overridden for |
e25cd775 | 370 | container windows. |
962fb6d2 RR |
371 | */ |
372 | virtual bool AcceptsFocusRecursively() const; | |
0c3140ca RD |
373 | |
374 | /** | |
375 | Can this window itself have focus? | |
376 | */ | |
377 | bool IsFocusable() const; | |
378 | ||
379 | /** | |
380 | Can this window have focus right now? | |
381 | ||
382 | If this method returns true, it means that calling SetFocus() will | |
383 | put focus either to this window or one of its children, if you need | |
384 | to know whether this window accepts focus itself, use IsFocusable() | |
385 | */ | |
386 | bool CanAcceptFocus() const; | |
387 | ||
388 | /** | |
389 | Can this window be assigned focus from keyboard right now? | |
390 | */ | |
391 | bool CanAcceptFocusFromKeyboard() const; | |
392 | ||
a3ac93e3 | 393 | |
23324ae1 | 394 | /** |
d0a67157 FM |
395 | Returns @true if the window (or in case of composite controls, its main |
396 | child window) has focus. | |
3c4f71cc | 397 | |
b9fc07ba VZ |
398 | @since 2.9.0 |
399 | ||
d0a67157 | 400 | @see FindFocus() |
23324ae1 | 401 | */ |
d0a67157 | 402 | virtual bool HasFocus() const; |
23324ae1 FM |
403 | |
404 | /** | |
d0a67157 FM |
405 | This method is only implemented by ports which have support for |
406 | native TAB traversal (such as GTK+ 2.0). | |
3c4f71cc | 407 | |
d0a67157 FM |
408 | It is called by wxWidgets' container control code to give the native |
409 | system a hint when doing TAB traversal. A call to this does not disable | |
410 | or change the effect of programmatically calling SetFocus(). | |
3c4f71cc | 411 | |
d0a67157 FM |
412 | @see wxFocusEvent, wxPanel::SetFocus, wxPanel::SetFocusIgnoringChildren |
413 | */ | |
414 | virtual void SetCanFocus(bool canFocus); | |
3c4f71cc | 415 | |
d0a67157 FM |
416 | /** |
417 | This sets the window to receive keyboard input. | |
418 | ||
419 | @see HasFocus(), wxFocusEvent, wxPanel::SetFocus, | |
420 | wxPanel::SetFocusIgnoringChildren | |
23324ae1 | 421 | */ |
d0a67157 | 422 | virtual void SetFocus(); |
23324ae1 FM |
423 | |
424 | /** | |
d0a67157 FM |
425 | This function is called by wxWidgets keyboard navigation code when the user |
426 | gives the focus to this window from keyboard (e.g. using @c TAB key). | |
427 | ||
428 | By default this method simply calls SetFocus() but | |
429 | can be overridden to do something in addition to this in the derived classes. | |
23324ae1 | 430 | */ |
d0a67157 FM |
431 | virtual void SetFocusFromKbd(); |
432 | ||
433 | //@} | |
434 | ||
23324ae1 FM |
435 | |
436 | /** | |
d0a67157 | 437 | @name Child management functions |
23324ae1 | 438 | */ |
d0a67157 | 439 | //@{ |
23324ae1 FM |
440 | |
441 | /** | |
d0a67157 FM |
442 | Adds a child window. This is called automatically by window creation |
443 | functions so should not be required by the application programmer. | |
444 | Notice that this function is mostly internal to wxWidgets and shouldn't be | |
445 | called by the user code. | |
e25cd775 | 446 | |
d0a67157 FM |
447 | @param child |
448 | Child window to add. | |
449 | */ | |
450 | virtual void AddChild(wxWindow* child); | |
e25cd775 | 451 | |
d0a67157 FM |
452 | /** |
453 | Destroys all children of a window. Called automatically by the destructor. | |
454 | */ | |
455 | bool DestroyChildren(); | |
3c4f71cc | 456 | |
d0a67157 FM |
457 | /** |
458 | Find a child of this window, by @a id. | |
459 | May return @a this if it matches itself. | |
23324ae1 | 460 | */ |
d0a67157 | 461 | wxWindow* FindWindow(long id) const; |
23324ae1 FM |
462 | |
463 | /** | |
d0a67157 FM |
464 | Find a child of this window, by name. |
465 | May return @a this if it matches itself. | |
23324ae1 | 466 | */ |
d0a67157 | 467 | wxWindow* FindWindow(const wxString& name) const; |
23324ae1 FM |
468 | |
469 | /** | |
d0a67157 FM |
470 | Returns a reference to the list of the window's children. @c wxWindowList |
471 | is a type-safe wxList-like class whose elements are of type @c wxWindow*. | |
23324ae1 | 472 | */ |
d0a67157 | 473 | wxWindowList& GetChildren(); |
23324ae1 FM |
474 | |
475 | /** | |
d0a67157 FM |
476 | @overload |
477 | */ | |
478 | const wxWindowList& GetChildren() const; | |
3c4f71cc | 479 | |
d0a67157 FM |
480 | /** |
481 | Removes a child window. | |
3c4f71cc | 482 | |
d0a67157 FM |
483 | This is called automatically by window deletion functions so should not |
484 | be required by the application programmer. | |
485 | Notice that this function is mostly internal to wxWidgets and shouldn't be | |
486 | called by the user code. | |
3c4f71cc | 487 | |
d0a67157 FM |
488 | @param child |
489 | Child window to remove. | |
23324ae1 | 490 | */ |
d0a67157 | 491 | virtual void RemoveChild(wxWindow* child); |
3c4f71cc | 492 | |
d0a67157 | 493 | //@} |
3c4f71cc | 494 | |
3c4f71cc | 495 | |
d0a67157 FM |
496 | /** |
497 | @name Sibling and parent management functions | |
23324ae1 | 498 | */ |
d0a67157 | 499 | //@{ |
23324ae1 FM |
500 | |
501 | /** | |
d0a67157 | 502 | Returns the grandparent of a window, or @NULL if there isn't one. |
23324ae1 | 503 | */ |
d0a67157 | 504 | wxWindow* GetGrandParent() const; |
23324ae1 | 505 | |
23324ae1 | 506 | /** |
ccd4e1bc | 507 | Returns the next window after this one among the parent's children or @NULL |
d0a67157 | 508 | if this window is the last child. |
3c4f71cc | 509 | |
d0a67157 | 510 | @since 2.8.8 |
e25cd775 | 511 | |
d0a67157 | 512 | @see GetPrevSibling() |
23324ae1 | 513 | */ |
d0a67157 | 514 | wxWindow* GetNextSibling() const; |
f41d6c8c FM |
515 | |
516 | /** | |
d0a67157 | 517 | Returns the parent of the window, or @NULL if there is no parent. |
f41d6c8c | 518 | */ |
d0a67157 | 519 | wxWindow* GetParent() const; |
23324ae1 FM |
520 | |
521 | /** | |
ccd4e1bc | 522 | Returns the previous window before this one among the parent's children or @c |
d0a67157 | 523 | @NULL if this window is the first child. |
491a5ece VS |
524 | |
525 | @since 2.8.8 | |
526 | ||
d0a67157 | 527 | @see GetNextSibling() |
23324ae1 | 528 | */ |
d0a67157 | 529 | wxWindow* GetPrevSibling() const; |
8b2f64c6 VZ |
530 | |
531 | /** | |
532 | Check if the specified window is a descendant of this one. | |
533 | ||
534 | Returns @true if the window is a descendant (i.e. a child or | |
535 | grand-child or grand-grand-child or ...) of this one. | |
536 | ||
537 | Notice that a window can never be a descendant of another one if they | |
538 | are in different top level windows, i.e. a child of a wxDialog is not | |
539 | considered to be a descendant of dialogs parent wxFrame. | |
540 | ||
541 | @param win Any window, possible @NULL (@false is always returned then). | |
542 | ||
543 | @since 2.9.4 | |
544 | */ | |
545 | bool IsDescendant(wxWindowBase* win) const; | |
546 | ||
491a5ece | 547 | /** |
0824e369 | 548 | Reparents the window, i.e.\ the window will be removed from its |
d0a67157 FM |
549 | current parent window (e.g. a non-standard toolbar in a wxFrame) |
550 | and then re-inserted into another. | |
491a5ece | 551 | |
013b0209 VZ |
552 | Notice that currently you need to explicitly call |
553 | wxNotebook::RemovePage() before reparenting a notebook page. | |
554 | ||
d0a67157 FM |
555 | @param newParent |
556 | New parent. | |
557 | */ | |
558 | virtual bool Reparent(wxWindow* newParent); | |
491a5ece | 559 | |
d0a67157 | 560 | //@} |
491a5ece | 561 | |
d0a67157 FM |
562 | |
563 | /** | |
47009083 | 564 | @name Scrolling and scrollbars functions |
d9ced90b FM |
565 | |
566 | Note that these methods don't work with native controls which don't use | |
567 | wxWidgets scrolling framework (i.e. don't derive from wxScrolledWindow). | |
491a5ece | 568 | */ |
d0a67157 | 569 | //@{ |
491a5ece | 570 | |
23324ae1 | 571 | /** |
d0a67157 FM |
572 | Call this function to force one or both scrollbars to be always shown, even if |
573 | the window is big enough to show its entire contents without scrolling. | |
491a5ece | 574 | |
d0a67157 | 575 | @since 2.9.0 |
3c4f71cc | 576 | |
d0a67157 FM |
577 | @param hflag |
578 | Whether the horizontal scroll bar should always be visible. | |
579 | @param vflag | |
580 | Whether the vertical scroll bar should always be visible. | |
3c4f71cc | 581 | |
d0a67157 | 582 | @remarks This function is currently only implemented under Mac/Carbon. |
23324ae1 | 583 | */ |
d0a67157 | 584 | virtual void AlwaysShowScrollbars(bool hflag = true, bool vflag = true); |
23324ae1 | 585 | |
23324ae1 | 586 | /** |
d0a67157 | 587 | Returns the built-in scrollbar position. |
e25cd775 | 588 | |
d9ced90b | 589 | @see SetScrollbar() |
d0a67157 FM |
590 | */ |
591 | virtual int GetScrollPos(int orientation) const; | |
3c4f71cc | 592 | |
d0a67157 FM |
593 | /** |
594 | Returns the built-in scrollbar range. | |
3c4f71cc | 595 | |
d0a67157 | 596 | @see SetScrollbar() |
23324ae1 | 597 | */ |
d0a67157 | 598 | virtual int GetScrollRange(int orientation) const; |
23324ae1 | 599 | |
23324ae1 | 600 | /** |
d0a67157 | 601 | Returns the built-in scrollbar thumb size. |
3c4f71cc | 602 | |
d0a67157 | 603 | @see SetScrollbar() |
23324ae1 | 604 | */ |
d0a67157 | 605 | virtual int GetScrollThumb(int orientation) const; |
23324ae1 FM |
606 | |
607 | /** | |
c5cc7fbd VZ |
608 | Returns @true if this window can have a scroll bar in this orientation. |
609 | ||
610 | @param orient | |
611 | Orientation to check, either wxHORIZONTAL or wxVERTICAL. | |
612 | ||
613 | @since 2.9.1 | |
614 | */ | |
615 | bool CanScroll(int orient) const; | |
616 | ||
617 | /** | |
618 | Returns @true if this window currently has a scroll bar for this | |
619 | orientation. | |
620 | ||
621 | This method may return @false even when CanScroll() for the same | |
622 | orientation returns @true, but if CanScroll() returns @false, i.e. | |
623 | scrolling in this direction is not enabled at all, HasScrollbar() | |
624 | always returns @false as well. | |
3c4f71cc | 625 | |
d0a67157 FM |
626 | @param orient |
627 | Orientation to check, either wxHORIZONTAL or wxVERTICAL. | |
23324ae1 | 628 | */ |
d0a67157 | 629 | bool HasScrollbar(int orient) const; |
23324ae1 FM |
630 | |
631 | /** | |
d0a67157 FM |
632 | Return whether a scrollbar is always shown. |
633 | ||
634 | @param orient | |
635 | Orientation to check, either wxHORIZONTAL or wxVERTICAL. | |
636 | ||
637 | @see AlwaysShowScrollbars() | |
23324ae1 | 638 | */ |
d0a67157 | 639 | virtual bool IsScrollbarAlwaysShown(int orient) const; |
23324ae1 | 640 | |
a3ac93e3 | 641 | /** |
d0a67157 FM |
642 | Scrolls the window by the given number of lines down (if @a lines is |
643 | positive) or up. | |
a3ac93e3 | 644 | |
d0a67157 FM |
645 | @return Returns @true if the window was scrolled, @false if it was already |
646 | on top/bottom and nothing was done. | |
a3ac93e3 | 647 | |
d0a67157 FM |
648 | @remarks This function is currently only implemented under MSW and |
649 | wxTextCtrl under wxGTK (it also works for wxScrolled classes | |
650 | under all platforms). | |
651 | ||
652 | @see ScrollPages() | |
653 | */ | |
654 | virtual bool ScrollLines(int lines); | |
a3ac93e3 | 655 | |
23324ae1 | 656 | /** |
d0a67157 FM |
657 | Scrolls the window by the given number of pages down (if @a pages is |
658 | positive) or up. | |
3c4f71cc | 659 | |
d0a67157 FM |
660 | @return Returns @true if the window was scrolled, @false if it was already |
661 | on top/bottom and nothing was done. | |
662 | ||
663 | @remarks This function is currently only implemented under MSW and wxGTK. | |
664 | ||
665 | @see ScrollLines() | |
23324ae1 | 666 | */ |
d0a67157 | 667 | virtual bool ScrollPages(int pages); |
23324ae1 | 668 | |
23324ae1 | 669 | /** |
d0a67157 | 670 | Physically scrolls the pixels in the window and move child windows accordingly. |
e25cd775 | 671 | |
d0a67157 FM |
672 | @param dx |
673 | Amount to scroll horizontally. | |
674 | @param dy | |
675 | Amount to scroll vertically. | |
676 | @param rect | |
677 | Rectangle to scroll, if it is @NULL, the whole window is | |
678 | scrolled (this is always the case under wxGTK which doesn't support this | |
679 | parameter) | |
e25cd775 | 680 | |
d0a67157 FM |
681 | @remarks Note that you can often use wxScrolled instead of using this |
682 | function directly. | |
23324ae1 | 683 | */ |
d0a67157 FM |
684 | virtual void ScrollWindow(int dx, int dy, |
685 | const wxRect* rect = NULL); | |
23324ae1 FM |
686 | |
687 | /** | |
d0a67157 FM |
688 | Same as #ScrollLines (-1). |
689 | */ | |
690 | bool LineUp(); | |
3c4f71cc | 691 | |
d0a67157 FM |
692 | /** |
693 | Same as #ScrollLines (1). | |
694 | */ | |
695 | bool LineDown(); | |
3c4f71cc | 696 | |
d0a67157 FM |
697 | /** |
698 | Same as #ScrollPages (-1). | |
699 | */ | |
700 | bool PageUp(); | |
4f24cbbd | 701 | |
d0a67157 FM |
702 | /** |
703 | Same as #ScrollPages (1). | |
23324ae1 | 704 | */ |
d0a67157 | 705 | bool PageDown(); |
23324ae1 FM |
706 | |
707 | /** | |
d0a67157 | 708 | Sets the position of one of the built-in scrollbars. |
3c4f71cc | 709 | |
d0a67157 FM |
710 | @param orientation |
711 | Determines the scrollbar whose position is to be set. | |
712 | May be wxHORIZONTAL or wxVERTICAL. | |
713 | @param pos | |
714 | Position in scroll units. | |
715 | @param refresh | |
716 | @true to redraw the scrollbar, @false otherwise. | |
3c4f71cc | 717 | |
d0a67157 FM |
718 | @remarks This function does not directly affect the contents of the |
719 | window: it is up to the application to take note of | |
720 | scrollbar attributes and redraw contents accordingly. | |
3c4f71cc | 721 | |
d0a67157 FM |
722 | @see SetScrollbar(), GetScrollPos(), GetScrollThumb(), wxScrollBar, |
723 | wxScrolled | |
23324ae1 | 724 | */ |
d0a67157 FM |
725 | virtual void SetScrollPos(int orientation, int pos, |
726 | bool refresh = true); | |
23324ae1 FM |
727 | |
728 | /** | |
d0a67157 | 729 | Sets the scrollbar properties of a built-in scrollbar. |
3c4f71cc | 730 | |
d0a67157 FM |
731 | @param orientation |
732 | Determines the scrollbar whose page size is to be set. | |
733 | May be wxHORIZONTAL or wxVERTICAL. | |
734 | @param position | |
735 | The position of the scrollbar in scroll units. | |
736 | @param thumbSize | |
737 | The size of the thumb, or visible portion of the scrollbar, in scroll units. | |
738 | @param range | |
739 | The maximum position of the scrollbar. Value of -1 can be used to | |
740 | ask for the scrollbar to be shown but in the disabled state: this | |
741 | can be used to avoid removing the scrollbar even when it is not | |
742 | needed (currently this is only implemented in wxMSW port). | |
743 | @param refresh | |
744 | @true to redraw the scrollbar, @false otherwise. | |
3c4f71cc | 745 | |
d0a67157 FM |
746 | @remarks |
747 | Let's say you wish to display 50 lines of text, using the same font. | |
748 | The window is sized so that you can only see 16 lines at a time. | |
749 | You would use: | |
750 | @code | |
751 | SetScrollbar(wxVERTICAL, 0, 16, 50); | |
752 | @endcode | |
753 | Note that with the window at this size, the thumb position can never | |
754 | go above 50 minus 16, or 34. You can determine how many lines are | |
755 | currently visible by dividing the current view size by the character | |
756 | height in pixels. | |
757 | When defining your own scrollbar behaviour, you will always need | |
758 | to recalculate the scrollbar settings when the window size changes. | |
759 | You could therefore put your scrollbar calculations and SetScrollbar | |
760 | call into a function named AdjustScrollbars, which can be called | |
761 | initially and also from your wxSizeEvent handler function. | |
23324ae1 | 762 | |
d0a67157 | 763 | @see @ref overview_scrolling, wxScrollBar, wxScrolled, wxScrollWinEvent |
23324ae1 | 764 | */ |
d0a67157 FM |
765 | virtual void SetScrollbar(int orientation, int position, |
766 | int thumbSize, int range, | |
767 | bool refresh = true); | |
768 | //@} | |
a3ac93e3 | 769 | |
23324ae1 FM |
770 | |
771 | /** | |
47009083 | 772 | @name Sizing functions |
e25cd775 | 773 | |
386279c3 VZ |
774 | See also the protected functions DoGetBestSize() and |
775 | DoGetBestClientSize(). | |
d0a67157 FM |
776 | */ |
777 | //@{ | |
3c4f71cc | 778 | |
1a986642 VZ |
779 | /** |
780 | Helper for ensuring EndRepositioningChildren() is called correctly. | |
781 | ||
782 | This class wraps the calls to BeginRepositioningChildren() and | |
783 | EndRepositioningChildren() by performing the former in its constructor | |
784 | and the latter in its destructor if, and only if, the first call | |
785 | returned @true. This is the simplest way to call these methods and if | |
786 | this class is created as a local variable, it also ensures that | |
787 | EndRepositioningChildren() is correctly called (or not) on scope exit, | |
788 | so its use instead of calling these methods manually is highly | |
789 | recommended. | |
790 | ||
791 | @since 2.9.5 | |
792 | */ | |
793 | class ChildrenRepositioningGuard | |
794 | { | |
795 | public: | |
796 | /** | |
797 | Constructor calls wxWindow::BeginRepositioningChildren(). | |
798 | ||
799 | @param win The window to call BeginRepositioningChildren() on. If | |
800 | it is @NULL, nothing is done. | |
801 | */ | |
802 | explicit ChildrenRepositioningGuard(wxWindow* win); | |
803 | ||
804 | /** | |
805 | Destructor calls wxWindow::EndRepositioningChildren() if necessary. | |
806 | ||
807 | EndRepositioningChildren() is called only if a valid window was | |
808 | passed to the constructor and if BeginRepositioningChildren() | |
809 | returned @true. | |
810 | */ | |
811 | ~ChildrenRepositioningGuard(); | |
812 | }; | |
813 | ||
814 | /** | |
815 | Prepare for changing positions of multiple child windows. | |
816 | ||
817 | This method should be called before changing positions of multiple | |
818 | child windows to reduce flicker and, in MSW case, even avoid display | |
819 | corruption in some cases. It is used internally by wxWidgets and called | |
820 | automatically when the window size changes but it can also be useful to | |
821 | call it from outside of the library if a repositioning involving | |
822 | multiple children is done without changing the window size. | |
823 | ||
824 | If this method returns @true, then EndRepositioningChildren() must be | |
825 | called after setting all children positions. Use | |
826 | ChildrenRepositioningGuard class to ensure that this requirement is | |
827 | satisfied. | |
828 | ||
829 | @since 2.9.5 | |
830 | */ | |
831 | bool BeginRepositioningChildren(); | |
832 | ||
833 | /** | |
834 | Fix child window positions after setting all of them at once. | |
835 | ||
836 | This method must be called if and only if the previous call to | |
837 | BeginRepositioningChildren() returned @true. | |
838 | ||
839 | @since 2.9.5 | |
840 | */ | |
841 | void EndRepositioningChildren(); | |
842 | ||
d0a67157 FM |
843 | /** |
844 | Sets the cached best size value. | |
d9ced90b FM |
845 | |
846 | @see GetBestSize() | |
23324ae1 | 847 | */ |
d0a67157 | 848 | void CacheBestSize(const wxSize& size) const; |
23324ae1 FM |
849 | |
850 | /** | |
d0a67157 | 851 | Converts client area size @a size to corresponding window size. |
e25cd775 | 852 | |
d0a67157 FM |
853 | In other words, the returned value is what would GetSize() return if this |
854 | window had client area of given size. Components with wxDefaultCoord | |
855 | value are left unchanged. Note that the conversion is not always | |
856 | exact, it assumes that non-client area doesn't change and so doesn't | |
857 | take into account things like menu bar (un)wrapping or (dis)appearance | |
858 | of the scrollbars. | |
3c4f71cc | 859 | |
d0a67157 FM |
860 | @since 2.8.8 |
861 | ||
862 | @see WindowToClientSize() | |
23324ae1 | 863 | */ |
d0a67157 | 864 | virtual wxSize ClientToWindowSize(const wxSize& size) const; |
23324ae1 FM |
865 | |
866 | /** | |
d0a67157 FM |
867 | Converts window size @a size to corresponding client area size |
868 | In other words, the returned value is what would GetClientSize() return if | |
869 | this window had given window size. Components with wxDefaultCoord value | |
870 | are left unchanged. | |
e25cd775 | 871 | |
d0a67157 FM |
872 | Note that the conversion is not always exact, it assumes that |
873 | non-client area doesn't change and so doesn't take into account things | |
874 | like menu bar (un)wrapping or (dis)appearance of the scrollbars. | |
e25cd775 | 875 | |
d0a67157 | 876 | @since 2.8.8 |
3c4f71cc | 877 | |
d0a67157 | 878 | @see ClientToWindowSize() |
23324ae1 | 879 | */ |
d0a67157 | 880 | virtual wxSize WindowToClientSize(const wxSize& size) const; |
23324ae1 FM |
881 | |
882 | /** | |
cded6aa1 FM |
883 | Sizes the window so that it fits around its subwindows. |
884 | ||
885 | This function won't do anything if there are no subwindows and will only really | |
886 | work correctly if sizers are used for the subwindows layout. | |
887 | ||
888 | Also, if the window has exactly one subwindow it is better (faster and the result | |
889 | is more precise as Fit() adds some margin to account for fuzziness of its calculations) | |
890 | to call: | |
891 | ||
75b00cf8 | 892 | @code |
e25cd775 | 893 | window->SetClientSize(child->GetSize()); |
cded6aa1 FM |
894 | @endcode |
895 | ||
896 | instead of calling Fit(). | |
3c4f71cc | 897 | |
cded6aa1 | 898 | @see @ref overview_windowsizing |
23324ae1 | 899 | */ |
4cc4bfaf | 900 | virtual void Fit(); |
23324ae1 FM |
901 | |
902 | /** | |
e25cd775 FM |
903 | Similar to Fit(), but sizes the interior (virtual) size of a window. |
904 | ||
905 | Mainly useful with scrolled windows to reset scrollbars after sizing | |
906 | changes that do not trigger a size event, and/or scrolled windows without | |
907 | an interior sizer. This function similarly won't do anything if there are | |
908 | no subwindows. | |
23324ae1 FM |
909 | */ |
910 | virtual void FitInside(); | |
911 | ||
23324ae1 | 912 | /** |
e25cd775 FM |
913 | This functions returns the best acceptable minimal size for the window. |
914 | ||
915 | For example, for a static control, it will be the minimal size such that the | |
23324ae1 | 916 | control label is not truncated. For windows containing subwindows (typically |
e25cd775 FM |
917 | wxPanel), the size returned by this function will be the same as the size |
918 | the window would have had after calling Fit(). | |
d9ced90b | 919 | |
386279c3 VZ |
920 | Override virtual DoGetBestSize() or, better, because it's usually more |
921 | convenient, DoGetBestClientSize() when writing your own custom window | |
922 | class to change the value returned by this public non-virtual method. | |
d9ced90b | 923 | |
054fdb68 VZ |
924 | Notice that the best size respects the minimal and maximal size |
925 | explicitly set for the window, if any. So even if some window believes | |
926 | that it needs 200 pixels horizontally, calling SetMaxSize() with a | |
927 | width of 100 would ensure that GetBestSize() returns the width of at | |
928 | most 100 pixels. | |
929 | ||
d9ced90b | 930 | @see CacheBestSize(), @ref overview_windowsizing |
23324ae1 | 931 | */ |
328f5751 | 932 | wxSize GetBestSize() const; |
23324ae1 | 933 | |
d1199839 VZ |
934 | /** |
935 | Returns the best height needed by this window if it had the given width. | |
936 | ||
937 | @see DoGetBestClientHeight() | |
938 | ||
939 | @since 2.9.4 | |
940 | */ | |
941 | int GetBestHeight(int width) const; | |
942 | ||
943 | /** | |
944 | Returns the best width needed by this window if it had the given height. | |
945 | ||
946 | @see DoGetBestClientWidth() | |
947 | ||
948 | @since 2.9.4 | |
949 | */ | |
950 | int GetBestWidth(int height) const; | |
951 | ||
23324ae1 | 952 | /** |
e25cd775 | 953 | Returns the size of the window 'client area' in pixels. |
76e9224e | 954 | |
e25cd775 FM |
955 | The client area is the area which may be drawn on by the programmer, |
956 | excluding title bar, border, scrollbars, etc. | |
23324ae1 FM |
957 | Note that if this window is a top-level one and it is currently minimized, the |
958 | return size is empty (both width and height are 0). | |
3c4f71cc | 959 | |
1058f652 MB |
960 | @beginWxPerlOnly |
961 | In wxPerl this method takes no parameters and returns | |
962 | a 2-element list (width, height). | |
963 | @endWxPerlOnly | |
964 | ||
4cc4bfaf | 965 | @see GetSize(), GetVirtualSize() |
23324ae1 | 966 | */ |
328f5751 | 967 | void GetClientSize(int* width, int* height) const; |
23324ae1 FM |
968 | |
969 | /** | |
d0a67157 | 970 | @overload |
23324ae1 | 971 | */ |
d0a67157 | 972 | wxSize GetClientSize() const; |
23324ae1 FM |
973 | |
974 | /** | |
cded6aa1 FM |
975 | Merges the window's best size into the min size and returns the result. |
976 | This is the value used by sizers to determine the appropriate | |
ccd4e1bc | 977 | amount of space to allocate for the widget. |
d9ced90b | 978 | |
ccd4e1bc VZ |
979 | This is the method called by a wxSizer when it queries the size |
980 | of a window or control. | |
3c4f71cc | 981 | |
cded6aa1 | 982 | @see GetBestSize(), SetInitialSize(), @ref overview_windowsizing |
23324ae1 | 983 | */ |
a20a357d | 984 | virtual wxSize GetEffectiveMinSize() const; |
23324ae1 | 985 | |
23324ae1 | 986 | /** |
7c913512 | 987 | Returns the maximum size of window's client area. |
e25cd775 | 988 | |
23324ae1 FM |
989 | This is an indication to the sizer layout mechanism that this is the maximum |
990 | possible size as well as the upper bound on window's size settable using | |
7c913512 | 991 | SetClientSize(). |
3c4f71cc | 992 | |
d9ced90b | 993 | @see GetMaxSize(), @ref overview_windowsizing |
23324ae1 | 994 | */ |
adaaa686 | 995 | virtual wxSize GetMaxClientSize() const; |
23324ae1 FM |
996 | |
997 | /** | |
e25cd775 FM |
998 | Returns the maximum size of the window. |
999 | ||
1000 | This is an indication to the sizer layout mechanism that this is the maximum | |
1001 | possible size as well as the upper bound on window's size settable using SetSize(). | |
3c4f71cc | 1002 | |
d9ced90b | 1003 | @see GetMaxClientSize(), @ref overview_windowsizing |
23324ae1 | 1004 | */ |
adaaa686 | 1005 | virtual wxSize GetMaxSize() const; |
23324ae1 FM |
1006 | |
1007 | /** | |
1008 | Returns the minimum size of window's client area, an indication to the sizer | |
e25cd775 FM |
1009 | layout mechanism that this is the minimum required size of its client area. |
1010 | ||
1011 | It normally just returns the value set by SetMinClientSize(), but it can be | |
1012 | overridden to do the calculation on demand. | |
3c4f71cc | 1013 | |
d9ced90b | 1014 | @see GetMinSize(), @ref overview_windowsizing |
23324ae1 | 1015 | */ |
328f5751 | 1016 | virtual wxSize GetMinClientSize() const; |
23324ae1 FM |
1017 | |
1018 | /** | |
1019 | Returns the minimum size of the window, an indication to the sizer layout | |
5af86f4d VZ |
1020 | mechanism that this is the minimum required size. |
1021 | ||
1022 | This method normally just returns the value set by SetMinSize(), but it | |
1023 | can be overridden to do the calculation on demand. | |
3c4f71cc | 1024 | |
d9ced90b | 1025 | @see GetMinClientSize(), @ref overview_windowsizing |
23324ae1 | 1026 | */ |
328f5751 | 1027 | virtual wxSize GetMinSize() const; |
23324ae1 | 1028 | |
84c6c212 VZ |
1029 | /** |
1030 | Returns the horizontal component of window minimal size. | |
1031 | ||
1032 | The returned value is wxDefaultCoord if the minimal width was not set. | |
1033 | ||
1034 | @see GetMinSize() | |
1035 | */ | |
05b0355a | 1036 | int GetMinWidth() const; |
84c6c212 VZ |
1037 | |
1038 | /** | |
1039 | Returns the vertical component of window minimal size. | |
1040 | ||
1041 | The returned value is wxDefaultCoord if the minimal height was not set. | |
1042 | ||
1043 | @see GetMinSize() | |
1044 | */ | |
05b0355a | 1045 | int GetMinHeight() const; |
84c6c212 VZ |
1046 | |
1047 | /** | |
1048 | Returns the horizontal component of window maximal size. | |
1049 | ||
1050 | The returned value is wxDefaultCoord if the maximal width was not set. | |
1051 | ||
1052 | @see GetMaxSize() | |
1053 | */ | |
05b0355a | 1054 | int GetMaxWidth() const; |
84c6c212 VZ |
1055 | |
1056 | /** | |
1057 | Returns the vertical component of window maximal size. | |
1058 | ||
1059 | The returned value is wxDefaultCoord if the maximal width was not set. | |
1060 | ||
1061 | @see GetMaxSize() | |
1062 | */ | |
05b0355a RD |
1063 | int GetMaxHeight() const; |
1064 | ||
23324ae1 | 1065 | /** |
d0a67157 FM |
1066 | Returns the size of the entire window in pixels, including title bar, border, |
1067 | scrollbars, etc. | |
3c4f71cc | 1068 | |
d0a67157 FM |
1069 | Note that if this window is a top-level one and it is currently minimized, the |
1070 | returned size is the restored window size, not the size of the window icon. | |
3c4f71cc | 1071 | |
d0a67157 FM |
1072 | @param width |
1073 | Receives the window width. | |
1074 | @param height | |
1075 | Receives the window height. | |
1076 | ||
1058f652 MB |
1077 | @beginWxPerlOnly |
1078 | In wxPerl this method is implemented as GetSizeWH() returning | |
1079 | a 2-element list (width, height). | |
1080 | @endWxPerlOnly | |
1081 | ||
d9ced90b | 1082 | @see GetClientSize(), GetVirtualSize(), @ref overview_windowsizing |
23324ae1 | 1083 | */ |
d0a67157 | 1084 | void GetSize(int* width, int* height) const; |
23324ae1 FM |
1085 | |
1086 | /** | |
d0a67157 | 1087 | See the GetSize(int*,int*) overload for more info. |
23324ae1 | 1088 | */ |
d0a67157 | 1089 | wxSize GetSize() const; |
23324ae1 FM |
1090 | |
1091 | /** | |
d0a67157 FM |
1092 | This gets the virtual size of the window in pixels. |
1093 | By default it returns the client size of the window, but after a call to | |
1094 | SetVirtualSize() it will return the size set with that method. | |
d9ced90b FM |
1095 | |
1096 | @see @ref overview_windowsizing | |
23324ae1 | 1097 | */ |
d0a67157 | 1098 | wxSize GetVirtualSize() const; |
23324ae1 | 1099 | |
23324ae1 | 1100 | /** |
d0a67157 | 1101 | Like the other GetVirtualSize() overload but uses pointers instead. |
f41d6c8c | 1102 | |
d0a67157 FM |
1103 | @param width |
1104 | Receives the window virtual width. | |
1105 | @param height | |
1106 | Receives the window virtual height. | |
f41d6c8c | 1107 | */ |
d0a67157 | 1108 | void GetVirtualSize(int* width, int* height) const; |
23324ae1 | 1109 | |
05b0355a RD |
1110 | /** |
1111 | Return the largest of ClientSize and BestSize (as determined | |
1112 | by a sizer, interior children, or other means) | |
1113 | */ | |
1114 | virtual wxSize GetBestVirtualSize() const; | |
1115 | ||
96691fca RD |
1116 | /** |
1117 | Returns the magnification of the backing store of this window, eg 2.0 | |
1118 | for a window on a retina screen. | |
1119 | ||
1120 | @since 2.9.5 | |
1121 | */ | |
6481f4ab | 1122 | virtual double GetContentScaleFactor() const; |
96691fca | 1123 | |
23324ae1 | 1124 | /** |
d0a67157 FM |
1125 | Returns the size of the left/right and top/bottom borders of this window in x |
1126 | and y components of the result respectively. | |
23324ae1 | 1127 | */ |
d0a67157 | 1128 | virtual wxSize GetWindowBorderSize() const; |
f41d6c8c | 1129 | |
05b0355a RD |
1130 | /** |
1131 | wxSizer and friends use this to give a chance to a component to recalc | |
1132 | its min size once one of the final size components is known. Override | |
1133 | this function when that is useful (such as for wxStaticText which can | |
1134 | stretch over several lines). Parameter availableOtherDir | |
1135 | tells the item how much more space there is available in the opposite | |
1136 | direction (-1 if unknown). | |
1137 | */ | |
1138 | virtual bool | |
1139 | InformFirstDirection(int direction, | |
1140 | int size, | |
1141 | int availableOtherDir); | |
1142 | ||
23324ae1 | 1143 | /** |
d0a67157 FM |
1144 | Resets the cached best size value so it will be recalculated the next time it |
1145 | is needed. | |
d9ced90b FM |
1146 | |
1147 | @see CacheBestSize() | |
23324ae1 | 1148 | */ |
d0a67157 | 1149 | void InvalidateBestSize(); |
d9ced90b | 1150 | |
23324ae1 | 1151 | /** |
d0a67157 | 1152 | Posts a size event to the window. |
3c4f71cc | 1153 | |
d0a67157 FM |
1154 | This is the same as SendSizeEvent() with @c wxSEND_EVENT_POST argument. |
1155 | */ | |
1156 | void PostSizeEvent(); | |
f41d6c8c FM |
1157 | |
1158 | /** | |
d0a67157 | 1159 | Posts a size event to the parent of this window. |
f41d6c8c | 1160 | |
d0a67157 FM |
1161 | This is the same as SendSizeEventToParent() with @c wxSEND_EVENT_POST |
1162 | argument. | |
1163 | */ | |
1164 | void PostSizeEventToParent(); | |
23324ae1 FM |
1165 | |
1166 | /** | |
d0a67157 FM |
1167 | This function sends a dummy @ref wxSizeEvent "size event" to |
1168 | the window allowing it to re-layout its children positions. | |
3c4f71cc | 1169 | |
d0a67157 FM |
1170 | It is sometimes useful to call this function after adding or deleting a |
1171 | children after the frame creation or if a child size changes. Note that | |
1172 | if the frame is using either sizers or constraints for the children | |
1173 | layout, it is enough to call wxWindow::Layout() directly and this | |
1174 | function should not be used in this case. | |
23324ae1 | 1175 | |
d0a67157 FM |
1176 | If @a flags includes @c wxSEND_EVENT_POST value, this function posts |
1177 | the event, i.e. schedules it for later processing, instead of | |
1178 | dispatching it directly. You can also use PostSizeEvent() as a more | |
1179 | readable equivalent of calling this function with this flag. | |
3c4f71cc | 1180 | |
d0a67157 FM |
1181 | @param flags |
1182 | May include @c wxSEND_EVENT_POST. Default value is 0. | |
23324ae1 | 1183 | */ |
d0a67157 | 1184 | virtual void SendSizeEvent(int flags = 0); |
23324ae1 FM |
1185 | |
1186 | /** | |
d0a67157 | 1187 | Safe wrapper for GetParent()->SendSizeEvent(). |
3c4f71cc | 1188 | |
d0a67157 FM |
1189 | This function simply checks that the window has a valid parent which is |
1190 | not in process of being deleted and calls SendSizeEvent() on it. It is | |
1191 | used internally by windows such as toolbars changes to whose state | |
1192 | should result in parent re-layout (e.g. when a toolbar is added to the | |
1193 | top of the window, all the other windows must be shifted down). | |
23324ae1 | 1194 | |
d0a67157 | 1195 | @see PostSizeEventToParent() |
3c4f71cc | 1196 | |
d0a67157 FM |
1197 | @param flags |
1198 | See description of this parameter in SendSizeEvent() documentation. | |
1199 | */ | |
1200 | void SendSizeEventToParent(int flags = 0); | |
23324ae1 | 1201 | |
23324ae1 | 1202 | /** |
d0a67157 | 1203 | This sets the size of the window client area in pixels. |
3c4f71cc | 1204 | |
d0a67157 FM |
1205 | Using this function to size a window tends to be more device-independent |
1206 | than SetSize(), since the application need not worry about what dimensions | |
1207 | the border or title bar have when trying to fit the window around panel | |
1208 | items, for example. | |
d9ced90b FM |
1209 | |
1210 | @see @ref overview_windowsizing | |
23324ae1 | 1211 | */ |
75504144 | 1212 | void SetClientSize(int width, int height); |
f41d6c8c FM |
1213 | |
1214 | /** | |
d0a67157 | 1215 | @overload |
f41d6c8c | 1216 | */ |
75504144 | 1217 | void SetClientSize(const wxSize& size); |
23324ae1 | 1218 | |
05b0355a RD |
1219 | /** |
1220 | @overload | |
1221 | */ | |
1222 | void SetClientSize(const wxRect& rect); | |
1223 | ||
23324ae1 | 1224 | /** |
d0a67157 FM |
1225 | This normally does not need to be called by user code. |
1226 | It is called when a window is added to a sizer, and is used so the window | |
1227 | can remove itself from the sizer when it is destroyed. | |
23324ae1 | 1228 | */ |
d0a67157 | 1229 | void SetContainingSizer(wxSizer* sizer); |
23324ae1 | 1230 | |
23324ae1 | 1231 | /** |
d0a67157 FM |
1232 | A @e smart SetSize that will fill in default size components with the |
1233 | window's @e best size values. | |
e25cd775 | 1234 | |
d0a67157 FM |
1235 | Also sets the window's minsize to the value passed in for use with sizers. |
1236 | This means that if a full or partial size is passed to this function then | |
1237 | the sizers will use that size instead of the results of GetBestSize() to | |
1238 | determine the minimum needs of the window for layout. | |
3c4f71cc | 1239 | |
d0a67157 FM |
1240 | Most controls will use this to set their initial size, and their min |
1241 | size to the passed in value (if any.) | |
e25cd775 | 1242 | |
d0a67157 FM |
1243 | @see SetSize(), GetBestSize(), GetEffectiveMinSize(), |
1244 | @ref overview_windowsizing | |
e25cd775 | 1245 | */ |
d0a67157 | 1246 | void SetInitialSize(const wxSize& size = wxDefaultSize); |
23324ae1 FM |
1247 | |
1248 | /** | |
d0a67157 FM |
1249 | Sets the maximum client size of the window, to indicate to the sizer |
1250 | layout mechanism that this is the maximum possible size of its client area. | |
1251 | ||
d9ced90b FM |
1252 | Note that this method is just a shortcut for: |
1253 | @code | |
1254 | SetMaxSize(ClientToWindowSize(size)); | |
1255 | @endcode | |
1256 | ||
1257 | @see SetMaxSize(), @ref overview_windowsizing | |
23324ae1 | 1258 | */ |
d0a67157 | 1259 | virtual void SetMaxClientSize(const wxSize& size); |
23324ae1 FM |
1260 | |
1261 | /** | |
d0a67157 FM |
1262 | Sets the maximum size of the window, to indicate to the sizer layout mechanism |
1263 | that this is the maximum possible size. | |
3c4f71cc | 1264 | |
d9ced90b | 1265 | @see SetMaxClientSize(), @ref overview_windowsizing |
23324ae1 | 1266 | */ |
d0a67157 | 1267 | virtual void SetMaxSize(const wxSize& size); |
23324ae1 FM |
1268 | |
1269 | /** | |
d0a67157 FM |
1270 | Sets the minimum client size of the window, to indicate to the sizer |
1271 | layout mechanism that this is the minimum required size of window's client | |
1272 | area. | |
23324ae1 | 1273 | |
d0a67157 FM |
1274 | You may need to call this if you change the window size after |
1275 | construction and before adding to its parent sizer. | |
76e9224e | 1276 | |
d0a67157 FM |
1277 | Note, that just as with SetMinSize(), calling this method doesn't |
1278 | prevent the program from explicitly making the window smaller than the | |
1279 | specified size. | |
3c4f71cc | 1280 | |
d9ced90b FM |
1281 | Note that this method is just a shortcut for: |
1282 | @code | |
1283 | SetMinSize(ClientToWindowSize(size)); | |
1284 | @endcode | |
1285 | ||
1286 | @see SetMinSize(), @ref overview_windowsizing | |
23324ae1 | 1287 | */ |
d0a67157 | 1288 | virtual void SetMinClientSize(const wxSize& size); |
23324ae1 FM |
1289 | |
1290 | /** | |
d0a67157 FM |
1291 | Sets the minimum size of the window, to indicate to the sizer layout |
1292 | mechanism that this is the minimum required size. | |
23324ae1 | 1293 | |
d0a67157 FM |
1294 | You may need to call this if you change the window size after |
1295 | construction and before adding to its parent sizer. | |
1296 | ||
1297 | Notice that calling this method doesn't prevent the program from making | |
1298 | the window explicitly smaller than the specified size by calling | |
1299 | SetSize(), it just ensures that it won't become smaller than this size | |
1300 | during the automatic layout. | |
1301 | ||
d9ced90b | 1302 | @see SetMinClientSize(), @ref overview_windowsizing |
23324ae1 | 1303 | */ |
d0a67157 | 1304 | virtual void SetMinSize(const wxSize& size); |
23324ae1 FM |
1305 | |
1306 | /** | |
d0a67157 FM |
1307 | Sets the size of the window in pixels. |
1308 | ||
1309 | @param x | |
1310 | Required x position in pixels, or wxDefaultCoord to indicate that the | |
1311 | existing value should be used. | |
1312 | @param y | |
1313 | Required y position in pixels, or wxDefaultCoord to indicate that the | |
1314 | existing value should be used. | |
1315 | @param width | |
1316 | Required width in pixels, or wxDefaultCoord to indicate that the existing | |
1317 | value should be used. | |
1318 | @param height | |
1319 | Required height position in pixels, or wxDefaultCoord to indicate that the | |
1320 | existing value should be used. | |
1321 | @param sizeFlags | |
1322 | Indicates the interpretation of other parameters. | |
1323 | It is a bit list of the following: | |
1324 | - @c wxSIZE_AUTO_WIDTH: a wxDefaultCoord width value is taken to indicate | |
1325 | a wxWidgets-supplied default width. | |
1326 | - @c wxSIZE_AUTO_HEIGHT: a wxDefaultCoord height value is taken to indicate | |
1327 | a wxWidgets-supplied default height. | |
1328 | - @c wxSIZE_AUTO: wxDefaultCoord size values are taken to indicate | |
1329 | a wxWidgets-supplied default size. | |
1330 | - @c wxSIZE_USE_EXISTING: existing dimensions should be used | |
1331 | if wxDefaultCoord values are supplied. | |
1332 | - @c wxSIZE_ALLOW_MINUS_ONE: allow negative dimensions (i.e. value of | |
1333 | wxDefaultCoord) to be interpreted as real | |
1334 | dimensions, not default values. | |
1335 | - @c wxSIZE_FORCE: normally, if the position and the size of the window are | |
1336 | already the same as the parameters of this function, | |
1337 | nothing is done. but with this flag a window resize may | |
1338 | be forced even in this case (supported in wx 2.6.2 and | |
1339 | later and only implemented for MSW and ignored elsewhere | |
1340 | currently). | |
1341 | ||
1342 | @remarks This overload sets the position and optionally size, of the window. | |
1343 | Parameters may be wxDefaultCoord to indicate either that a default | |
1344 | should be supplied by wxWidgets, or that the current value of the | |
1345 | dimension should be used. | |
1346 | ||
d9ced90b | 1347 | @see Move(), @ref overview_windowsizing |
23324ae1 | 1348 | */ |
d0a67157 FM |
1349 | void SetSize(int x, int y, int width, int height, |
1350 | int sizeFlags = wxSIZE_AUTO); | |
23324ae1 FM |
1351 | |
1352 | /** | |
d0a67157 FM |
1353 | Sets the size of the window in pixels. |
1354 | The size is specified using a wxRect, wxSize or by a couple of @c int objects. | |
3c4f71cc | 1355 | |
d0a67157 | 1356 | @remarks This form must be used with non-default width and height values. |
3c4f71cc | 1357 | |
d9ced90b | 1358 | @see Move(), @ref overview_windowsizing |
23324ae1 | 1359 | */ |
75504144 | 1360 | void SetSize(const wxRect& rect); |
23324ae1 FM |
1361 | |
1362 | /** | |
d0a67157 | 1363 | @overload |
23324ae1 | 1364 | */ |
75504144 | 1365 | void SetSize(const wxSize& size); |
23324ae1 FM |
1366 | |
1367 | /** | |
d0a67157 | 1368 | @overload |
23324ae1 | 1369 | */ |
75504144 | 1370 | void SetSize(int width, int height); |
23324ae1 FM |
1371 | |
1372 | /** | |
d0a67157 FM |
1373 | Use of this function for windows which are not toplevel windows |
1374 | (such as wxDialog or wxFrame) is discouraged. | |
1375 | Please use SetMinSize() and SetMaxSize() instead. | |
3c4f71cc | 1376 | |
d9ced90b | 1377 | @see wxTopLevelWindow::SetSizeHints, @ref overview_windowsizing |
23324ae1 | 1378 | */ |
05b0355a RD |
1379 | virtual void SetSizeHints( const wxSize& minSize, |
1380 | const wxSize& maxSize=wxDefaultSize, | |
1381 | const wxSize& incSize=wxDefaultSize); | |
1382 | virtual void SetSizeHints( int minW, int minH, | |
1383 | int maxW = -1, int maxH = -1, | |
1384 | int incW = -1, int incH = -1 ); | |
23324ae1 | 1385 | |
23324ae1 | 1386 | /** |
d0a67157 | 1387 | Sets the virtual size of the window in pixels. |
d9ced90b FM |
1388 | |
1389 | @see @ref overview_windowsizing | |
d0a67157 FM |
1390 | */ |
1391 | void SetVirtualSize(int width, int height); | |
3c4f71cc | 1392 | |
d0a67157 FM |
1393 | /** |
1394 | @overload | |
23324ae1 | 1395 | */ |
d0a67157 FM |
1396 | void SetVirtualSize(const wxSize& size); |
1397 | ||
1398 | //@} | |
1399 | ||
23324ae1 FM |
1400 | |
1401 | /** | |
47009083 | 1402 | @name Positioning functions |
d0a67157 FM |
1403 | */ |
1404 | //@{ | |
e25cd775 | 1405 | |
d0a67157 FM |
1406 | /** |
1407 | A synonym for Centre(). | |
23324ae1 | 1408 | */ |
d0a67157 | 1409 | void Center(int dir = wxBOTH); |
23324ae1 FM |
1410 | |
1411 | /** | |
d0a67157 | 1412 | A synonym for CentreOnParent(). |
23324ae1 | 1413 | */ |
d0a67157 | 1414 | void CenterOnParent(int dir = wxBOTH); |
23324ae1 FM |
1415 | |
1416 | /** | |
d0a67157 | 1417 | Centres the window. |
eed04c99 | 1418 | |
d0a67157 | 1419 | @param direction |
ccd4e1bc | 1420 | Specifies the direction for the centring. May be wxHORIZONTAL, wxVERTICAL |
e4390488 | 1421 | or wxBOTH. It may also include the wxCENTRE_ON_SCREEN flag |
ccd4e1bc | 1422 | if you want to centre the window on the entire screen and not on its |
d0a67157 | 1423 | parent window. |
3c4f71cc | 1424 | |
d0a67157 | 1425 | @remarks If the window is a top level one (i.e. doesn't have a parent), |
ccd4e1bc | 1426 | it will be centred relative to the screen anyhow. |
d0a67157 FM |
1427 | |
1428 | @see Center() | |
23324ae1 | 1429 | */ |
d0a67157 | 1430 | void Centre(int direction = wxBOTH); |
23324ae1 FM |
1431 | |
1432 | /** | |
d0a67157 | 1433 | Centres the window on its parent. This is a more readable synonym for Centre(). |
e25cd775 | 1434 | |
d0a67157 | 1435 | @param direction |
ccd4e1bc | 1436 | Specifies the direction for the centring. May be wxHORIZONTAL, wxVERTICAL |
d0a67157 | 1437 | or wxBOTH. |
e25cd775 | 1438 | |
ccd4e1bc | 1439 | @remarks This methods provides for a way to centre top level windows over |
d0a67157 FM |
1440 | their parents instead of the entire screen. If there |
1441 | is no parent or if the window is not a top level | |
1442 | window, then behaviour is the same as Centre(). | |
23324ae1 | 1443 | |
d0a67157 FM |
1444 | @see wxTopLevelWindow::CentreOnScreen |
1445 | */ | |
1446 | void CentreOnParent(int direction = wxBOTH); | |
e4390488 | 1447 | |
23324ae1 | 1448 | /** |
d0a67157 FM |
1449 | This gets the position of the window in pixels, relative to the parent window |
1450 | for the child windows or relative to the display origin for the top level windows. | |
1451 | ||
1452 | @param x | |
1453 | Receives the x position of the window if non-@NULL. | |
1454 | @param y | |
1455 | Receives the y position of the window if non-@NULL. | |
1456 | ||
1058f652 MB |
1457 | @beginWxPerlOnly |
1458 | In wxPerl this method is implemented as GetPositionXY() returning | |
1459 | a 2-element list (x, y). | |
1460 | @endWxPerlOnly | |
1461 | ||
d0a67157 | 1462 | @see GetScreenPosition() |
23324ae1 | 1463 | */ |
d0a67157 | 1464 | void GetPosition(int* x, int* y) const; |
23324ae1 FM |
1465 | |
1466 | /** | |
d0a67157 FM |
1467 | This gets the position of the window in pixels, relative to the parent window |
1468 | for the child windows or relative to the display origin for the top level windows. | |
1469 | ||
1470 | @see GetScreenPosition() | |
23324ae1 | 1471 | */ |
d0a67157 | 1472 | wxPoint GetPosition() const; |
23324ae1 FM |
1473 | |
1474 | /** | |
d0a67157 | 1475 | Returns the position and size of the window as a wxRect object. |
3c4f71cc | 1476 | |
d0a67157 | 1477 | @see GetScreenRect() |
23324ae1 | 1478 | */ |
d0a67157 | 1479 | wxRect GetRect() const; |
23324ae1 FM |
1480 | |
1481 | /** | |
d0a67157 FM |
1482 | Returns the window position in screen coordinates, whether the window is a |
1483 | child window or a top level one. | |
e25cd775 | 1484 | |
d0a67157 FM |
1485 | @param x |
1486 | Receives the x position of the window on the screen if non-@NULL. | |
1487 | @param y | |
1488 | Receives the y position of the window on the screen if non-@NULL. | |
3c4f71cc | 1489 | |
d0a67157 | 1490 | @see GetPosition() |
23324ae1 | 1491 | */ |
d0a67157 | 1492 | void GetScreenPosition(int* x, int* y) const; |
23324ae1 | 1493 | |
23324ae1 | 1494 | /** |
d0a67157 FM |
1495 | Returns the window position in screen coordinates, whether the window is a |
1496 | child window or a top level one. | |
2b4367d5 | 1497 | |
d0a67157 | 1498 | @see GetPosition() |
23324ae1 | 1499 | */ |
d0a67157 | 1500 | wxPoint GetScreenPosition() const; |
23324ae1 FM |
1501 | |
1502 | /** | |
d0a67157 | 1503 | Returns the position and size of the window on the screen as a wxRect object. |
3c4f71cc | 1504 | |
d0a67157 | 1505 | @see GetRect() |
23324ae1 | 1506 | */ |
d0a67157 | 1507 | wxRect GetScreenRect() const; |
23324ae1 | 1508 | |
05b0355a RD |
1509 | /** |
1510 | Get the origin of the client area of the window relative to the | |
1511 | window top left corner (the client area may be shifted because of | |
1512 | the borders, scrollbars, other decorations...) | |
1513 | */ | |
1514 | virtual wxPoint GetClientAreaOrigin() const; | |
1515 | ||
1516 | /** | |
0824e369 | 1517 | Get the client rectangle in window (i.e.\ client) coordinates |
05b0355a RD |
1518 | */ |
1519 | wxRect GetClientRect() const; | |
1520 | ||
1521 | ||
1522 | ||
23324ae1 FM |
1523 | /** |
1524 | Moves the window to the given position. | |
3c4f71cc | 1525 | |
7c913512 | 1526 | @param x |
4cc4bfaf | 1527 | Required x position. |
7c913512 | 1528 | @param y |
4cc4bfaf | 1529 | Required y position. |
77bfb902 FM |
1530 | @param flags |
1531 | See SetSize() for more info about this parameter. | |
3c4f71cc | 1532 | |
23324ae1 | 1533 | @remarks Implementations of SetSize can also implicitly implement the |
e25cd775 FM |
1534 | Move() function, which is defined in the base wxWindow class as the call: |
1535 | @code | |
1536 | SetSize(x, y, wxDefaultCoord, wxDefaultCoord, wxSIZE_USE_EXISTING); | |
1537 | @endcode | |
3c4f71cc | 1538 | |
4cc4bfaf | 1539 | @see SetSize() |
23324ae1 | 1540 | */ |
77bfb902 | 1541 | void Move(int x, int y, int flags = wxSIZE_USE_EXISTING); |
e25cd775 FM |
1542 | |
1543 | /** | |
1544 | Moves the window to the given position. | |
1545 | ||
1546 | @param pt | |
1547 | wxPoint object representing the position. | |
77bfb902 FM |
1548 | @param flags |
1549 | See SetSize() for more info about this parameter. | |
e25cd775 FM |
1550 | |
1551 | @remarks Implementations of SetSize() can also implicitly implement the | |
1552 | Move() function, which is defined in the base wxWindow class as the call: | |
1553 | @code | |
1554 | SetSize(x, y, wxDefaultCoord, wxDefaultCoord, wxSIZE_USE_EXISTING); | |
1555 | @endcode | |
1556 | ||
1557 | @see SetSize() | |
1558 | */ | |
77bfb902 | 1559 | void Move(const wxPoint& pt, int flags = wxSIZE_USE_EXISTING); |
23324ae1 | 1560 | |
05b0355a RD |
1561 | void SetPosition(const wxPoint& pt); |
1562 | ||
d0a67157 FM |
1563 | //@} |
1564 | ||
1565 | ||
23324ae1 | 1566 | /** |
47009083 | 1567 | @name Coordinate conversion functions |
d0a67157 FM |
1568 | */ |
1569 | //@{ | |
e25cd775 | 1570 | |
d0a67157 FM |
1571 | /** |
1572 | Converts to screen coordinates from coordinates relative to this window. | |
3c4f71cc | 1573 | |
d0a67157 FM |
1574 | @param x |
1575 | A pointer to a integer value for the x coordinate. Pass the client | |
1576 | coordinate in, and a screen coordinate will be passed out. | |
1577 | @param y | |
1578 | A pointer to a integer value for the y coordinate. Pass the client | |
1579 | coordinate in, and a screen coordinate will be passed out. | |
1580 | ||
1058f652 MB |
1581 | @beginWxPerlOnly |
1582 | In wxPerl this method returns a 2-element list instead of | |
1583 | modifying its parameters. | |
1584 | @endWxPerlOnly | |
23324ae1 | 1585 | */ |
d0a67157 | 1586 | void ClientToScreen(int* x, int* y) const; |
23324ae1 FM |
1587 | |
1588 | /** | |
d0a67157 FM |
1589 | Converts to screen coordinates from coordinates relative to this window. |
1590 | ||
1591 | @param pt | |
1592 | The client position for the second form of the function. | |
23324ae1 | 1593 | */ |
d0a67157 | 1594 | wxPoint ClientToScreen(const wxPoint& pt) const; |
23324ae1 FM |
1595 | |
1596 | /** | |
d0a67157 | 1597 | Converts a point or size from dialog units to pixels. |
3c4f71cc | 1598 | |
d0a67157 FM |
1599 | For the x dimension, the dialog units are multiplied by the average character |
1600 | width and then divided by 4. | |
1601 | For the y dimension, the dialog units are multiplied by the average character | |
1602 | height and then divided by 8. | |
3c4f71cc | 1603 | |
d0a67157 FM |
1604 | @remarks Dialog units are used for maintaining a dialog's proportions |
1605 | even if the font changes. | |
1606 | You can also use these functions programmatically. | |
1607 | A convenience macro is defined: | |
1608 | @code | |
1609 | #define wxDLG_UNIT(parent, pt) parent->ConvertDialogToPixels(pt) | |
1610 | @endcode | |
3c4f71cc | 1611 | |
d0a67157 | 1612 | @see ConvertPixelsToDialog() |
23324ae1 | 1613 | */ |
0e7f59ab | 1614 | wxPoint ConvertDialogToPixels(const wxPoint& pt) const; |
23324ae1 FM |
1615 | |
1616 | /** | |
d0a67157 | 1617 | @overload |
23324ae1 | 1618 | */ |
0e7f59ab | 1619 | wxSize ConvertDialogToPixels(const wxSize& sz) const; |
23324ae1 FM |
1620 | |
1621 | /** | |
d0a67157 | 1622 | Converts a point or size from pixels to dialog units. |
e25cd775 | 1623 | |
d0a67157 FM |
1624 | For the x dimension, the pixels are multiplied by 4 and then divided by the |
1625 | average character width. | |
1626 | For the y dimension, the pixels are multiplied by 8 and then divided by the | |
1627 | average character height. | |
3c4f71cc | 1628 | |
d0a67157 FM |
1629 | @remarks Dialog units are used for maintaining a dialog's proportions |
1630 | even if the font changes. | |
3c4f71cc | 1631 | |
d0a67157 FM |
1632 | @see ConvertDialogToPixels() |
1633 | */ | |
0e7f59ab | 1634 | wxPoint ConvertPixelsToDialog(const wxPoint& pt) const; |
3c4f71cc | 1635 | |
d0a67157 FM |
1636 | /** |
1637 | @overload | |
23324ae1 | 1638 | */ |
0e7f59ab | 1639 | wxSize ConvertPixelsToDialog(const wxSize& sz) const; |
23324ae1 FM |
1640 | |
1641 | /** | |
d0a67157 | 1642 | Converts from screen to client window coordinates. |
e25cd775 | 1643 | |
d0a67157 FM |
1644 | @param x |
1645 | Stores the screen x coordinate and receives the client x coordinate. | |
1646 | @param y | |
1647 | Stores the screen x coordinate and receives the client x coordinate. | |
23324ae1 | 1648 | */ |
d0a67157 | 1649 | void ScreenToClient(int* x, int* y) const; |
23324ae1 FM |
1650 | |
1651 | /** | |
d0a67157 FM |
1652 | Converts from screen to client window coordinates. |
1653 | ||
1654 | @param pt | |
1655 | The screen position. | |
592584e4 | 1656 | */ |
d0a67157 FM |
1657 | wxPoint ScreenToClient(const wxPoint& pt) const; |
1658 | ||
1659 | //@} | |
1660 | ||
592584e4 VS |
1661 | |
1662 | /** | |
d0a67157 | 1663 | @name Drawing-related functions |
23324ae1 | 1664 | */ |
d0a67157 | 1665 | //@{ |
23324ae1 | 1666 | |
592584e4 | 1667 | /** |
f6b4a1b9 VZ |
1668 | Clears the window by filling it with the current background colour. |
1669 | ||
1670 | Does not cause an erase background event to be generated. | |
1671 | ||
1672 | Notice that this uses wxClientDC to draw on the window and the results | |
1673 | of doing it while also drawing on wxPaintDC for this window are | |
1674 | undefined. Hence this method shouldn't be used from EVT_PAINT handlers, | |
1675 | just use wxDC::Clear() on the wxPaintDC you already use there instead. | |
592584e4 | 1676 | */ |
d0a67157 | 1677 | virtual void ClearBackground(); |
23324ae1 FM |
1678 | |
1679 | /** | |
d0a67157 FM |
1680 | Freezes the window or, in other words, prevents any updates from taking |
1681 | place on screen, the window is not redrawn at all. | |
23324ae1 | 1682 | |
d0a67157 FM |
1683 | Thaw() must be called to reenable window redrawing. Calls to these two |
1684 | functions may be nested but to ensure that the window is properly | |
1685 | repainted again, you must thaw it exactly as many times as you froze it. | |
23324ae1 | 1686 | |
d0a67157 | 1687 | If the window has any children, they are recursively frozen too. |
3c4f71cc | 1688 | |
d0a67157 FM |
1689 | This method is useful for visual appearance optimization (for example, |
1690 | it is a good idea to use it before doing many large text insertions in | |
1691 | a row into a wxTextCtrl under wxGTK) but is not implemented on all | |
1692 | platforms nor for all controls so it is mostly just a hint to wxWidgets | |
1693 | and not a mandatory directive. | |
3c4f71cc | 1694 | |
d0a67157 | 1695 | @see wxWindowUpdateLocker, Thaw(), IsFrozen() |
23324ae1 | 1696 | */ |
d0a67157 | 1697 | void Freeze(); |
23324ae1 | 1698 | |
23324ae1 | 1699 | /** |
ccd4e1bc | 1700 | Re-enables window updating after a previous call to Freeze(). |
e25cd775 | 1701 | |
d0a67157 FM |
1702 | To really thaw the control, it must be called exactly the same number |
1703 | of times as Freeze(). | |
3c4f71cc | 1704 | |
ccd4e1bc | 1705 | If the window has any children, they are recursively thawed too. |
76e9224e | 1706 | |
d0a67157 FM |
1707 | @see wxWindowUpdateLocker, Freeze(), IsFrozen() |
1708 | */ | |
1709 | void Thaw(); | |
3c4f71cc | 1710 | |
d0a67157 FM |
1711 | /** |
1712 | Returns @true if the window is currently frozen by a call to Freeze(). | |
3c4f71cc | 1713 | |
d0a67157 | 1714 | @see Freeze(), Thaw() |
23324ae1 | 1715 | */ |
d0a67157 | 1716 | bool IsFrozen() const; |
23324ae1 | 1717 | |
ecdc1183 | 1718 | /** |
d0a67157 | 1719 | Returns the background colour of the window. |
ecdc1183 | 1720 | |
d0a67157 FM |
1721 | @see SetBackgroundColour(), SetForegroundColour(), GetForegroundColour() |
1722 | */ | |
1723 | wxColour GetBackgroundColour() const; | |
ecdc1183 VZ |
1724 | |
1725 | /** | |
d0a67157 | 1726 | Returns the background style of the window. |
ecdc1183 | 1727 | |
d0a67157 FM |
1728 | @see SetBackgroundColour(), GetForegroundColour(), |
1729 | SetBackgroundStyle(), SetTransparent() | |
1730 | */ | |
1731 | virtual wxBackgroundStyle GetBackgroundStyle() const; | |
9c61c5b0 | 1732 | |
d0a67157 FM |
1733 | /** |
1734 | Returns the character height for this window. | |
1735 | */ | |
1736 | virtual int GetCharHeight() const; | |
ecdc1183 | 1737 | |
23324ae1 | 1738 | /** |
d0a67157 FM |
1739 | Returns the average character width for this window. |
1740 | */ | |
1741 | virtual int GetCharWidth() const; | |
3c4f71cc | 1742 | |
d0a67157 FM |
1743 | /** |
1744 | Currently this is the same as calling | |
1745 | wxWindow::GetClassDefaultAttributes(wxWindow::GetWindowVariant()). | |
3c4f71cc | 1746 | |
d0a67157 FM |
1747 | One advantage of using this function compared to the static version is that |
1748 | the call is automatically dispatched to the correct class (as usual with | |
1749 | virtual functions) and you don't have to specify the class name explicitly. | |
3c4f71cc | 1750 | |
d0a67157 FM |
1751 | The other one is that in the future this function could return different |
1752 | results, for example it might return a different font for an "Ok" button | |
1753 | than for a generic button if the users GUI is configured to show such buttons | |
1754 | in bold font. Of course, the down side is that it is impossible to call this | |
1755 | function without actually having an object to apply it to whereas the static | |
1756 | version can be used without having to create an object first. | |
23324ae1 | 1757 | */ |
d0a67157 | 1758 | virtual wxVisualAttributes GetDefaultAttributes() const; |
23324ae1 FM |
1759 | |
1760 | /** | |
d0a67157 | 1761 | Returns the font for this window. |
2b4367d5 | 1762 | |
d0a67157 FM |
1763 | @see SetFont() |
1764 | */ | |
1765 | wxFont GetFont() const; | |
3c4f71cc | 1766 | |
d0a67157 FM |
1767 | /** |
1768 | Returns the foreground colour of the window. | |
1769 | ||
ccd4e1bc VZ |
1770 | @remarks The meaning of foreground colour varies according to the window class; |
1771 | it may be the text colour or other colour, or it may not be used at all. | |
d0a67157 FM |
1772 | |
1773 | @see SetForegroundColour(), SetBackgroundColour(), | |
1774 | GetBackgroundColour() | |
23324ae1 | 1775 | */ |
d0a67157 FM |
1776 | wxColour GetForegroundColour() const; |
1777 | ||
1778 | /** | |
1779 | Gets the dimensions of the string as it would be drawn on the | |
1780 | window with the currently selected font. | |
1781 | ||
ccd4e1bc | 1782 | The text extent is returned in the @a w and @a h pointers. |
d0a67157 FM |
1783 | |
1784 | @param string | |
1785 | String whose extent is to be measured. | |
1786 | @param w | |
1787 | Return value for width. | |
1788 | @param h | |
1789 | Return value for height. | |
1790 | @param descent | |
1791 | Return value for descent (optional). | |
1792 | @param externalLeading | |
1793 | Return value for external leading (optional). | |
1794 | @param font | |
1795 | Font to use instead of the current window font (optional). | |
1058f652 MB |
1796 | |
1797 | @beginWxPerlOnly | |
1798 | In wxPerl this method takes only the @a string and optionally | |
1799 | @a font parameters, and returns a 4-element list | |
1800 | (x, y, descent, externalLeading). | |
1801 | @endWxPerlOnly | |
d0a67157 | 1802 | */ |
522c3404 | 1803 | void GetTextExtent(const wxString& string, |
05b0355a | 1804 | int* w, int* h, |
522c3404 VZ |
1805 | int* descent = NULL, |
1806 | int* externalLeading = NULL, | |
1807 | const wxFont* font = NULL) const; | |
d0a67157 FM |
1808 | |
1809 | /** | |
1810 | Gets the dimensions of the string as it would be drawn on the | |
1811 | window with the currently selected font. | |
1812 | */ | |
1813 | wxSize GetTextExtent(const wxString& string) const; | |
1814 | ||
1815 | /** | |
1816 | Returns the region specifying which parts of the window have been damaged. | |
1817 | Should only be called within an wxPaintEvent handler. | |
1818 | ||
1819 | @see wxRegion, wxRegionIterator | |
1820 | */ | |
1821 | const wxRegion& GetUpdateRegion() const; | |
1822 | ||
05b0355a RD |
1823 | /** |
1824 | Get the update rectangle bounding box in client coords | |
1825 | */ | |
1826 | wxRect GetUpdateClientRect() const; | |
1827 | ||
d0a67157 FM |
1828 | /** |
1829 | Returns @true if this window background is transparent (as, for example, | |
1830 | for wxStaticText) and should show the parent window background. | |
1831 | ||
1832 | This method is mostly used internally by the library itself and you normally | |
1833 | shouldn't have to call it. You may, however, have to override it in your | |
1834 | wxWindow-derived class to ensure that background is painted correctly. | |
1835 | */ | |
1836 | virtual bool HasTransparentBackground(); | |
23324ae1 FM |
1837 | |
1838 | /** | |
1839 | Causes this window, and all of its children recursively (except under wxGTK1 | |
1840 | where this is not implemented), to be repainted. Note that repainting doesn't | |
1841 | happen immediately but only during the next event loop iteration, if you need | |
e25cd775 | 1842 | to update the window immediately you should use Update() instead. |
3c4f71cc | 1843 | |
7c913512 | 1844 | @param eraseBackground |
e25cd775 | 1845 | If @true, the background will be erased. |
7c913512 | 1846 | @param rect |
e25cd775 | 1847 | If non-@NULL, only the given rectangle will be treated as damaged. |
3c4f71cc | 1848 | |
4cc4bfaf | 1849 | @see RefreshRect() |
23324ae1 | 1850 | */ |
4cc4bfaf FM |
1851 | virtual void Refresh(bool eraseBackground = true, |
1852 | const wxRect* rect = NULL); | |
23324ae1 FM |
1853 | |
1854 | /** | |
1855 | Redraws the contents of the given rectangle: only the area inside it will be | |
1856 | repainted. | |
e25cd775 FM |
1857 | |
1858 | This is the same as Refresh() but has a nicer syntax as it can be called | |
1859 | with a temporary wxRect object as argument like this @c RefreshRect(wxRect(x, y, w, h)). | |
23324ae1 | 1860 | */ |
4cc4bfaf | 1861 | void RefreshRect(const wxRect& rect, bool eraseBackground = true); |
23324ae1 FM |
1862 | |
1863 | /** | |
d0a67157 | 1864 | Calling this method immediately repaints the invalidated area of the window and |
ccd4e1bc VZ |
1865 | all of its children recursively (this normally only happens when the |
1866 | flow of control returns to the event loop). | |
e25cd775 | 1867 | |
d0a67157 FM |
1868 | Notice that this function doesn't invalidate any area of the window so |
1869 | nothing happens if nothing has been invalidated (i.e. marked as requiring | |
1870 | a redraw). Use Refresh() first if you want to immediately redraw the | |
1871 | window unconditionally. | |
1872 | */ | |
1873 | virtual void Update(); | |
3c4f71cc | 1874 | |
d0a67157 FM |
1875 | /** |
1876 | Sets the background colour of the window. | |
bf799728 VZ |
1877 | |
1878 | Notice that as with SetForegroundColour(), setting the background | |
1879 | colour of a native control may not affect the entire control and could | |
1880 | be not supported at all depending on the control and platform. | |
1881 | ||
d0a67157 FM |
1882 | Please see InheritAttributes() for explanation of the difference between |
1883 | this method and SetOwnBackgroundColour(). | |
3c4f71cc | 1884 | |
d0a67157 | 1885 | @param colour |
ccd4e1bc | 1886 | The colour to be used as the background colour; pass |
d0a67157 | 1887 | wxNullColour to reset to the default colour. |
bf799728 | 1888 | Note that you may want to use wxSystemSettings::GetColour() to retrieve |
9b756edd | 1889 | a suitable colour to use rather than setting an hard-coded one. |
3c4f71cc | 1890 | |
d0a67157 FM |
1891 | @remarks The background colour is usually painted by the default |
1892 | wxEraseEvent event handler function under Windows and | |
1893 | automatically under GTK. | |
1894 | Note that setting the background colour does not cause an | |
1895 | immediate refresh, so you may wish to call wxWindow::ClearBackground | |
1896 | or wxWindow::Refresh after calling this function. | |
1897 | Using this function will disable attempts to use themes for | |
1898 | this window, if the system supports them. Use with care since | |
1899 | usually the themes represent the appearance chosen by the user | |
1900 | to be used for all applications on the system. | |
3c4f71cc | 1901 | |
464c1f94 VZ |
1902 | @return @true if the colour was really changed, @false if it was already set |
1903 | to this colour and nothing was done. | |
1904 | ||
d0a67157 FM |
1905 | @see GetBackgroundColour(), SetForegroundColour(), |
1906 | GetForegroundColour(), ClearBackground(), | |
9b756edd | 1907 | Refresh(), wxEraseEvent, wxSystemSettings |
23324ae1 | 1908 | */ |
d0a67157 | 1909 | virtual bool SetBackgroundColour(const wxColour& colour); |
23324ae1 FM |
1910 | |
1911 | /** | |
9c61c5b0 VZ |
1912 | Sets the background style of the window. |
1913 | ||
9b756edd FM |
1914 | The default background style is @c wxBG_STYLE_ERASE which indicates that |
1915 | the window background may be erased in @c EVT_ERASE_BACKGROUND handler. | |
ccd4e1bc | 1916 | This is a safe, compatibility default; however you may want to change it |
9b756edd | 1917 | to @c wxBG_STYLE_SYSTEM if you don't define any erase background event |
ccd4e1bc | 1918 | handlers at all, to avoid unnecessary generation of erase background |
9c61c5b0 | 1919 | events and always let system erase the background. And you should |
9b756edd FM |
1920 | change the background style to @c wxBG_STYLE_PAINT if you define an |
1921 | @c EVT_PAINT handler which completely overwrites the window background as | |
1922 | in this case erasing it previously, either in @c EVT_ERASE_BACKGROUND | |
9c61c5b0 VZ |
1923 | handler or in the system default handler, would result in flicker as |
1924 | the background pixels will be repainted twice every time the window is | |
1925 | redrawn. Do ensure that the background is entirely erased by your | |
9b756edd | 1926 | @c EVT_PAINT handler in this case however as otherwise garbage may be left |
9c61c5b0 VZ |
1927 | on screen. |
1928 | ||
1929 | Notice that in previous versions of wxWidgets a common way to work | |
1930 | around the above mentioned flickering problem was to define an empty | |
9b756edd FM |
1931 | @c EVT_ERASE_BACKGROUND handler. Setting background style to |
1932 | @c wxBG_STYLE_PAINT is a simpler and more efficient solution to the same | |
9c61c5b0 | 1933 | problem. |
3c4f71cc | 1934 | |
14421681 VZ |
1935 | |
1936 | Under wxGTK and wxOSX, you can use ::wxBG_STYLE_TRANSPARENT to obtain | |
1937 | full transparency of the window background. Note that wxGTK supports | |
1938 | this only since GTK 2.12 with a compositing manager enabled, call | |
1939 | IsTransparentBackgroundSupported() to check whether this is the case. | |
1940 | ||
1941 | Also, on order for @c SetBackgroundStyle(wxBG_STYLE_TRANSPARENT) to | |
1942 | work, it must be called before Create(). If you're using your own | |
1943 | wxWindow-derived class you should write your code in the following way: | |
1944 | @code | |
1945 | class MyWidget : public wxWindow | |
1946 | { | |
1947 | public: | |
1948 | MyWidget(wxWindow* parent, ...) | |
1949 | : wxWindow() // Use default ctor here! | |
1950 | { | |
1951 | // Do this first: | |
1952 | SetBackgroundStyle(wxBG_STYLE_TRANSPARENT); | |
1953 | ||
1954 | // And really create the window afterwards: | |
1955 | Create(parent, ...); | |
1956 | } | |
1957 | }; | |
1958 | @endcode | |
1959 | ||
d0a67157 | 1960 | @see SetBackgroundColour(), GetForegroundColour(), |
14421681 | 1961 | SetTransparent(), IsTransparentBackgroundSupported() |
23324ae1 | 1962 | */ |
d0a67157 | 1963 | virtual bool SetBackgroundStyle(wxBackgroundStyle style); |
23324ae1 | 1964 | |
14421681 VZ |
1965 | /** |
1966 | Checks whether using transparent background might work. | |
1967 | ||
1968 | If this function returns @false, calling SetBackgroundStyle() with | |
1969 | ::wxBG_STYLE_TRANSPARENT is not going to work. If it returns @true, | |
1970 | setting transparent style should normally succeed. | |
1971 | ||
1972 | Notice that this function would typically be called on the parent of a | |
1973 | window you want to set transparent background style for as the window | |
1974 | for which this method is called must be fully created. | |
1975 | ||
1976 | @param reason | |
1977 | If not @NULL, a reason message is provided if transparency is not | |
1978 | supported. | |
1979 | ||
1980 | @return @true if background transparency is supported. | |
1981 | ||
1982 | @since 2.9.4 | |
1983 | */ | |
1984 | virtual bool IsTransparentBackgroundSupported(wxString *reason = NULL) const; | |
1985 | ||
23324ae1 | 1986 | /** |
d0a67157 FM |
1987 | Sets the font for this window. This function should not be called for the |
1988 | parent window if you don't want its font to be inherited by its children, | |
1989 | use SetOwnFont() instead in this case and see InheritAttributes() for more | |
1990 | explanations. | |
e25cd775 | 1991 | |
d0a67157 FM |
1992 | Please notice that the given font is not automatically used for |
1993 | wxPaintDC objects associated with this window, you need to | |
1994 | call wxDC::SetFont too. However this font is used by | |
1995 | any standard controls for drawing their text as well as by | |
1996 | GetTextExtent(). | |
3c4f71cc | 1997 | |
d0a67157 FM |
1998 | @param font |
1999 | Font to associate with this window, pass | |
2000 | wxNullFont to reset to the default font. | |
2001 | ||
464c1f94 VZ |
2002 | @return @true if the font was really changed, @false if it was already set |
2003 | to this font and nothing was done. | |
d0a67157 FM |
2004 | |
2005 | @see GetFont(), InheritAttributes() | |
23324ae1 | 2006 | */ |
d0a67157 | 2007 | virtual bool SetFont(const wxFont& font); |
23324ae1 FM |
2008 | |
2009 | /** | |
d0a67157 | 2010 | Sets the foreground colour of the window. |
bf799728 VZ |
2011 | |
2012 | The meaning of foreground colour varies according to the window class; | |
2013 | it may be the text colour or other colour, or it may not be used at | |
2014 | all. Additionally, not all native controls support changing their | |
2015 | foreground colour so this method may change their colour only partially | |
2016 | or even not at all. | |
2017 | ||
d0a67157 FM |
2018 | Please see InheritAttributes() for explanation of the difference between |
2019 | this method and SetOwnForegroundColour(). | |
3c4f71cc | 2020 | |
d0a67157 | 2021 | @param colour |
ccd4e1bc | 2022 | The colour to be used as the foreground colour; pass |
d0a67157 | 2023 | wxNullColour to reset to the default colour. |
3c4f71cc | 2024 | |
464c1f94 VZ |
2025 | @return @true if the colour was really changed, @false if it was already set |
2026 | to this colour and nothing was done. | |
2027 | ||
d0a67157 FM |
2028 | @see GetForegroundColour(), SetBackgroundColour(), |
2029 | GetBackgroundColour(), ShouldInheritColours() | |
23324ae1 | 2030 | */ |
d0a67157 | 2031 | virtual bool SetForegroundColour(const wxColour& colour); |
23324ae1 FM |
2032 | |
2033 | /** | |
d0a67157 FM |
2034 | Sets the background colour of the window but prevents it from being inherited |
2035 | by the children of this window. | |
3c4f71cc | 2036 | |
d0a67157 | 2037 | @see SetBackgroundColour(), InheritAttributes() |
23324ae1 | 2038 | */ |
d0a67157 | 2039 | void SetOwnBackgroundColour(const wxColour& colour); |
23324ae1 | 2040 | |
5eea1681 VZ |
2041 | /** |
2042 | Return @true if this window inherits the background colour from its parent. | |
2043 | ||
2044 | @see SetOwnBackgroundColour(), InheritAttributes() | |
2045 | */ | |
0c3140ca | 2046 | bool InheritsBackgroundColour() const; |
5eea1681 VZ |
2047 | |
2048 | /** | |
2049 | Return @true if a background colour has been set for this window. | |
2050 | */ | |
0c3140ca RD |
2051 | bool UseBgCol() const; |
2052 | ||
23324ae1 | 2053 | /** |
d0a67157 FM |
2054 | Sets the font of the window but prevents it from being inherited by the |
2055 | children of this window. | |
3c4f71cc | 2056 | |
d0a67157 | 2057 | @see SetFont(), InheritAttributes() |
23324ae1 | 2058 | */ |
d0a67157 | 2059 | void SetOwnFont(const wxFont& font); |
76e9224e FM |
2060 | |
2061 | /** | |
d0a67157 FM |
2062 | Sets the foreground colour of the window but prevents it from being inherited |
2063 | by the children of this window. | |
76e9224e | 2064 | |
d0a67157 | 2065 | @see SetForegroundColour(), InheritAttributes() |
76e9224e | 2066 | */ |
d0a67157 | 2067 | void SetOwnForegroundColour(const wxColour& colour); |
23324ae1 FM |
2068 | |
2069 | /** | |
d0a67157 | 2070 | @deprecated use wxDC::SetPalette instead. |
23324ae1 | 2071 | */ |
d0a67157 | 2072 | void SetPalette(const wxPalette& pal); |
23324ae1 FM |
2073 | |
2074 | /** | |
d0a67157 | 2075 | Return @true from here to allow the colours of this window to be changed by |
ccd4e1bc | 2076 | InheritAttributes(). Returning @false forbids inheriting them from the parent window. |
3c4f71cc | 2077 | |
d0a67157 FM |
2078 | The base class version returns @false, but this method is overridden in |
2079 | wxControl where it returns @true. | |
23324ae1 | 2080 | */ |
d0a67157 | 2081 | virtual bool ShouldInheritColours() const; |
23324ae1 FM |
2082 | |
2083 | /** | |
d0a67157 | 2084 | This function tells a window if it should use the system's "theme" code |
ccd4e1bc | 2085 | to draw the windows' background instead of its own background drawing |
d0a67157 FM |
2086 | code. This does not always have any effect since the underlying platform |
2087 | obviously needs to support the notion of themes in user defined windows. | |
2088 | One such platform is GTK+ where windows can have (very colourful) backgrounds | |
2089 | defined by a user's selected theme. | |
3c4f71cc | 2090 | |
d0a67157 FM |
2091 | Dialogs, notebook pages and the status bar have this flag set to @true |
2092 | by default so that the default look and feel is simulated best. | |
2093 | */ | |
2094 | virtual void SetThemeEnabled(bool enable); | |
3c4f71cc | 2095 | |
05b0355a RD |
2096 | /** |
2097 | */ | |
2098 | virtual bool GetThemeEnabled() const; | |
2099 | ||
d0a67157 FM |
2100 | /** |
2101 | Returns @true if the system supports transparent windows and calling | |
2102 | SetTransparent() may succeed. If this function returns @false, transparent | |
2103 | windows are definitely not supported by the current system. | |
23324ae1 | 2104 | */ |
d0a67157 | 2105 | virtual bool CanSetTransparent(); |
23324ae1 | 2106 | |
0dba08dd | 2107 | /** |
d0a67157 FM |
2108 | Set the transparency of the window. If the system supports transparent windows, |
2109 | returns @true, otherwise returns @false and the window remains fully opaque. | |
2110 | See also CanSetTransparent(). | |
0dba08dd | 2111 | |
d0a67157 FM |
2112 | The parameter @a alpha is in the range 0..255 where 0 corresponds to a |
2113 | fully transparent window and 255 to the fully opaque one. The constants | |
2114 | @c wxIMAGE_ALPHA_TRANSPARENT and @c wxIMAGE_ALPHA_OPAQUE can be used. | |
2115 | */ | |
2116 | virtual bool SetTransparent(wxByte alpha); | |
ecdc1183 | 2117 | |
d0a67157 | 2118 | //@} |
ecdc1183 | 2119 | |
d0a67157 FM |
2120 | |
2121 | /** | |
2122 | @name Event-handling functions | |
7f853dd0 FM |
2123 | |
2124 | wxWindow allows you to build a (sort of) stack of event handlers which | |
2125 | can be used to override the window's own event handling. | |
0dba08dd | 2126 | */ |
d0a67157 | 2127 | //@{ |
0dba08dd VZ |
2128 | |
2129 | /** | |
d0a67157 FM |
2130 | Returns the event handler for this window. |
2131 | By default, the window is its own event handler. | |
0dba08dd | 2132 | |
d0a67157 FM |
2133 | @see SetEventHandler(), PushEventHandler(), |
2134 | PopEventHandler(), wxEvtHandler::ProcessEvent, wxEvtHandler | |
2135 | */ | |
2136 | wxEvtHandler* GetEventHandler() const; | |
ecdc1183 | 2137 | |
d0a67157 | 2138 | /** |
7f853dd0 FM |
2139 | This function will generate the appropriate call to Navigate() if the key |
2140 | event is one normally used for keyboard navigation and return @true in this case. | |
ecdc1183 | 2141 | |
d0a67157 FM |
2142 | @return Returns @true if the key pressed was for navigation and was |
2143 | handled, @false otherwise. | |
0dba08dd | 2144 | |
d0a67157 | 2145 | @see Navigate() |
23324ae1 | 2146 | */ |
d0a67157 | 2147 | bool HandleAsNavigationKey(const wxKeyEvent& event); |
23324ae1 FM |
2148 | |
2149 | /** | |
d0a67157 FM |
2150 | Shorthand for: |
2151 | @code | |
2152 | GetEventHandler()->SafelyProcessEvent(event); | |
2153 | @endcode | |
3b7fa206 VZ |
2154 | |
2155 | @see ProcessWindowEvent() | |
23324ae1 | 2156 | */ |
d0a67157 | 2157 | bool HandleWindowEvent(wxEvent& event) const; |
23324ae1 | 2158 | |
3b7fa206 VZ |
2159 | /** |
2160 | Convenient wrapper for ProcessEvent(). | |
2161 | ||
2162 | This is the same as writing @code GetEventHandler()->ProcessEvent(event); | |
2163 | @endcode but more convenient. Notice that ProcessEvent() itself can't | |
2164 | be called for wxWindow objects as it ignores the event handlers | |
ccd4e1bc | 2165 | associated with the window; use this function instead. |
3b7fa206 VZ |
2166 | */ |
2167 | bool ProcessWindowEvent(wxEvent& event); | |
2168 | ||
396e9eb8 VZ |
2169 | /** |
2170 | Wrapper for wxEvtHandler::ProcessEventLocally(). | |
2171 | ||
2172 | This method is similar to ProcessWindowEvent() but can be used to | |
2173 | search for the event handler only in this window and any event handlers | |
2174 | pushed on top of it. Unlike ProcessWindowEvent() it won't propagate the | |
512220b6 VZ |
2175 | event upwards. But it will use the validator and event handlers |
2176 | associated with this window, if any. | |
396e9eb8 VZ |
2177 | |
2178 | @since 2.9.1 | |
2179 | */ | |
2180 | bool ProcessWindowEventLocally(wxEvent& event); | |
2181 | ||
23324ae1 | 2182 | /** |
d0a67157 | 2183 | Removes and returns the top-most event handler on the event handler stack. |
3c4f71cc | 2184 | |
7f853dd0 | 2185 | E.g. in the case of: |
830b7aa7 | 2186 | @image html overview_events_winstack.png |
7f853dd0 FM |
2187 | when calling @c W->PopEventHandler(), the event handler @c A will be |
2188 | removed and @c B will be the first handler of the stack. | |
2189 | ||
2190 | Note that it's an error to call this function when no event handlers | |
2191 | were pushed on this window (i.e. when the window itself is its only | |
2192 | event handler). | |
2193 | ||
d0a67157 | 2194 | @param deleteHandler |
7f853dd0 FM |
2195 | If this is @true, the handler will be deleted after it is removed |
2196 | (and the returned value will be @NULL). | |
3c4f71cc | 2197 | |
3e083d65 | 2198 | @see @ref overview_events_processing |
23324ae1 | 2199 | */ |
d0a67157 | 2200 | wxEvtHandler* PopEventHandler(bool deleteHandler = false); |
23324ae1 FM |
2201 | |
2202 | /** | |
d0a67157 | 2203 | Pushes this event handler onto the event stack for the window. |
3c4f71cc | 2204 | |
7f853dd0 FM |
2205 | An event handler is an object that is capable of processing the events sent |
2206 | to a window. By default, the window is its own event handler, but an application | |
2207 | may wish to substitute another, for example to allow central implementation | |
2208 | of event-handling for a variety of different window classes. | |
2209 | ||
2210 | wxWindow::PushEventHandler allows an application to set up a @e stack | |
2211 | of event handlers, where an event not handled by one event handler is | |
2212 | handed to the next one in the chain. | |
2213 | ||
2214 | E.g. if you have two event handlers @c A and @c B and a wxWindow instance | |
2215 | @c W and you call: | |
2216 | @code | |
2217 | W->PushEventHandler(A); | |
2218 | W->PushEventHandler(B); | |
2219 | @endcode | |
2220 | you will end up with the following situation: | |
830b7aa7 | 2221 | @image html overview_events_winstack.png |
7f853dd0 FM |
2222 | |
2223 | Note that you can use wxWindow::PopEventHandler to remove the event handler. | |
2224 | ||
d0a67157 FM |
2225 | @param handler |
2226 | Specifies the handler to be pushed. | |
7f853dd0 FM |
2227 | It must not be part of a wxEvtHandler chain; an assert will fail |
2228 | if it's not unlinked (see wxEvtHandler::IsUnlinked). | |
3c4f71cc | 2229 | |
3e083d65 | 2230 | @see @ref overview_events_processing |
23324ae1 | 2231 | */ |
d0a67157 | 2232 | void PushEventHandler(wxEvtHandler* handler); |
23324ae1 FM |
2233 | |
2234 | /** | |
3e083d65 VZ |
2235 | Find the given @a handler in the windows event handler stack and |
2236 | removes (but does not delete) it from the stack. | |
2237 | ||
2238 | See wxEvtHandler::Unlink() for more info. | |
3c4f71cc | 2239 | |
d0a67157 FM |
2240 | @param handler |
2241 | The event handler to remove, must be non-@NULL and | |
7f853dd0 | 2242 | must be present in this windows event handlers stack. |
d0a67157 FM |
2243 | |
2244 | @return Returns @true if it was found and @false otherwise (this also | |
2245 | results in an assert failure so this function should | |
2246 | only be called when the handler is supposed to be there). | |
2247 | ||
2248 | @see PushEventHandler(), PopEventHandler() | |
23324ae1 | 2249 | */ |
d0a67157 | 2250 | bool RemoveEventHandler(wxEvtHandler* handler); |
23324ae1 FM |
2251 | |
2252 | /** | |
d0a67157 | 2253 | Sets the event handler for this window. |
e25cd775 | 2254 | |
7f853dd0 FM |
2255 | Note that if you use this function you may want to use as the "next" handler |
2256 | of @a handler the window itself; in this way when @a handler doesn't process | |
2257 | an event, the window itself will have a chance to do it. | |
2258 | ||
d0a67157 | 2259 | @param handler |
7f853dd0 FM |
2260 | Specifies the handler to be set. Cannot be @NULL. |
2261 | ||
3e083d65 | 2262 | @see @ref overview_events_processing |
23324ae1 | 2263 | */ |
d0a67157 FM |
2264 | void SetEventHandler(wxEvtHandler* handler); |
2265 | ||
7f853dd0 FM |
2266 | /** |
2267 | wxWindows cannot be used to form event handler chains; this function | |
2268 | thus will assert when called. | |
2269 | ||
2270 | Note that instead you can use PushEventHandler() or SetEventHandler() to | |
2271 | implement a stack of event handlers to override wxWindow's own | |
2272 | event handling mechanism. | |
2273 | */ | |
2274 | virtual void SetNextHandler(wxEvtHandler* handler); | |
2275 | ||
2276 | /** | |
2277 | wxWindows cannot be used to form event handler chains; this function | |
2278 | thus will assert when called. | |
2279 | ||
2280 | Note that instead you can use PushEventHandler() or SetEventHandler() to | |
2281 | implement a stack of event handlers to override wxWindow's own | |
2282 | event handling mechanism. | |
2283 | */ | |
2284 | virtual void SetPreviousHandler(wxEvtHandler* handler); | |
2285 | ||
d0a67157 FM |
2286 | //@} |
2287 | ||
23324ae1 | 2288 | |
7f853dd0 | 2289 | |
23324ae1 | 2290 | /** |
47009083 | 2291 | @name Window styles functions |
23324ae1 | 2292 | */ |
23324ae1 | 2293 | //@{ |
d0a67157 | 2294 | |
23324ae1 | 2295 | /** |
d0a67157 | 2296 | Returns the extra style bits for the window. |
23324ae1 | 2297 | */ |
d0a67157 | 2298 | long GetExtraStyle() const; |
23324ae1 FM |
2299 | |
2300 | /** | |
d0a67157 FM |
2301 | Gets the window style that was passed to the constructor or Create() |
2302 | method. GetWindowStyle() is another name for the same function. | |
23324ae1 | 2303 | */ |
d0a67157 | 2304 | virtual long GetWindowStyleFlag() const; |
23324ae1 FM |
2305 | |
2306 | /** | |
d0a67157 | 2307 | See GetWindowStyleFlag() for more info. |
23324ae1 | 2308 | */ |
d0a67157 | 2309 | long GetWindowStyle() const; |
23324ae1 FM |
2310 | |
2311 | /** | |
d0a67157 FM |
2312 | Returns @true if the window has the given @a exFlag bit set in its |
2313 | extra styles. | |
3c4f71cc | 2314 | |
d0a67157 | 2315 | @see SetExtraStyle() |
23324ae1 | 2316 | */ |
d0a67157 | 2317 | bool HasExtraStyle(int exFlag) const; |
23324ae1 FM |
2318 | |
2319 | /** | |
d0a67157 | 2320 | Returns @true if the window has the given @a flag bit set. |
23324ae1 | 2321 | */ |
d0a67157 | 2322 | bool HasFlag(int flag) const; |
23324ae1 FM |
2323 | |
2324 | /** | |
e25cd775 FM |
2325 | Sets the extra style bits for the window. |
2326 | The currently defined extra style bits are reported in the class | |
2327 | description. | |
23324ae1 | 2328 | */ |
adaaa686 | 2329 | virtual void SetExtraStyle(long exStyle); |
23324ae1 FM |
2330 | |
2331 | /** | |
d0a67157 | 2332 | Sets the style of the window. Please note that some styles cannot be changed |
d13b34d3 | 2333 | after the window creation and that Refresh() might need to be called |
d0a67157 | 2334 | after changing the others for the change to take place immediately. |
23324ae1 | 2335 | |
d0a67157 | 2336 | See @ref overview_windowstyles "Window styles" for more information about flags. |
e25cd775 | 2337 | |
d0a67157 | 2338 | @see GetWindowStyleFlag() |
23324ae1 | 2339 | */ |
d0a67157 | 2340 | virtual void SetWindowStyleFlag(long style); |
23324ae1 FM |
2341 | |
2342 | /** | |
d0a67157 FM |
2343 | See SetWindowStyleFlag() for more info. |
2344 | */ | |
2345 | void SetWindowStyle(long style); | |
3c4f71cc | 2346 | |
47009083 FM |
2347 | /** |
2348 | Turns the given @a flag on if it's currently turned off and vice versa. | |
2349 | This function cannot be used if the value of the flag is 0 (which is often | |
2350 | the case for default flags). | |
2351 | ||
2352 | Also, please notice that not all styles can be changed after the control | |
2353 | creation. | |
2354 | ||
2355 | @return Returns @true if the style was turned on by this function, @false | |
2356 | if it was switched off. | |
2357 | ||
2358 | @see SetWindowStyleFlag(), HasFlag() | |
2359 | */ | |
2360 | bool ToggleWindowStyle(int flag); | |
2361 | ||
d0a67157 | 2362 | //@} |
3c4f71cc | 2363 | |
3c4f71cc | 2364 | |
d0a67157 | 2365 | /** |
47009083 | 2366 | @name Tab order functions |
23324ae1 | 2367 | */ |
d0a67157 | 2368 | //@{ |
23324ae1 FM |
2369 | |
2370 | /** | |
d0a67157 FM |
2371 | Moves this window in the tab navigation order after the specified @e win. |
2372 | This means that when the user presses @c TAB key on that other window, | |
2373 | the focus switches to this window. | |
3c4f71cc | 2374 | |
d0a67157 FM |
2375 | Default tab order is the same as creation order, this function and |
2376 | MoveBeforeInTabOrder() allow to change | |
2377 | it after creating all the windows. | |
3c4f71cc | 2378 | |
d0a67157 FM |
2379 | @param win |
2380 | A sibling of this window which should precede it in tab order, | |
2381 | must not be @NULL | |
23324ae1 | 2382 | */ |
d0a67157 | 2383 | void MoveAfterInTabOrder(wxWindow* win); |
23324ae1 FM |
2384 | |
2385 | /** | |
d0a67157 FM |
2386 | Same as MoveAfterInTabOrder() except that it inserts this window just |
2387 | before @a win instead of putting it right after it. | |
23324ae1 | 2388 | */ |
d0a67157 | 2389 | void MoveBeforeInTabOrder(wxWindow* win); |
23324ae1 FM |
2390 | |
2391 | /** | |
d0a67157 FM |
2392 | Performs a keyboard navigation action starting from this window. |
2393 | This method is equivalent to calling NavigateIn() method on the | |
2394 | parent window. | |
3c4f71cc | 2395 | |
d0a67157 FM |
2396 | @param flags |
2397 | A combination of wxNavigationKeyEvent::IsForward and | |
2398 | wxNavigationKeyEvent::WinChange. | |
3c4f71cc | 2399 | |
d0a67157 FM |
2400 | @return Returns @true if the focus was moved to another window or @false |
2401 | if nothing changed. | |
2402 | ||
2403 | @remarks You may wish to call this from a text control custom keypress | |
2404 | handler to do the default navigation behaviour for the | |
2405 | tab key, since the standard default behaviour for a | |
2406 | multiline text control with the wxTE_PROCESS_TAB style | |
2407 | is to insert a tab and not navigate to the next | |
2408 | control. See also wxNavigationKeyEvent and | |
2409 | HandleAsNavigationKey. | |
23324ae1 | 2410 | */ |
05b0355a | 2411 | bool Navigate(int flags = wxNavigationKeyEvent::IsForward); |
23324ae1 FM |
2412 | |
2413 | /** | |
d0a67157 FM |
2414 | Performs a keyboard navigation action inside this window. |
2415 | See Navigate() for more information. | |
2416 | */ | |
05b0355a | 2417 | bool NavigateIn(int flags = wxNavigationKeyEvent::IsForward); |
cded6aa1 | 2418 | |
d0a67157 | 2419 | //@} |
cded6aa1 | 2420 | |
3c4f71cc | 2421 | |
d0a67157 FM |
2422 | |
2423 | /** | |
47009083 | 2424 | @name Z order functions |
23324ae1 | 2425 | */ |
d0a67157 | 2426 | //@{ |
23324ae1 FM |
2427 | |
2428 | /** | |
d0a67157 | 2429 | Lowers the window to the bottom of the window hierarchy (Z-order). |
3c4f71cc | 2430 | |
d0a67157 FM |
2431 | @remarks |
2432 | This function only works for wxTopLevelWindow-derived classes. | |
3c4f71cc | 2433 | |
d0a67157 | 2434 | @see Raise() |
23324ae1 | 2435 | */ |
d0a67157 | 2436 | virtual void Lower(); |
23324ae1 FM |
2437 | |
2438 | /** | |
d0a67157 | 2439 | Raises the window to the top of the window hierarchy (Z-order). |
3c4f71cc | 2440 | |
4582ed94 VZ |
2441 | Notice that this function only requests the window manager to raise |
2442 | this window to the top of Z-order. Depending on its configuration, the | |
2443 | window manager may raise the window, not do it at all or indicate that | |
2444 | a window requested to be raised in some other way, e.g. by flashing its | |
2445 | icon if it is minimized. | |
2446 | ||
d0a67157 FM |
2447 | @remarks |
2448 | This function only works for wxTopLevelWindow-derived classes. | |
2449 | ||
2450 | @see Lower() | |
23324ae1 | 2451 | */ |
d0a67157 | 2452 | virtual void Raise(); |
23324ae1 | 2453 | |
d0a67157 | 2454 | //@} |
3c4f71cc | 2455 | |
23324ae1 FM |
2456 | |
2457 | /** | |
47009083 | 2458 | @name Window status functions |
d0a67157 FM |
2459 | */ |
2460 | //@{ | |
3c4f71cc | 2461 | |
5af86f4d | 2462 | |
d0a67157 FM |
2463 | /** |
2464 | Equivalent to calling wxWindow::Show(@false). | |
23324ae1 | 2465 | */ |
d0a67157 | 2466 | bool Hide(); |
23324ae1 FM |
2467 | |
2468 | /** | |
d0a67157 FM |
2469 | This function hides a window, like Hide(), but using a special visual |
2470 | effect if possible. | |
5af86f4d | 2471 | |
d0a67157 FM |
2472 | The parameters of this function are the same as for ShowWithEffect(), |
2473 | please see their description there. | |
3c4f71cc | 2474 | |
d0a67157 | 2475 | @since 2.9.0 |
23324ae1 | 2476 | */ |
d0a67157 FM |
2477 | virtual bool HideWithEffect(wxShowEffect effect, |
2478 | unsigned int timeout = 0); | |
23324ae1 | 2479 | /** |
0824e369 | 2480 | Returns @true if the window is enabled, i.e.\ if it accepts user input, |
d0a67157 | 2481 | @false otherwise. |
3c4f71cc | 2482 | |
d0a67157 FM |
2483 | Notice that this method can return @false even if this window itself hadn't |
2484 | been explicitly disabled when one of its parent windows is disabled. | |
2485 | To get the intrinsic status of this window, use IsThisEnabled() | |
3c4f71cc | 2486 | |
d0a67157 | 2487 | @see Enable() |
23324ae1 | 2488 | */ |
d0a67157 | 2489 | bool IsEnabled() const; |
23324ae1 FM |
2490 | |
2491 | /** | |
d0a67157 FM |
2492 | Returns @true if the given point or rectangle area has been exposed since the |
2493 | last repaint. Call this in an paint event handler to optimize redrawing by | |
2494 | only redrawing those areas, which have been exposed. | |
2495 | */ | |
2496 | bool IsExposed(int x, int y) const; | |
3c4f71cc | 2497 | |
d0a67157 FM |
2498 | /** |
2499 | @overload | |
23324ae1 | 2500 | */ |
d0a67157 | 2501 | bool IsExposed(wxPoint& pt) const; |
23324ae1 FM |
2502 | |
2503 | /** | |
d0a67157 FM |
2504 | @overload |
2505 | */ | |
2506 | bool IsExposed(int x, int y, int w, int h) const; | |
3c4f71cc | 2507 | |
d0a67157 FM |
2508 | /** |
2509 | @overload | |
23324ae1 | 2510 | */ |
d0a67157 FM |
2511 | bool IsExposed(wxRect& rect) const; |
2512 | /** | |
2513 | Returns @true if the window is shown, @false if it has been hidden. | |
2514 | ||
2515 | @see IsShownOnScreen() | |
2516 | */ | |
2517 | virtual bool IsShown() const; | |
23324ae1 FM |
2518 | |
2519 | /** | |
0824e369 | 2520 | Returns @true if the window is physically visible on the screen, i.e.\ it |
d0a67157 | 2521 | is shown and all its parents up to the toplevel window are shown as well. |
3c4f71cc | 2522 | |
d0a67157 | 2523 | @see IsShown() |
23324ae1 | 2524 | */ |
d0a67157 | 2525 | virtual bool IsShownOnScreen() const; |
23324ae1 FM |
2526 | |
2527 | /** | |
d0a67157 FM |
2528 | Disables the window. Same as @ref Enable() Enable(@false). |
2529 | ||
2530 | @return Returns @true if the window has been disabled, @false if it had | |
2531 | been already disabled before the call to this function. | |
23324ae1 | 2532 | */ |
d0a67157 | 2533 | bool Disable(); |
23324ae1 FM |
2534 | |
2535 | /** | |
d0a67157 FM |
2536 | Enable or disable the window for user input. Note that when a parent window is |
2537 | disabled, all of its children are disabled as well and they are reenabled again | |
2538 | when the parent is. | |
3c4f71cc | 2539 | |
d0a67157 FM |
2540 | @param enable |
2541 | If @true, enables the window for input. If @false, disables the window. | |
3c4f71cc | 2542 | |
d0a67157 FM |
2543 | @return Returns @true if the window has been enabled or disabled, @false |
2544 | if nothing was done, i.e. if the window had already | |
2545 | been in the specified state. | |
3c4f71cc | 2546 | |
d0a67157 | 2547 | @see IsEnabled(), Disable(), wxRadioBox::Enable |
23324ae1 | 2548 | */ |
d0a67157 | 2549 | virtual bool Enable(bool enable = true); |
23324ae1 FM |
2550 | |
2551 | /** | |
d0a67157 FM |
2552 | Shows or hides the window. You may need to call Raise() |
2553 | for a top level window if you want to bring it to top, although this is not | |
2554 | needed if Show() is called immediately after the frame creation. | |
3c4f71cc | 2555 | |
a183ec70 VZ |
2556 | Notice that the default state of newly created top level windows is hidden |
2557 | (to allow you to create their contents without flicker) unlike for | |
2558 | all the other, not derived from wxTopLevelWindow, windows that | |
2559 | are by default created in the shown state. | |
2560 | ||
d0a67157 FM |
2561 | @param show |
2562 | If @true displays the window. Otherwise, hides it. | |
3c4f71cc | 2563 | |
d0a67157 FM |
2564 | @return @true if the window has been shown or hidden or @false if nothing |
2565 | was done because it already was in the requested state. | |
3c4f71cc | 2566 | |
d0a67157 | 2567 | @see IsShown(), Hide(), wxRadioBox::Show, wxShowEvent. |
23324ae1 | 2568 | */ |
d0a67157 | 2569 | virtual bool Show(bool show = true); |
23324ae1 | 2570 | |
23324ae1 | 2571 | /** |
d0a67157 FM |
2572 | This function shows a window, like Show(), but using a special visual |
2573 | effect if possible. | |
3c4f71cc | 2574 | |
d0a67157 FM |
2575 | @param effect |
2576 | The effect to use. | |
3c4f71cc | 2577 | |
d0a67157 FM |
2578 | @param timeout |
2579 | The @a timeout parameter specifies the time of the animation, in | |
2580 | milliseconds. If the default value of 0 is used, the default | |
2581 | animation time for the current platform is used. | |
3c4f71cc | 2582 | |
ab9a0b84 VZ |
2583 | @note Currently this function is only implemented in wxMSW and wxOSX |
2584 | (for wxTopLevelWindows only in Carbon version and for any kind of | |
2585 | windows in Cocoa) and does the same thing as Show() in the other | |
2586 | ports. | |
d0a67157 FM |
2587 | |
2588 | @since 2.9.0 | |
2589 | ||
2590 | @see HideWithEffect() | |
23324ae1 | 2591 | */ |
d0a67157 FM |
2592 | virtual bool ShowWithEffect(wxShowEffect effect, |
2593 | unsigned int timeout = 0); | |
2594 | ||
2595 | //@} | |
f41d6c8c | 2596 | |
d0a67157 | 2597 | |
d0a67157 | 2598 | /** |
47009083 | 2599 | @name Context-sensitive help functions |
d0a67157 | 2600 | */ |
f41d6c8c | 2601 | //@{ |
d0a67157 | 2602 | |
f41d6c8c | 2603 | /** |
47009083 FM |
2604 | Gets the help text to be used as context-sensitive help for this window. |
2605 | Note that the text is actually stored by the current wxHelpProvider | |
2606 | implementation, and not in the window object itself. | |
d0a67157 | 2607 | |
47009083 | 2608 | @see SetHelpText(), GetHelpTextAtPoint(), wxHelpProvider |
d0a67157 | 2609 | */ |
47009083 | 2610 | wxString GetHelpText() const; |
d0a67157 FM |
2611 | |
2612 | /** | |
47009083 FM |
2613 | Sets the help text to be used as context-sensitive help for this window. |
2614 | Note that the text is actually stored by the current wxHelpProvider | |
2615 | implementation, and not in the window object itself. | |
d0a67157 | 2616 | |
47009083 | 2617 | @see GetHelpText(), wxHelpProvider::AddHelp() |
d0a67157 | 2618 | */ |
47009083 | 2619 | void SetHelpText(const wxString& helpText); |
d0a67157 FM |
2620 | |
2621 | /** | |
47009083 FM |
2622 | Gets the help text to be used as context-sensitive help for this window. |
2623 | This method should be overridden if the help message depends on the position | |
2624 | inside the window, otherwise GetHelpText() can be used. | |
d0a67157 | 2625 | |
47009083 FM |
2626 | @param point |
2627 | Coordinates of the mouse at the moment of help event emission. | |
2628 | @param origin | |
2629 | Help event origin, see also wxHelpEvent::GetOrigin. | |
d0a67157 | 2630 | */ |
47009083 FM |
2631 | virtual wxString GetHelpTextAtPoint(const wxPoint& point, |
2632 | wxHelpEvent::Origin origin) const; | |
d0a67157 FM |
2633 | |
2634 | /** | |
2635 | Get the associated tooltip or @NULL if none. | |
2636 | */ | |
2637 | wxToolTip* GetToolTip() const; | |
2638 | ||
a16a2338 VZ |
2639 | /** |
2640 | Get the text of the associated tooltip or empty string if none. | |
2641 | */ | |
2642 | wxString GetToolTipText() const; | |
2643 | ||
d0a67157 FM |
2644 | /** |
2645 | Attach a tooltip to the window. | |
2646 | ||
2647 | wxToolTip pointer can be @NULL in the overload taking the pointer, | |
ccd4e1bc | 2648 | meaning to unset any existing tooltips; however UnsetToolTip() provides |
d0a67157 FM |
2649 | a more readable alternative to this operation. |
2650 | ||
2651 | Notice that these methods are always available, even if wxWidgets was | |
2652 | compiled with @c wxUSE_TOOLTIPS set to 0, but don't do anything in this | |
2653 | case. | |
2654 | ||
2655 | @see GetToolTip(), wxToolTip | |
2656 | */ | |
86381d42 | 2657 | void SetToolTip(const wxString& tipString); |
d0a67157 FM |
2658 | |
2659 | /** | |
2660 | @overload | |
2661 | */ | |
2662 | void SetToolTip(wxToolTip* tip); | |
2663 | ||
2664 | /** | |
2665 | Unset any existing tooltip. | |
2666 | ||
2667 | @since 2.9.0 | |
2668 | ||
2669 | @see SetToolTip() | |
2670 | */ | |
2671 | void UnsetToolTip(); | |
2672 | ||
2673 | //@} | |
2674 | ||
2675 | ||
2676 | /** | |
2677 | @name Popup/context menu functions | |
2678 | */ | |
2679 | //@{ | |
2680 | ||
2681 | /** | |
2682 | This function shows a popup menu at the given position in this window and | |
2683 | returns the selected id. | |
2684 | ||
2685 | It can be more convenient than the general purpose PopupMenu() function | |
2686 | for simple menus proposing a choice in a list of strings to the user. | |
2687 | ||
2688 | Notice that to avoid unexpected conflicts between the (usually | |
2689 | consecutive range of) ids used by the menu passed to this function and | |
2690 | the existing EVT_UPDATE_UI() handlers, this function temporarily | |
2691 | disables UI updates for the window, so you need to manually disable | |
2692 | (or toggle or ...) any items which should be disabled in the menu | |
2693 | before showing it. | |
2694 | ||
2695 | The parameter @a menu is the menu to show. | |
2696 | The parameter @a pos (or the parameters @a x and @a y) is the | |
2697 | position at which to show the menu in client coordinates. | |
51b729af VZ |
2698 | It is recommended to not explicitly specify coordinates when |
2699 | calling this method in response to mouse click, because some of | |
2700 | the ports (namely, wxGTK) can do a better job of positioning | |
2701 | the menu in that case. | |
d0a67157 FM |
2702 | |
2703 | @return | |
2704 | The selected menu item id or @c wxID_NONE if none selected or an | |
2705 | error occurred. | |
2706 | ||
2707 | @since 2.9.0 | |
2708 | */ | |
51b729af VZ |
2709 | int GetPopupMenuSelectionFromUser(wxMenu& menu, |
2710 | const wxPoint& pos = wxDefaultPosition); | |
d0a67157 FM |
2711 | |
2712 | /** | |
2713 | @overload | |
2714 | */ | |
2715 | int GetPopupMenuSelectionFromUser(wxMenu& menu, int x, int y); | |
2716 | ||
2717 | /** | |
2718 | Pops up the given menu at the specified coordinates, relative to this | |
2719 | window, and returns control when the user has dismissed the menu. | |
2720 | ||
2721 | If a menu item is selected, the corresponding menu event is generated and will be | |
ccd4e1bc | 2722 | processed as usual. If coordinates are not specified, the current mouse |
d0a67157 FM |
2723 | cursor position is used. |
2724 | ||
2725 | @a menu is the menu to pop up. | |
2726 | ||
2727 | The position where the menu will appear can be specified either as a | |
2728 | wxPoint @a pos or by two integers (@a x and @a y). | |
2729 | ||
2730 | @remarks Just before the menu is popped up, wxMenu::UpdateUI is called to | |
2731 | ensure that the menu items are in the correct state. | |
2732 | The menu does not get deleted by the window. | |
2733 | It is recommended to not explicitly specify coordinates when | |
2734 | calling PopupMenu in response to mouse click, because some of | |
2735 | the ports (namely, wxGTK) can do a better job of positioning | |
2736 | the menu in that case. | |
2737 | ||
2738 | @see wxMenu | |
2739 | */ | |
2740 | bool PopupMenu(wxMenu* menu, | |
2741 | const wxPoint& pos = wxDefaultPosition); | |
2742 | ||
2743 | /** | |
2744 | @overload | |
2745 | */ | |
2746 | bool PopupMenu(wxMenu* menu, int x, int y); | |
2747 | ||
2748 | //@} | |
2749 | ||
2750 | ||
d0a67157 | 2751 | /** |
47009083 | 2752 | Validator functions |
d0a67157 FM |
2753 | */ |
2754 | //@{ | |
2755 | ||
2756 | /** | |
47009083 FM |
2757 | Returns a pointer to the current validator for the window, or @NULL if |
2758 | there is none. | |
2759 | */ | |
2760 | virtual wxValidator* GetValidator(); | |
d0a67157 | 2761 | |
47009083 FM |
2762 | /** |
2763 | Deletes the current validator (if any) and sets the window validator, having | |
2764 | called wxValidator::Clone to create a new validator of this type. | |
2765 | */ | |
2766 | virtual void SetValidator(const wxValidator& validator); | |
d0a67157 | 2767 | |
47009083 FM |
2768 | /** |
2769 | Transfers values from child controls to data areas specified by their | |
2770 | validators. Returns @false if a transfer failed. | |
d0a67157 | 2771 | |
47009083 FM |
2772 | If the window has @c wxWS_EX_VALIDATE_RECURSIVELY extra style flag set, |
2773 | the method will also call TransferDataFromWindow() of all child windows. | |
2774 | ||
2775 | @see TransferDataToWindow(), wxValidator, Validate() | |
d0a67157 | 2776 | */ |
47009083 | 2777 | virtual bool TransferDataFromWindow(); |
d0a67157 FM |
2778 | |
2779 | /** | |
47009083 FM |
2780 | Transfers values to child controls from data areas specified by their |
2781 | validators. | |
d0a67157 | 2782 | |
47009083 FM |
2783 | If the window has @c wxWS_EX_VALIDATE_RECURSIVELY extra style flag set, |
2784 | the method will also call TransferDataToWindow() of all child windows. | |
d0a67157 | 2785 | |
47009083 | 2786 | @return Returns @false if a transfer failed. |
d0a67157 | 2787 | |
47009083 | 2788 | @see TransferDataFromWindow(), wxValidator, Validate() |
d0a67157 | 2789 | */ |
47009083 | 2790 | virtual bool TransferDataToWindow(); |
d0a67157 FM |
2791 | |
2792 | /** | |
47009083 FM |
2793 | Validates the current values of the child controls using their validators. |
2794 | If the window has @c wxWS_EX_VALIDATE_RECURSIVELY extra style flag set, | |
2795 | the method will also call Validate() of all child windows. | |
d0a67157 | 2796 | |
47009083 | 2797 | @return Returns @false if any of the validations failed. |
d0a67157 | 2798 | |
47009083 FM |
2799 | @see TransferDataFromWindow(), TransferDataToWindow(), |
2800 | wxValidator | |
d0a67157 | 2801 | */ |
47009083 | 2802 | virtual bool Validate(); |
d0a67157 | 2803 | |
47009083 | 2804 | //@} |
d0a67157 | 2805 | |
d0a67157 FM |
2806 | |
2807 | /** | |
47009083 | 2808 | @name wxWindow properties functions |
d0a67157 | 2809 | */ |
47009083 | 2810 | //@{ |
d0a67157 FM |
2811 | |
2812 | /** | |
2813 | Returns the identifier of the window. | |
2814 | ||
2815 | @remarks Each window has an integer identifier. If the application | |
ccd4e1bc | 2816 | has not provided one (or the default wxID_ANY) a unique |
d0a67157 FM |
2817 | identifier with a negative value will be generated. |
2818 | ||
2819 | @see SetId(), @ref overview_windowids | |
2820 | */ | |
2821 | wxWindowID GetId() const; | |
2822 | ||
2823 | /** | |
2824 | Generic way of getting a label from any window, for | |
2825 | identification purposes. | |
2826 | ||
2827 | @remarks The interpretation of this function differs from class to class. | |
2828 | For frames and dialogs, the value returned is the | |
2829 | title. For buttons or static text controls, it is the | |
2830 | button text. This function can be useful for | |
2831 | meta-programs (such as testing tools or special-needs | |
2832 | access programs) which need to identify windows by name. | |
2833 | */ | |
2834 | virtual wxString GetLabel() const; | |
2835 | ||
51c0d02b FM |
2836 | /** |
2837 | Returns the layout direction for this window, | |
2838 | Note that @c wxLayout_Default is returned if layout direction is not supported. | |
2839 | */ | |
2840 | virtual wxLayoutDirection GetLayoutDirection() const; | |
2841 | ||
0c3140ca RD |
2842 | /** |
2843 | Mirror coordinates for RTL layout if this window uses it and if the | |
2844 | mirroring is not done automatically like Win32. | |
2845 | */ | |
2846 | virtual wxCoord AdjustForLayoutDirection(wxCoord x, | |
2847 | wxCoord width, | |
2848 | wxCoord widthTotal) const; | |
2849 | ||
d0a67157 FM |
2850 | /** |
2851 | Returns the window's name. | |
2852 | ||
2853 | @remarks This name is not guaranteed to be unique; it is up to the | |
2854 | programmer to supply an appropriate name in the window | |
2855 | constructor or via SetName(). | |
2856 | ||
2857 | @see SetName() | |
2858 | */ | |
2859 | virtual wxString GetName() const; | |
2860 | ||
d0a67157 FM |
2861 | /** |
2862 | Returns the value previously passed to SetWindowVariant(). | |
2863 | */ | |
2864 | wxWindowVariant GetWindowVariant() const; | |
2865 | ||
2866 | /** | |
47009083 | 2867 | Sets the identifier of the window. |
d0a67157 | 2868 | |
47009083 FM |
2869 | @remarks Each window has an integer identifier. If the application has |
2870 | not provided one, an identifier will be generated. | |
2871 | Normally, the identifier should be provided on creation | |
2872 | and should not be modified subsequently. | |
d0a67157 | 2873 | |
47009083 | 2874 | @see GetId(), @ref overview_windowids |
d0a67157 | 2875 | */ |
47009083 | 2876 | void SetId(wxWindowID winid); |
d0a67157 FM |
2877 | |
2878 | /** | |
47009083 | 2879 | Sets the window's label. |
d0a67157 | 2880 | |
47009083 FM |
2881 | @param label |
2882 | The window label. | |
d0a67157 | 2883 | |
47009083 | 2884 | @see GetLabel() |
d0a67157 | 2885 | */ |
47009083 | 2886 | virtual void SetLabel(const wxString& label); |
d0a67157 | 2887 | |
51c0d02b FM |
2888 | /** |
2889 | Sets the layout direction for this window. | |
2890 | */ | |
2891 | virtual void SetLayoutDirection(wxLayoutDirection dir); | |
2892 | ||
d0a67157 | 2893 | /** |
47009083 | 2894 | Sets the window's name. |
d0a67157 | 2895 | |
47009083 FM |
2896 | @param name |
2897 | A name to set for the window. | |
d0a67157 | 2898 | |
47009083 | 2899 | @see GetName() |
d0a67157 | 2900 | */ |
47009083 | 2901 | virtual void SetName(const wxString& name); |
d0a67157 FM |
2902 | |
2903 | /** | |
47009083 FM |
2904 | This function can be called under all platforms but only does anything under |
2905 | Mac OS X 10.3+ currently. Under this system, each of the standard control can | |
2906 | exist in several sizes which correspond to the elements of wxWindowVariant enum. | |
d0a67157 | 2907 | |
47009083 FM |
2908 | By default the controls use the normal size, of course, but this function can |
2909 | be used to change this. | |
d0a67157 | 2910 | */ |
47009083 FM |
2911 | void SetWindowVariant(wxWindowVariant variant); |
2912 | ||
d0a67157 | 2913 | /** |
47009083 | 2914 | Gets the accelerator table for this window. See wxAcceleratorTable. |
d0a67157 | 2915 | */ |
47009083 | 2916 | wxAcceleratorTable* GetAcceleratorTable(); |
d0a67157 FM |
2917 | |
2918 | /** | |
47009083 FM |
2919 | Returns the accessible object for this window, if any. |
2920 | See also wxAccessible. | |
d0a67157 | 2921 | */ |
47009083 | 2922 | wxAccessible* GetAccessible(); |
d0a67157 FM |
2923 | |
2924 | /** | |
47009083 | 2925 | Sets the accelerator table for this window. See wxAcceleratorTable. |
d0a67157 | 2926 | */ |
47009083 | 2927 | virtual void SetAcceleratorTable(const wxAcceleratorTable& accel); |
d0a67157 FM |
2928 | |
2929 | /** | |
47009083 FM |
2930 | Sets the accessible for this window. Any existing accessible for this window |
2931 | will be deleted first, if not identical to @e accessible. | |
2932 | See also wxAccessible. | |
d0a67157 | 2933 | */ |
47009083 | 2934 | void SetAccessible(wxAccessible* accessible); |
d0a67157 | 2935 | |
47009083 | 2936 | //@} |
d0a67157 | 2937 | |
47009083 FM |
2938 | |
2939 | /** | |
2940 | @name Window deletion functions | |
d0a67157 | 2941 | */ |
47009083 | 2942 | //@{ |
d0a67157 FM |
2943 | |
2944 | /** | |
47009083 FM |
2945 | This function simply generates a wxCloseEvent whose handler usually tries |
2946 | to close the window. It doesn't close the window itself, however. | |
d0a67157 | 2947 | |
47009083 FM |
2948 | @param force |
2949 | @false if the window's close handler should be able to veto the destruction | |
2950 | of this window, @true if it cannot. | |
d0a67157 | 2951 | |
958eb28b | 2952 | @return @true if the event was handled and not vetoed, @false otherwise. |
bf12aaa5 | 2953 | |
47009083 FM |
2954 | @remarks Close calls the close handler for the window, providing an |
2955 | opportunity for the window to choose whether to destroy | |
2956 | the window. Usually it is only used with the top level | |
2957 | windows (wxFrame and wxDialog classes) as the others | |
2958 | are not supposed to have any special OnClose() logic. | |
2959 | The close handler should check whether the window is being deleted | |
2960 | forcibly, using wxCloseEvent::CanVeto, in which case it should | |
2961 | destroy the window using wxWindow::Destroy. | |
2962 | Note that calling Close does not guarantee that the window will | |
2963 | be destroyed; but it provides a way to simulate a manual close | |
2964 | of a window, which may or may not be implemented by destroying | |
2965 | the window. The default implementation of wxDialog::OnCloseWindow | |
2966 | does not necessarily delete the dialog, since it will simply | |
2967 | simulate an wxID_CANCEL event which is handled by the appropriate | |
2968 | button event handler and may do anything at all. | |
2969 | To guarantee that the window will be destroyed, call | |
2970 | wxWindow::Destroy instead | |
23324ae1 | 2971 | |
47009083 FM |
2972 | @see @ref overview_windowdeletion "Window Deletion Overview", |
2973 | Destroy(), wxCloseEvent | |
2974 | */ | |
2975 | bool Close(bool force = false); | |
3e0e3895 | 2976 | |
47009083 FM |
2977 | /** |
2978 | Destroys the window safely. Use this function instead of the delete operator, | |
2979 | since different window classes can be destroyed differently. Frames and dialogs | |
2980 | are not destroyed immediately when this function is called -- they are added | |
2981 | to a list of windows to be deleted on idle time, when all the window's events | |
2982 | have been processed. This prevents problems with events being sent to | |
2983 | non-existent windows. | |
d0a67157 | 2984 | |
47009083 FM |
2985 | @return @true if the window has either been successfully deleted, or it |
2986 | has been added to the list of windows pending real deletion. | |
3e0e3895 | 2987 | */ |
47009083 | 2988 | virtual bool Destroy(); |
3e0e3895 | 2989 | |
23324ae1 | 2990 | /** |
47009083 | 2991 | Returns true if this window is in process of being destroyed. |
e25cd775 | 2992 | |
ccd4e1bc | 2993 | Top level windows are not deleted immediately but are rather |
47009083 | 2994 | scheduled for later destruction to give them time to process any |
ccd4e1bc | 2995 | pending messages; see Destroy() description. |
47009083 FM |
2996 | |
2997 | This function returns @true if this window, or one of its parent | |
2998 | windows, is scheduled for destruction and can be useful to avoid | |
2999 | manipulating it as it's usually useless to do something with a window | |
3000 | which is on the point of disappearing anyhow. | |
3001 | */ | |
3002 | bool IsBeingDeleted() const; | |
3003 | ||
3004 | //@} | |
3005 | ||
3006 | ||
3007 | ||
3008 | /** | |
3009 | @name Drag and drop functions | |
23324ae1 | 3010 | */ |
47009083 | 3011 | //@{ |
23324ae1 FM |
3012 | |
3013 | /** | |
47009083 FM |
3014 | Returns the associated drop target, which may be @NULL. |
3015 | ||
3016 | @see SetDropTarget(), @ref overview_dnd | |
23324ae1 | 3017 | */ |
47009083 | 3018 | virtual wxDropTarget* GetDropTarget() const; |
23324ae1 FM |
3019 | |
3020 | /** | |
47009083 FM |
3021 | Associates a drop target with this window. |
3022 | If the window already has a drop target, it is deleted. | |
3023 | ||
3024 | @see GetDropTarget(), @ref overview_dnd | |
23324ae1 | 3025 | */ |
47009083 | 3026 | virtual void SetDropTarget(wxDropTarget* target); |
23324ae1 | 3027 | |
23324ae1 | 3028 | /** |
47009083 | 3029 | Enables or disables eligibility for drop file events (OnDropFiles). |
410201d9 | 3030 | |
47009083 FM |
3031 | @param accept |
3032 | If @true, the window is eligible for drop file events. | |
3033 | If @false, the window will not accept drop file events. | |
410201d9 | 3034 | |
47009083 FM |
3035 | @remarks Windows only until version 2.8.9, available on all platforms |
3036 | since 2.8.10. Cannot be used together with SetDropTarget() on | |
3037 | non-Windows platforms. | |
410201d9 | 3038 | |
47009083 | 3039 | @see SetDropTarget() |
23324ae1 | 3040 | */ |
47009083 FM |
3041 | virtual void DragAcceptFiles(bool accept); |
3042 | ||
3043 | //@} | |
3044 | ||
23324ae1 FM |
3045 | |
3046 | /** | |
d13b34d3 | 3047 | @name Constraints, sizers and window layout functions |
23324ae1 | 3048 | */ |
47009083 FM |
3049 | //@{ |
3050 | ||
3051 | /** | |
ccd4e1bc | 3052 | Returns the sizer of which this window is a member, if any, otherwise @NULL. |
47009083 FM |
3053 | */ |
3054 | wxSizer* GetContainingSizer() const; | |
3055 | ||
3056 | /** | |
ccd4e1bc VZ |
3057 | Returns the sizer associated with the window by a previous call to |
3058 | SetSizer(), or @NULL. | |
47009083 FM |
3059 | */ |
3060 | wxSizer* GetSizer() const; | |
3061 | ||
3062 | /** | |
3063 | Sets the window to have the given layout sizer. | |
6528a7f1 | 3064 | |
47009083 FM |
3065 | The window will then own the object, and will take care of its deletion. |
3066 | If an existing layout constraints object is already owned by the | |
6528a7f1 | 3067 | window, it will be deleted if the @a deleteOld parameter is @true. |
47009083 FM |
3068 | |
3069 | Note that this function will also call SetAutoLayout() implicitly with @true | |
6528a7f1 VZ |
3070 | parameter if the @a sizer is non-@NULL and @false otherwise so that the |
3071 | sizer will be effectively used to layout the window children whenever | |
3072 | it is resized. | |
47009083 FM |
3073 | |
3074 | @param sizer | |
3075 | The sizer to set. Pass @NULL to disassociate and conditionally delete | |
3076 | the window's sizer. See below. | |
3077 | @param deleteOld | |
3078 | If @true (the default), this will delete any pre-existing sizer. | |
6528a7f1 VZ |
3079 | Pass @false if you wish to handle deleting the old sizer yourself |
3080 | but remember to do it yourself in this case to avoid memory leaks. | |
47009083 FM |
3081 | |
3082 | @remarks SetSizer enables and disables Layout automatically. | |
3083 | */ | |
3084 | void SetSizer(wxSizer* sizer, bool deleteOld = true); | |
3085 | ||
3086 | /** | |
3087 | This method calls SetSizer() and then wxSizer::SetSizeHints which sets the initial | |
3088 | window size to the size needed to accommodate all sizer elements and sets the | |
3089 | size hints which, if this window is a top level one, prevent the user from | |
d13b34d3 | 3090 | resizing it to be less than this minimal size. |
47009083 FM |
3091 | */ |
3092 | void SetSizerAndFit(wxSizer* sizer, bool deleteOld = true); | |
3093 | ||
3094 | /** | |
3095 | Returns a pointer to the window's layout constraints, or @NULL if there are none. | |
3096 | */ | |
3097 | wxLayoutConstraints* GetConstraints() const; | |
23324ae1 FM |
3098 | |
3099 | /** | |
d0a67157 FM |
3100 | Sets the window to have the given layout constraints. The window |
3101 | will then own the object, and will take care of its deletion. | |
3102 | If an existing layout constraints object is already owned by the | |
3103 | window, it will be deleted. | |
23324ae1 | 3104 | |
d0a67157 FM |
3105 | @param constraints |
3106 | The constraints to set. Pass @NULL to disassociate and delete the window's | |
3107 | constraints. | |
3108 | ||
3109 | @remarks You must call SetAutoLayout() to tell a window to use | |
3110 | the constraints automatically in OnSize; otherwise, you | |
3111 | must override OnSize and call Layout() explicitly. When | |
3112 | setting both a wxLayoutConstraints and a wxSizer, only | |
3113 | the sizer will have effect. | |
23324ae1 | 3114 | */ |
d0a67157 | 3115 | void SetConstraints(wxLayoutConstraints* constraints); |
23324ae1 | 3116 | |
47009083 FM |
3117 | /** |
3118 | Invokes the constraint-based layout algorithm or the sizer-based algorithm | |
3119 | for this window. | |
3120 | ||
3121 | This function does not get called automatically when the window is resized | |
3122 | because lots of windows deriving from wxWindow does not need this functionality. | |
3123 | If you want to have Layout() called automatically, you should derive | |
3124 | from wxPanel (see wxPanel::Layout). | |
3125 | ||
3126 | @see @ref overview_windowsizing | |
3127 | */ | |
3128 | virtual bool Layout(); | |
3129 | ||
3130 | /** | |
3131 | Determines whether the Layout() function will be called automatically | |
6528a7f1 | 3132 | when the window is resized. |
47009083 FM |
3133 | |
3134 | This method is called implicitly by SetSizer() but if you use SetConstraints() | |
3135 | you should call it manually or otherwise the window layout won't be correctly | |
3136 | updated when its size changes. | |
3137 | ||
3138 | @param autoLayout | |
6528a7f1 VZ |
3139 | Set this to @true if you wish the Layout() function to be called |
3140 | automatically when the window is resized. | |
47009083 | 3141 | |
6528a7f1 | 3142 | @see SetSizer(), SetConstraints() |
47009083 FM |
3143 | */ |
3144 | void SetAutoLayout(bool autoLayout); | |
3145 | ||
05b0355a RD |
3146 | bool GetAutoLayout() const; |
3147 | ||
47009083 FM |
3148 | //@} |
3149 | ||
3150 | ||
3151 | ||
3152 | /** | |
3153 | @name Mouse functions | |
3154 | */ | |
3155 | //@{ | |
3156 | ||
3157 | /** | |
3158 | Directs all mouse input to this window. | |
3159 | Call ReleaseMouse() to release the capture. | |
3160 | ||
3161 | Note that wxWidgets maintains the stack of windows having captured the mouse | |
3162 | and when the mouse is released the capture returns to the window which had had | |
3163 | captured it previously and it is only really released if there were no previous | |
3164 | window. In particular, this means that you must release the mouse as many times | |
3165 | as you capture it, unless the window receives the wxMouseCaptureLostEvent event. | |
3166 | ||
3167 | Any application which captures the mouse in the beginning of some operation | |
3168 | must handle wxMouseCaptureLostEvent and cancel this operation when it receives | |
3169 | the event. The event handler must not recapture mouse. | |
3170 | ||
3171 | @see ReleaseMouse(), wxMouseCaptureLostEvent | |
3172 | */ | |
3173 | void CaptureMouse(); | |
3174 | ||
3175 | /** | |
3176 | Returns the caret() associated with the window. | |
3177 | */ | |
3178 | wxCaret* GetCaret() const; | |
3179 | ||
3180 | /** | |
3181 | Return the cursor associated with this window. | |
3182 | ||
3183 | @see SetCursor() | |
3184 | */ | |
3185 | const wxCursor& GetCursor() const; | |
3186 | ||
3187 | /** | |
3188 | Returns @true if this window has the current mouse capture. | |
3189 | ||
3190 | @see CaptureMouse(), ReleaseMouse(), wxMouseCaptureLostEvent, | |
3191 | wxMouseCaptureChangedEvent | |
3192 | */ | |
3193 | virtual bool HasCapture() const; | |
3194 | ||
3195 | /** | |
3196 | Releases mouse input captured with CaptureMouse(). | |
3197 | ||
3198 | @see CaptureMouse(), HasCapture(), ReleaseMouse(), | |
3199 | wxMouseCaptureLostEvent, wxMouseCaptureChangedEvent | |
3200 | */ | |
3201 | void ReleaseMouse(); | |
3202 | ||
3203 | /** | |
3204 | Sets the caret() associated with the window. | |
3205 | */ | |
3206 | void SetCaret(wxCaret* caret); | |
3207 | ||
23324ae1 | 3208 | /** |
d0a67157 FM |
3209 | Sets the window's cursor. Notice that the window cursor also sets it for the |
3210 | children of the window implicitly. | |
e25cd775 | 3211 | |
d0a67157 FM |
3212 | The @a cursor may be @c wxNullCursor in which case the window cursor will |
3213 | be reset back to default. | |
3c4f71cc | 3214 | |
d0a67157 FM |
3215 | @param cursor |
3216 | Specifies the cursor that the window should normally display. | |
3217 | ||
3218 | @see ::wxSetCursor, wxCursor | |
23324ae1 | 3219 | */ |
d0a67157 | 3220 | virtual bool SetCursor(const wxCursor& cursor); |
23324ae1 FM |
3221 | |
3222 | /** | |
47009083 | 3223 | Moves the pointer to the given position on the window. |
3c4f71cc | 3224 | |
5f2b0d85 VZ |
3225 | @note Apple Human Interface Guidelines forbid moving the mouse cursor |
3226 | programmatically so you should avoid using this function in Mac | |
3227 | applications (and probably avoid using it under the other | |
3228 | platforms without good reason as well). | |
47009083 FM |
3229 | |
3230 | @param x | |
3231 | The new x position for the cursor. | |
3232 | @param y | |
3233 | The new y position for the cursor. | |
23324ae1 | 3234 | */ |
47009083 FM |
3235 | virtual void WarpPointer(int x, int y); |
3236 | ||
3237 | //@} | |
3238 | ||
3239 | ||
3240 | ||
23324ae1 FM |
3241 | |
3242 | /** | |
47009083 FM |
3243 | @name Miscellaneous functions |
3244 | */ | |
3245 | //@{ | |
e25cd775 | 3246 | |
05b0355a RD |
3247 | wxHitTest HitTest(wxCoord x, wxCoord y) const; |
3248 | wxHitTest HitTest(const wxPoint& pt) const; | |
3249 | ||
3250 | /** | |
3251 | Get the window border style from the given flags: this is different from | |
3252 | simply doing flags & wxBORDER_MASK because it uses GetDefaultBorder() to | |
3253 | translate wxBORDER_DEFAULT to something reasonable | |
3254 | */ | |
3255 | wxBorder GetBorder(long flags) const; | |
3256 | ||
3257 | /** | |
3258 | Get border for the flags of this window | |
3259 | */ | |
3260 | wxBorder GetBorder() const; | |
3261 | ||
3262 | ||
47009083 FM |
3263 | /** |
3264 | Does the window-specific updating after processing the update event. | |
3265 | This function is called by UpdateWindowUI() in order to check return | |
3266 | values in the wxUpdateUIEvent and act appropriately. | |
3267 | For example, to allow frame and dialog title updating, wxWidgets | |
3268 | implements this function as follows: | |
3269 | ||
3270 | @code | |
3271 | // do the window-specific processing after processing the update event | |
3272 | void wxTopLevelWindowBase::DoUpdateWindowUI(wxUpdateUIEvent& event) | |
3273 | { | |
3274 | if ( event.GetSetEnabled() ) | |
3275 | Enable(event.GetEnabled()); | |
3276 | ||
3277 | if ( event.GetSetText() ) | |
3278 | { | |
3279 | if ( event.GetText() != GetTitle() ) | |
3280 | SetTitle(event.GetText()); | |
3281 | } | |
3282 | } | |
3283 | @endcode | |
3284 | */ | |
3285 | virtual void DoUpdateWindowUI(wxUpdateUIEvent& event); | |
3286 | ||
3287 | /** | |
3288 | Returns the platform-specific handle of the physical window. | |
3289 | Cast it to an appropriate handle, such as @b HWND for Windows, | |
bd362275 | 3290 | @b Widget for Motif or @b GtkWidget for GTK. |
1058f652 MB |
3291 | |
3292 | @beginWxPerlOnly | |
3293 | This method will return an integer in wxPerl. | |
3294 | @endWxPerlOnly | |
47009083 FM |
3295 | */ |
3296 | virtual WXWidget GetHandle() const; | |
3297 | ||
3298 | /** | |
3299 | This method should be overridden to return @true if this window has | |
3300 | multiple pages. All standard class with multiple pages such as | |
3301 | wxNotebook, wxListbook and wxTreebook already override it to return @true | |
ccd4e1bc | 3302 | and user-defined classes with similar behaviour should also do so, to |
47009083 FM |
3303 | allow the library to handle such windows appropriately. |
3304 | */ | |
3305 | virtual bool HasMultiplePages() const; | |
3306 | ||
3307 | /** | |
3308 | This function is (or should be, in case of custom controls) called during | |
3309 | window creation to intelligently set up the window visual attributes, that is | |
3310 | the font and the foreground and background colours. | |
3311 | ||
3312 | By "intelligently" the following is meant: by default, all windows use their | |
3313 | own @ref GetClassDefaultAttributes() default attributes. | |
3314 | However if some of the parents attributes are explicitly (that is, using | |
3315 | SetFont() and not wxWindow::SetOwnFont) changed and if the corresponding | |
3316 | attribute hadn't been explicitly set for this window itself, then this | |
3317 | window takes the same value as used by the parent. | |
3318 | In addition, if the window overrides ShouldInheritColours() to return @false, | |
3319 | the colours will not be changed no matter what and only the font might. | |
3320 | ||
3321 | This rather complicated logic is necessary in order to accommodate the | |
3322 | different usage scenarios. The most common one is when all default attributes | |
3323 | are used and in this case, nothing should be inherited as in modern GUIs | |
3324 | different controls use different fonts (and colours) than their siblings so | |
3325 | they can't inherit the same value from the parent. However it was also deemed | |
3326 | desirable to allow to simply change the attributes of all children at once by | |
3327 | just changing the font or colour of their common parent, hence in this case we | |
3328 | do inherit the parents attributes. | |
23324ae1 | 3329 | */ |
47009083 | 3330 | virtual void InheritAttributes(); |
23324ae1 FM |
3331 | |
3332 | /** | |
47009083 FM |
3333 | Sends an @c wxEVT_INIT_DIALOG event, whose handler usually transfers data |
3334 | to the dialog via validators. | |
23324ae1 | 3335 | */ |
47009083 | 3336 | virtual void InitDialog(); |
23324ae1 FM |
3337 | |
3338 | /** | |
0824e369 | 3339 | Returns @true if the window contents is double-buffered by the system, i.e.\ if |
47009083 FM |
3340 | any drawing done on the window is really done on a temporary backing surface |
3341 | and transferred to the screen all at once later. | |
3c4f71cc | 3342 | |
47009083 | 3343 | @see wxBufferedDC |
d0a67157 | 3344 | */ |
47009083 | 3345 | virtual bool IsDoubleBuffered() const; |
3c4f71cc | 3346 | |
b83b7724 RD |
3347 | /** |
3348 | Turn on or off double buffering of the window if the system supports it. | |
3349 | */ | |
05b0355a RD |
3350 | void SetDoubleBuffered(bool on); |
3351 | ||
d0a67157 | 3352 | /** |
47009083 | 3353 | Returns @true if the window is retained, @false otherwise. |
3c4f71cc | 3354 | |
47009083 | 3355 | @remarks Retained windows are only available on X platforms. |
23324ae1 | 3356 | */ |
47009083 | 3357 | virtual bool IsRetained() const; |
23324ae1 FM |
3358 | |
3359 | /** | |
47009083 | 3360 | Returns @true if this window is intrinsically enabled, @false otherwise, |
0824e369 | 3361 | i.e.\ if @ref Enable() Enable(@false) had been called. This method is |
47009083 FM |
3362 | mostly used for wxWidgets itself, user code should normally use |
3363 | IsEnabled() instead. | |
d0a67157 | 3364 | */ |
47009083 | 3365 | bool IsThisEnabled() const; |
a7c01bb1 | 3366 | |
d0a67157 | 3367 | /** |
47009083 FM |
3368 | Returns @true if the given window is a top-level one. Currently all frames and |
3369 | dialogs are considered to be top-level windows (even if they have a parent | |
3370 | window). | |
23324ae1 | 3371 | */ |
47009083 | 3372 | virtual bool IsTopLevel() const; |
23324ae1 | 3373 | |
05b0355a | 3374 | |
23324ae1 | 3375 | /** |
47009083 FM |
3376 | This virtual function is normally only used internally, but |
3377 | sometimes an application may need it to implement functionality | |
3378 | that should not be disabled by an application defining an OnIdle | |
3379 | handler in a derived class. | |
3c4f71cc | 3380 | |
47009083 FM |
3381 | This function may be used to do delayed painting, for example, |
3382 | and most implementations call UpdateWindowUI() | |
3383 | in order to send update events to the window in idle time. | |
23324ae1 | 3384 | */ |
47009083 | 3385 | virtual void OnInternalIdle(); |
23324ae1 | 3386 | |
0c3140ca RD |
3387 | /** |
3388 | Send idle event to window and all subwindows. Returns true if more idle | |
3389 | time is requested. | |
3390 | */ | |
3391 | virtual bool SendIdleEvents(wxIdleEvent& event); | |
3392 | ||
23324ae1 | 3393 | /** |
47009083 FM |
3394 | Registers a system wide hotkey. Every time the user presses the hotkey |
3395 | registered here, this window will receive a hotkey event. | |
e25cd775 | 3396 | |
47009083 FM |
3397 | It will receive the event even if the application is in the background |
3398 | and does not have the input focus because the user is working with some | |
3399 | other application. | |
3c4f71cc | 3400 | |
47009083 FM |
3401 | @param hotkeyId |
3402 | Numeric identifier of the hotkey. For applications this must be between 0 | |
3403 | and 0xBFFF. If this function is called from a shared DLL, it must be a | |
3404 | system wide unique identifier between 0xC000 and 0xFFFF. | |
3405 | This is a MSW specific detail. | |
3406 | @param modifiers | |
3407 | A bitwise combination of wxMOD_SHIFT, wxMOD_CONTROL, wxMOD_ALT | |
3408 | or wxMOD_WIN specifying the modifier keys that have to be pressed along | |
3409 | with the key. | |
3410 | @param virtualKeyCode | |
3411 | The virtual key code of the hotkey. | |
3c4f71cc | 3412 | |
47009083 FM |
3413 | @return @true if the hotkey was registered successfully. @false if some |
3414 | other application already registered a hotkey with this | |
3415 | modifier/virtualKeyCode combination. | |
3416 | ||
3417 | @remarks Use EVT_HOTKEY(hotkeyId, fnc) in the event table to capture the | |
3418 | event. This function is currently only implemented | |
3419 | under Windows. It is used in the Windows CE port for | |
3420 | detecting hardware button presses. | |
3421 | ||
3422 | @see UnregisterHotKey() | |
23324ae1 | 3423 | */ |
47009083 FM |
3424 | virtual bool RegisterHotKey(int hotkeyId, int modifiers, |
3425 | int virtualKeyCode); | |
23324ae1 FM |
3426 | |
3427 | /** | |
3428 | Unregisters a system wide hotkey. | |
3c4f71cc | 3429 | |
7c913512 | 3430 | @param hotkeyId |
4cc4bfaf | 3431 | Numeric identifier of the hotkey. Must be the same id that was passed to |
e25cd775 | 3432 | RegisterHotKey(). |
3c4f71cc | 3433 | |
d29a9a8a | 3434 | @return @true if the hotkey was unregistered successfully, @false if the |
e25cd775 | 3435 | id was invalid. |
3c4f71cc | 3436 | |
23324ae1 | 3437 | @remarks This function is currently only implemented under MSW. |
3c4f71cc | 3438 | |
4cc4bfaf | 3439 | @see RegisterHotKey() |
23324ae1 | 3440 | */ |
da1ed74c | 3441 | virtual bool UnregisterHotKey(int hotkeyId); |
23324ae1 | 3442 | |
23324ae1 | 3443 | /** |
e25cd775 FM |
3444 | This function sends one or more wxUpdateUIEvent to the window. |
3445 | The particular implementation depends on the window; for example a | |
3446 | wxToolBar will send an update UI event for each toolbar button, | |
23324ae1 | 3447 | and a wxFrame will send an update UI event for each menubar menu item. |
e25cd775 | 3448 | |
23324ae1 FM |
3449 | You can call this function from your application to ensure that your |
3450 | UI is up-to-date at this point (as far as your wxUpdateUIEvent handlers | |
3451 | are concerned). This may be necessary if you have called | |
e25cd775 FM |
3452 | wxUpdateUIEvent::SetMode() or wxUpdateUIEvent::SetUpdateInterval() to limit |
3453 | the overhead that wxWidgets incurs by sending update UI events in idle time. | |
99d82720 | 3454 | @a flags should be a bitlist of one or more of the ::wxUpdateUI enumeration. |
3c4f71cc | 3455 | |
23324ae1 FM |
3456 | If you are calling this function from an OnInternalIdle or OnIdle |
3457 | function, make sure you pass the wxUPDATE_UI_FROMIDLE flag, since | |
3458 | this tells the window to only update the UI elements that need | |
3459 | to be updated in idle time. Some windows update their elements | |
3460 | only when necessary, for example when a menu is about to be shown. | |
3461 | The following is an example of how to call UpdateWindowUI from | |
3462 | an idle function. | |
3c4f71cc | 3463 | |
e25cd775 FM |
3464 | @code |
3465 | void MyWindow::OnInternalIdle() | |
3466 | { | |
3467 | if (wxUpdateUIEvent::CanUpdate(this)) | |
3468 | UpdateWindowUI(wxUPDATE_UI_FROMIDLE); | |
3469 | } | |
3470 | @endcode | |
3471 | ||
4cc4bfaf | 3472 | @see wxUpdateUIEvent, DoUpdateWindowUI(), OnInternalIdle() |
23324ae1 FM |
3473 | */ |
3474 | virtual void UpdateWindowUI(long flags = wxUPDATE_UI_NONE); | |
3475 | ||
47009083 FM |
3476 | //@} |
3477 | ||
3478 | ||
3479 | // NOTE: static functions must have their own group or Doxygen will screw | |
3480 | // up the ordering of the member groups | |
3481 | ||
23324ae1 | 3482 | /** |
47009083 FM |
3483 | @name Miscellaneous static functions |
3484 | */ | |
3485 | //@{ | |
3c4f71cc | 3486 | |
47009083 FM |
3487 | /** |
3488 | Returns the default font and colours which are used by the control. | |
3c4f71cc | 3489 | |
47009083 FM |
3490 | This is useful if you want to use the same font or colour in your own control |
3491 | as in a standard control -- which is a much better idea than hard coding specific | |
3492 | colours or fonts which might look completely out of place on the users | |
3493 | system, especially if it uses themes. | |
3494 | ||
3495 | The @a variant parameter is only relevant under Mac currently and is | |
3496 | ignore under other platforms. Under Mac, it will change the size of the | |
3497 | returned font. See SetWindowVariant() for more about this. | |
3498 | ||
3499 | This static method is "overridden" in many derived classes and so calling, | |
3500 | for example, wxButton::GetClassDefaultAttributes() will typically | |
3501 | return the values appropriate for a button which will be normally different | |
3502 | from those returned by, say, wxListCtrl::GetClassDefaultAttributes(). | |
3503 | ||
3504 | The @c wxVisualAttributes structure has at least the fields | |
3505 | @c font, @c colFg and @c colBg. All of them may be invalid | |
3506 | if it was not possible to determine the default control appearance or, | |
3507 | especially for the background colour, if the field doesn't make sense as is | |
3508 | the case for @c colBg for the controls with themed background. | |
3509 | ||
3510 | @see InheritAttributes() | |
23324ae1 | 3511 | */ |
47009083 | 3512 | static wxVisualAttributes GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); |
23324ae1 FM |
3513 | |
3514 | /** | |
47009083 | 3515 | Finds the window or control which currently has the keyboard focus. |
e25cd775 | 3516 | |
47009083 FM |
3517 | @remarks Note that this is a static function, so it can be called without |
3518 | needing a wxWindow pointer. | |
3c4f71cc | 3519 | |
47009083 | 3520 | @see SetFocus(), HasFocus() |
23324ae1 | 3521 | */ |
47009083 FM |
3522 | static wxWindow* FindFocus(); |
3523 | ||
3524 | /** | |
3525 | Find the first window with the given @e id. | |
3526 | ||
3527 | If @a parent is @NULL, the search will start from all top-level frames | |
3528 | and dialog boxes; if non-@NULL, the search will be limited to the given | |
3529 | window hierarchy. | |
3530 | The search is recursive in both cases. | |
3531 | ||
3532 | @see FindWindow() | |
d9c83ba8 VZ |
3533 | |
3534 | @return Window with the given @a id or @NULL if not found. | |
47009083 FM |
3535 | */ |
3536 | static wxWindow* FindWindowById(long id, const wxWindow* parent = 0); | |
3537 | ||
3538 | /** | |
3539 | Find a window by its label. | |
3540 | ||
3541 | Depending on the type of window, the label may be a window title | |
3542 | or panel item label. If @a parent is @NULL, the search will start from all | |
3543 | top-level frames and dialog boxes; if non-@NULL, the search will be | |
3544 | limited to the given window hierarchy. | |
3545 | The search is recursive in both cases. | |
3546 | ||
3547 | @see FindWindow() | |
d9c83ba8 VZ |
3548 | |
3549 | @return Window with the given @a label or @NULL if not found. | |
47009083 FM |
3550 | */ |
3551 | static wxWindow* FindWindowByLabel(const wxString& label, | |
3552 | const wxWindow* parent = 0); | |
3553 | ||
3554 | /** | |
3555 | Find a window by its name (as given in a window constructor or Create() | |
3556 | function call). | |
3557 | ||
3558 | If @a parent is @NULL, the search will start from all top-level frames | |
3559 | and dialog boxes; if non-@NULL, the search will be limited to the given | |
3560 | window hierarchy. | |
3561 | ||
3562 | The search is recursive in both cases. If no window with such name is found, | |
3563 | FindWindowByLabel() is called. | |
3564 | ||
3565 | @see FindWindow() | |
d9c83ba8 VZ |
3566 | |
3567 | @return Window with the given @a name or @NULL if not found. | |
47009083 FM |
3568 | */ |
3569 | static wxWindow* FindWindowByName(const wxString& name, | |
3570 | const wxWindow* parent = 0); | |
3571 | ||
3572 | /** | |
3573 | Returns the currently captured window. | |
3574 | ||
3575 | @see HasCapture(), CaptureMouse(), ReleaseMouse(), | |
3576 | wxMouseCaptureLostEvent, wxMouseCaptureChangedEvent | |
3577 | */ | |
3578 | static wxWindow* GetCapture(); | |
3579 | ||
3580 | /** | |
3581 | Create a new ID or range of IDs that are not currently in use. | |
3582 | The IDs will be reserved until assigned to a wxWindow ID | |
3583 | or unreserved with UnreserveControlId(). | |
3584 | ||
3585 | See @ref overview_windowids for more information. | |
3586 | ||
3587 | @param count | |
3588 | The number of sequential IDs to reserve. | |
3589 | ||
ccd4e1bc VZ |
3590 | @return Returns the ID or the first ID of the range (i.e. the most negative), |
3591 | or wxID_NONE if the specified number of identifiers couldn't be allocated. | |
47009083 FM |
3592 | |
3593 | @see UnreserveControlId(), wxIdManager, | |
3594 | @ref overview_windowids | |
3595 | */ | |
3596 | static wxWindowID NewControlId(int count = 1); | |
3597 | ||
3598 | /** | |
3599 | Unreserve an ID or range of IDs that was reserved by NewControlId(). | |
3600 | See @ref overview_windowids for more information. | |
3601 | ||
3602 | @param id | |
3603 | The starting ID of the range of IDs to unreserve. | |
3604 | @param count | |
3605 | The number of sequential IDs to unreserve. | |
3606 | ||
3607 | @see NewControlId(), wxIdManager, @ref overview_windowids | |
3608 | */ | |
3609 | static void UnreserveControlId(wxWindowID id, int count = 1); | |
95b4a59e | 3610 | |
d0a67157 | 3611 | //@} |
95b4a59e | 3612 | |
47009083 FM |
3613 | |
3614 | ||
95b4a59e FM |
3615 | protected: |
3616 | ||
05b0355a RD |
3617 | /** |
3618 | Centres the window. | |
3619 | ||
3620 | @param direction | |
3621 | Specifies the direction for the centring. May be wxHORIZONTAL, | |
3622 | wxVERTICAL or wxBOTH. It may also include the wxCENTRE_ON_SCREEN | |
3623 | flag. | |
3624 | ||
3625 | @remarks This function is not meant to be called directly by user code, | |
3626 | but via Centre, Center, CentreOnParent, or CenterOnParent. | |
4c51a665 | 3627 | This function can be overridden to fine-tune centring behaviour. |
05b0355a RD |
3628 | */ |
3629 | virtual void DoCentre(int direction); | |
3630 | ||
95b4a59e | 3631 | /** |
386279c3 VZ |
3632 | Implementation of GetBestSize() that can be overridden. |
3633 | ||
3634 | Notice that it is usually more convenient to override | |
3635 | DoGetBestClientSize() rather than this method itself as you need to | |
3636 | explicitly account for the window borders size if you do the latter. | |
95b4a59e FM |
3637 | |
3638 | The default implementation of this function is designed for use in container | |
3639 | windows, such as wxPanel, and works something like this: | |
3640 | -# If the window has a sizer then it is used to calculate the best size. | |
3641 | -# Otherwise if the window has layout constraints then those are used to | |
3642 | calculate the best size. | |
3643 | -# Otherwise if the window has children then the best size is set to be large | |
3644 | enough to show all the children. | |
3645 | -# Otherwise if there are no children then the window's minimal size will be | |
3646 | used as its best size. | |
3647 | -# Otherwise if there is no minimal size set, then the current size is used | |
3648 | for the best size. | |
3649 | ||
3650 | @see @ref overview_windowsizing | |
3651 | */ | |
3652 | virtual wxSize DoGetBestSize() const; | |
3653 | ||
386279c3 VZ |
3654 | /** |
3655 | Override this method to return the best size for a custom control. | |
3656 | ||
3657 | A typical implementation of this method should compute the minimal size | |
3658 | needed to fully display the control contents taking into account the | |
3659 | current font size. | |
3660 | ||
3661 | The default implementation simply returns ::wxDefaultSize and | |
3662 | GetBestSize() returns an arbitrary hardcoded size for the window, so | |
3663 | you must override it when implementing a custom window class. | |
3664 | ||
705c834b VZ |
3665 | Notice that the best size returned by this function is cached |
3666 | internally, so if anything that results in the best size changing (e.g. | |
3667 | change to the control contents) happens, you need to call | |
3668 | InvalidateBestSize() to notify wxWidgets about it. | |
3669 | ||
386279c3 VZ |
3670 | @see @ref overview_windowsizing |
3671 | ||
3672 | @since 2.9.0 | |
3673 | */ | |
3674 | virtual wxSize DoGetBestClientSize() const; | |
3675 | ||
d1199839 VZ |
3676 | /** |
3677 | Override this method to implement height-for-width best size | |
3678 | calculation. | |
3679 | ||
3680 | Return the height needed to fully display the control contents if its | |
3681 | width is fixed to the given value. Custom classes implementing | |
3682 | wrapping should override this method and return the height | |
3683 | corresponding to the number of lines needed to lay out the control | |
3684 | contents at this width. | |
3685 | ||
3686 | Currently this method is not used by wxWidgets yet, however it is | |
3687 | planned that it will be used by the new sizer classes implementing | |
3688 | height-for-width layout strategy in the future. | |
3689 | ||
3690 | Notice that implementing this method or even implementing both it and | |
3691 | DoGetBestClientWidth() doesn't replace overriding DoGetBestClientSize(), | |
3692 | i.e. you still need to implement the latter as well in order to provide | |
3693 | the best size when neither width nor height are constrained. | |
3694 | ||
3695 | By default returns ::wxDefaultCoord meaning that the vertical component | |
3696 | of DoGetBestClientSize() return value should be used. | |
3697 | ||
3698 | @since 2.9.4 | |
3699 | */ | |
3700 | virtual int DoGetBestClientHeight(int width) const; | |
3701 | ||
3702 | /** | |
3703 | Override this method to implement width-for-height best size | |
3704 | calculation. | |
3705 | ||
3706 | This method is exactly the same as DoGetBestClientHeight() except that | |
3707 | it determines the width assuming the height is fixed instead of vice | |
3708 | versa. | |
3709 | ||
3710 | @since 2.9.4 | |
3711 | */ | |
3712 | virtual int DoGetBestClientWidth(int height) const; | |
95b4a59e FM |
3713 | |
3714 | /** | |
0824e369 | 3715 | Sets the initial window size if none is given (i.e.\ at least one of the |
95b4a59e | 3716 | components of the size passed to ctor/Create() is wxDefaultCoord). |
386279c3 | 3717 | @deprecated Use SetInitialSize() instead. |
95b4a59e FM |
3718 | */ |
3719 | virtual void SetInitialBestSize(const wxSize& size); | |
a79a6671 VZ |
3720 | |
3721 | /** | |
3722 | Generate wxWindowDestroyEvent for this window. | |
3723 | ||
3724 | This is called by the window itself when it is being destroyed and | |
3725 | usually there is no need to call it but see wxWindowDestroyEvent for | |
3726 | explanations of when you might want to do it. | |
3727 | */ | |
3728 | void SendDestroyEvent(); | |
004867db | 3729 | |
004867db | 3730 | /** |
4fde860e FM |
3731 | This function is public in wxEvtHandler but protected in wxWindow |
3732 | because for wxWindows you should always call ProcessEvent() on the | |
3b7fa206 VZ |
3733 | pointer returned by GetEventHandler() and not on the wxWindow object |
3734 | itself. | |
3735 | ||
3736 | For convenience, a ProcessWindowEvent() method is provided as a synonym | |
ccd4e1bc | 3737 | for @code GetEventHandler()->ProcessEvent() @endcode |
004867db FM |
3738 | |
3739 | Note that it's still possible to call these functions directly on the | |
3b7fa206 VZ |
3740 | wxWindow object (e.g. casting it to wxEvtHandler) but doing that will |
3741 | create subtle bugs when windows with event handlers pushed on them are | |
3742 | involved. | |
4fde860e FM |
3743 | |
3744 | This holds also for all other wxEvtHandler functions. | |
004867db FM |
3745 | */ |
3746 | virtual bool ProcessEvent(wxEvent& event); | |
4fde860e FM |
3747 | |
3748 | //@{ | |
3749 | /** | |
3750 | See ProcessEvent() for more info about why you shouldn't use this function | |
3751 | and the reason for making this function protected in wxWindow. | |
3752 | */ | |
004867db FM |
3753 | bool SafelyProcessEvent(wxEvent& event); |
3754 | virtual void QueueEvent(wxEvent *event); | |
3755 | virtual void AddPendingEvent(const wxEvent& event); | |
3756 | void ProcessPendingEvents(); | |
3757 | bool ProcessThreadEvent(const wxEvent& event); | |
3758 | //@} | |
23324ae1 FM |
3759 | }; |
3760 | ||
3761 | ||
e54c96f1 | 3762 | |
23324ae1 FM |
3763 | // ============================================================================ |
3764 | // Global functions/macros | |
3765 | // ============================================================================ | |
3766 | ||
b21126db | 3767 | /** @addtogroup group_funcmacro_misc */ |
7fa7088e | 3768 | //@{ |
23324ae1 FM |
3769 | |
3770 | /** | |
3771 | Find the deepest window at the mouse pointer position, returning the window | |
3772 | and current pointer position in screen coordinates. | |
7fa7088e BP |
3773 | |
3774 | @header{wx/window.h} | |
23324ae1 | 3775 | */ |
4cc4bfaf | 3776 | wxWindow* wxFindWindowAtPointer(wxPoint& pt); |
23324ae1 FM |
3777 | |
3778 | /** | |
7fa7088e BP |
3779 | Gets the currently active window (implemented for MSW and GTK only |
3780 | currently, always returns @NULL in the other ports). | |
3781 | ||
3782 | @header{wx/window.h} | |
23324ae1 | 3783 | */ |
4cc4bfaf | 3784 | wxWindow* wxGetActiveWindow(); |
23324ae1 FM |
3785 | |
3786 | /** | |
7fa7088e BP |
3787 | Returns the first top level parent of the given window, or in other words, |
3788 | the frame or dialog containing it, or @NULL. | |
3789 | ||
3790 | @header{wx/window.h} | |
23324ae1 | 3791 | */ |
7fa7088e BP |
3792 | wxWindow* wxGetTopLevelParent(wxWindow* window); |
3793 | ||
3794 | //@} | |
23324ae1 | 3795 |