]> git.saurik.com Git - wxWidgets.git/blame - src/common/wincmn.cpp
fixed header include guard position (patch 992443)
[wxWidgets.git] / src / common / wincmn.cpp
CommitLineData
7ec1983b 1/////////////////////////////////////////////////////////////////////////////
f03fc89f 2// Name: common/window.cpp
7ec1983b
VZ
3// Purpose: common (to all ports) wxWindow functions
4// Author: Julian Smart, Vadim Zeitlin
5// Modified by:
6// Created: 13/07/98
7// RCS-ID: $Id$
77ffb593 8// Copyright: (c) wxWidgets team
65571936 9// Licence: wxWindows licence
7ec1983b
VZ
10/////////////////////////////////////////////////////////////////////////////
11
f03fc89f
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
f701d7ab 19
14f355c2 20#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
58654ed0
VZ
21 #pragma implementation "windowbase.h"
22#endif
23
341287bf
JS
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
f701d7ab 27#ifdef __BORLANDC__
f03fc89f 28 #pragma hdrstop
f701d7ab
JS
29#endif
30
f03fc89f
VZ
31#ifndef WX_PRECOMP
32 #include "wx/string.h"
33 #include "wx/log.h"
34 #include "wx/intl.h"
35 #include "wx/frame.h"
36 #include "wx/defs.h"
37 #include "wx/window.h"
1e6feb95 38 #include "wx/control.h"
f03fc89f
VZ
39 #include "wx/checkbox.h"
40 #include "wx/radiobut.h"
106844da 41 #include "wx/statbox.h"
26bf1ce0 42 #include "wx/textctrl.h"
f03fc89f
VZ
43 #include "wx/settings.h"
44 #include "wx/dialog.h"
a02dc3e3 45 #include "wx/msgdlg.h"
a37a5a73 46 #include "wx/statusbr.h"
ed39ff57 47 #include "wx/dcclient.h"
f03fc89f
VZ
48#endif //WX_PRECOMP
49
7d59475e
JS
50#if defined(__WXMAC__) && wxUSE_SCROLLBAR
51 #include "wx/scrolbar.h"
52#endif
53
f03fc89f
VZ
54#if wxUSE_CONSTRAINTS
55 #include "wx/layout.h"
56#endif // wxUSE_CONSTRAINTS
57
461e93f9
JS
58#include "wx/sizer.h"
59
f03fc89f
VZ
60#if wxUSE_DRAG_AND_DROP
61 #include "wx/dnd.h"
62#endif // wxUSE_DRAG_AND_DROP
63
ed5317e5 64#if wxUSE_ACCESSIBILITY
7de59551 65 #include "wx/access.h"
ed5317e5
JS
66#endif
67
bd83cb56
VZ
68#if wxUSE_HELP
69 #include "wx/cshelp.h"
70#endif // wxUSE_HELP
71
f03fc89f
VZ
72#if wxUSE_TOOLTIPS
73 #include "wx/tooltip.h"
74#endif // wxUSE_TOOLTIPS
75
789295bf
VZ
76#if wxUSE_CARET
77 #include "wx/caret.h"
78#endif // wxUSE_CARET
79
f03fc89f
VZ
80// ----------------------------------------------------------------------------
81// static data
82// ----------------------------------------------------------------------------
83
edd802c6
DW
84#if defined(__WXPM__)
85int wxWindowBase::ms_lastControlId = 2000;
86#else
42e69d6b 87int wxWindowBase::ms_lastControlId = -200;
edd802c6 88#endif
f03fc89f
VZ
89
90IMPLEMENT_ABSTRACT_CLASS(wxWindowBase, wxEvtHandler)
91
92// ----------------------------------------------------------------------------
93// event table
94// ----------------------------------------------------------------------------
95
96BEGIN_EVENT_TABLE(wxWindowBase, wxEvtHandler)
97 EVT_SYS_COLOUR_CHANGED(wxWindowBase::OnSysColourChanged)
98 EVT_INIT_DIALOG(wxWindowBase::OnInitDialog)
a02dc3e3 99 EVT_MIDDLE_DOWN(wxWindowBase::OnMiddleClick)
bd83cb56
VZ
100
101#if wxUSE_HELP
e11f4636 102 EVT_HELP(wxID_ANY, wxWindowBase::OnHelp)
bd83cb56
VZ
103#endif // wxUSE_HELP
104
f03fc89f
VZ
105END_EVENT_TABLE()
106
107// ============================================================================
108// implementation of the common functionality of the wxWindow class
109// ============================================================================
110
111// ----------------------------------------------------------------------------
112// initialization
113// ----------------------------------------------------------------------------
114
115// the default initialization
72795335 116wxWindowBase::wxWindowBase()
f03fc89f
VZ
117{
118 // no window yet, no parent nor children
f03fc89f 119 m_parent = (wxWindow *)NULL;
e11f4636 120 m_windowId = wxID_ANY;
f03fc89f
VZ
121
122 // no constraints on the minimal window size
123 m_minWidth =
422d0ff0 124 m_maxWidth = wxDefaultCoord;
f03fc89f 125 m_minHeight =
422d0ff0 126 m_maxHeight = wxDefaultCoord;
f03fc89f 127
9f884528
RD
128 // invalidiated cache value
129 m_bestSizeCache = wxDefaultSize;
130
eefe6d4b
VZ
131 // window are created enabled and visible by default
132 m_isShown =
e11f4636 133 m_isEnabled = true;
f03fc89f 134
f03fc89f
VZ
135 // the default event handler is just this window
136 m_eventHandler = this;
137
88ac883a 138#if wxUSE_VALIDATORS
f03fc89f
VZ
139 // no validator
140 m_windowValidator = (wxValidator *) NULL;
88ac883a 141#endif // wxUSE_VALIDATORS
f03fc89f 142
1b69c815
VZ
143 // the colours/fonts are default for now, so leave m_font,
144 // m_backgroundColour and m_foregroundColour uninitialized and set those
08df3e44
VZ
145 m_hasBgCol =
146 m_hasFgCol =
e11f4636 147 m_hasFont = false;
f8ff87ed
VS
148 m_inheritBgCol =
149 m_inheritFgCol =
150 m_inheritFont = false;
e11f4636 151
f03fc89f 152 // no style bits
d80cd92a 153 m_exStyle =
f03fc89f
VZ
154 m_windowStyle = 0;
155
f03fc89f
VZ
156#if wxUSE_CONSTRAINTS
157 // no constraints whatsoever
158 m_constraints = (wxLayoutConstraints *) NULL;
159 m_constraintsInvolvedIn = (wxWindowList *) NULL;
461e93f9
JS
160#endif // wxUSE_CONSTRAINTS
161
f03fc89f 162 m_windowSizer = (wxSizer *) NULL;
be90c029 163 m_containingSizer = (wxSizer *) NULL;
e11f4636 164 m_autoLayout = false;
f03fc89f
VZ
165
166#if wxUSE_DRAG_AND_DROP
167 m_dropTarget = (wxDropTarget *)NULL;
168#endif // wxUSE_DRAG_AND_DROP
169
170#if wxUSE_TOOLTIPS
171 m_tooltip = (wxToolTip *)NULL;
172#endif // wxUSE_TOOLTIPS
789295bf
VZ
173
174#if wxUSE_CARET
175 m_caret = (wxCaret *)NULL;
176#endif // wxUSE_CARET
a2d93e73 177
574c939e 178#if wxUSE_PALETTE
e11f4636 179 m_hasCustomPalette = false;
574c939e
KB
180#endif // wxUSE_PALETTE
181
ed5317e5
JS
182#if wxUSE_ACCESSIBILITY
183 m_accessible = NULL;
184#endif
185
566d84a7 186 m_virtualSize = wxDefaultSize;
1b69c815 187
1e2a653b 188 m_minVirtualWidth =
422d0ff0 189 m_maxVirtualWidth = wxDefaultCoord;
1e2a653b 190 m_minVirtualHeight =
422d0ff0 191 m_maxVirtualHeight = wxDefaultCoord;
566d84a7 192
1b69c815 193 m_windowVariant = wxWINDOW_VARIANT_NORMAL;
69d90995 194
a2d93e73 195 // Whether we're using the current theme for this window (wxGTK only for now)
e11f4636 196 m_themeEnabled = false;
1b69c815
VZ
197
198 // VZ: this one shouldn't exist...
199 m_isBeingDeleted = false;
f03fc89f
VZ
200}
201
202// common part of window creation process
203bool wxWindowBase::CreateBase(wxWindowBase *parent,
204 wxWindowID id,
74e3313b 205 const wxPoint& WXUNUSED(pos),
400a9e41 206 const wxSize& WXUNUSED(size),
f03fc89f 207 long style,
ac8d0c11 208 const wxValidator& wxVALIDATOR_PARAM(validator),
f03fc89f
VZ
209 const wxString& name)
210{
106844da
VZ
211#if wxUSE_STATBOX
212 // wxGTK doesn't allow to create controls with static box as the parent so
213 // this will result in a crash when the program is ported to wxGTK so warn
214 // the user about it
215
216 // if you get this assert, the correct solution is to create the controls
217 // as siblings of the static box
218 wxASSERT_MSG( !parent || !wxDynamicCast(parent, wxStaticBox),
219 _T("wxStaticBox can't be used as a window parent!") );
220#endif // wxUSE_STATBOX
221
925f154d
VZ
222 // ids are limited to 16 bits under MSW so if you care about portability,
223 // it's not a good idea to use ids out of this range (and negative ids are
77ffb593 224 // reserved for wxWidgets own usage)
925f154d
VZ
225 wxASSERT_MSG( id == wxID_ANY || (id >= 0 && id < 32767),
226 _T("invalid id value") );
227
f03fc89f 228 // generate a new id if the user doesn't care about it
925f154d 229 m_windowId = id == wxID_ANY ? NewControlId() : id;
f03fc89f
VZ
230
231 SetName(name);
232 SetWindowStyleFlag(style);
233 SetParent(parent);
674ac8b9
VZ
234
235#if wxUSE_VALIDATORS
8d99be5f 236 SetValidator(validator);
674ac8b9 237#endif // wxUSE_VALIDATORS
f03fc89f 238
8ae6ce07
VZ
239 // if the parent window has wxWS_EX_VALIDATE_RECURSIVELY set, we want to
240 // have it too - like this it's possible to set it only in the top level
241 // dialog/frame and all children will inherit it by defult
242 if ( parent && (parent->GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY) )
243 {
9cb98d89 244 SetExtraStyle(GetExtraStyle() | wxWS_EX_VALIDATE_RECURSIVELY);
8ae6ce07
VZ
245 }
246
e11f4636 247 return true;
f03fc89f
VZ
248}
249
250// ----------------------------------------------------------------------------
251// destruction
252// ----------------------------------------------------------------------------
253
254// common clean up
255wxWindowBase::~wxWindowBase()
256{
349d1942
VS
257 wxASSERT_MSG( GetCapture() != this, wxT("attempt to destroy window with mouse capture") );
258
f03fc89f
VZ
259 // FIXME if these 2 cases result from programming errors in the user code
260 // we should probably assert here instead of silently fixing them
261
262 // Just in case the window has been Closed, but we're then deleting
263 // immediately: don't leave dangling pointers.
264 wxPendingDelete.DeleteObject(this);
265
266 // Just in case we've loaded a top-level window via LoadNativeDialog but
267 // we weren't a dialog class
222ed1d6 268 wxTopLevelWindows.DeleteObject((wxWindow*)this);
a23fd0e1 269
223d09f6 270 wxASSERT_MSG( GetChildren().GetCount() == 0, wxT("children not destroyed") );
f03fc89f 271
8e35ab96
VZ
272 // reset the dangling pointer our parent window may keep to us
273 if ( m_parent )
274 {
275 if ( m_parent->GetDefaultItem() == this )
276 {
277 m_parent->SetDefaultItem(NULL);
278 }
279
280 m_parent->RemoveChild(this);
281 }
282
789295bf 283#if wxUSE_CARET
a2b436fb 284 delete m_caret;
789295bf
VZ
285#endif // wxUSE_CARET
286
88ac883a 287#if wxUSE_VALIDATORS
a2b436fb 288 delete m_windowValidator;
88ac883a 289#endif // wxUSE_VALIDATORS
f03fc89f 290
f03fc89f
VZ
291#if wxUSE_CONSTRAINTS
292 // Have to delete constraints/sizer FIRST otherwise sizers may try to look
293 // at deleted windows as they delete themselves.
294 DeleteRelatedConstraints();
295
296 if ( m_constraints )
297 {
298 // This removes any dangling pointers to this window in other windows'
299 // constraintsInvolvedIn lists.
300 UnsetConstraints(m_constraints);
301 delete m_constraints;
302 m_constraints = NULL;
303 }
461e93f9
JS
304#endif // wxUSE_CONSTRAINTS
305
be90c029 306 if ( m_containingSizer )
12a3f227 307 m_containingSizer->Detach( (wxWindow*)this );
be90c029 308
a2b436fb 309 delete m_windowSizer;
f03fc89f 310
f03fc89f 311#if wxUSE_DRAG_AND_DROP
a2b436fb 312 delete m_dropTarget;
f03fc89f
VZ
313#endif // wxUSE_DRAG_AND_DROP
314
315#if wxUSE_TOOLTIPS
a2b436fb 316 delete m_tooltip;
f03fc89f 317#endif // wxUSE_TOOLTIPS
b0ee47ff 318
ed5317e5 319#if wxUSE_ACCESSIBILITY
a2b436fb 320 delete m_accessible;
ed5317e5 321#endif
f03fc89f
VZ
322}
323
324bool wxWindowBase::Destroy()
325{
326 delete this;
327
e11f4636 328 return true;
f03fc89f
VZ
329}
330
331bool wxWindowBase::Close(bool force)
332{
333 wxCloseEvent event(wxEVT_CLOSE_WINDOW, m_windowId);
334 event.SetEventObject(this);
f03fc89f
VZ
335 event.SetCanVeto(!force);
336
e11f4636 337 // return false if window wasn't closed because the application vetoed the
f03fc89f
VZ
338 // close event
339 return GetEventHandler()->ProcessEvent(event) && !event.GetVeto();
340}
341
342bool wxWindowBase::DestroyChildren()
343{
222ed1d6 344 wxWindowList::compatibility_iterator node;
a23fd0e1 345 for ( ;; )
f03fc89f 346 {
a23fd0e1
VZ
347 // we iterate until the list becomes empty
348 node = GetChildren().GetFirst();
349 if ( !node )
350 break;
351
f03fc89f 352 wxWindow *child = node->GetData();
a23fd0e1 353
f303564d
VZ
354 // note that we really want to call delete and not ->Destroy() here
355 // because we want to delete the child immediately, before we are
356 // deleted, and delayed deletion would result in problems as our (top
357 // level) child could outlive its parent
358 delete child;
a23fd0e1
VZ
359
360 wxASSERT_MSG( !GetChildren().Find(child),
223d09f6 361 wxT("child didn't remove itself using RemoveChild()") );
f03fc89f
VZ
362 }
363
e11f4636 364 return true;
f03fc89f
VZ
365}
366
367// ----------------------------------------------------------------------------
f68586e5 368// size/position related methods
f03fc89f
VZ
369// ----------------------------------------------------------------------------
370
371// centre the window with respect to its parent in either (or both) directions
372void wxWindowBase::Centre(int direction)
373{
f6bcfd97
BP
374 // the position/size of the parent window or of the entire screen
375 wxPoint posParent;
f03fc89f
VZ
376 int widthParent, heightParent;
377
f6bcfd97
BP
378 wxWindow *parent = NULL;
379
380 if ( !(direction & wxCENTRE_ON_SCREEN) )
f03fc89f 381 {
f6bcfd97
BP
382 // find the parent to centre this window on: it should be the
383 // immediate parent for the controls but the top level parent for the
384 // top level windows (like dialogs)
385 parent = GetParent();
386 if ( IsTopLevel() )
387 {
388 while ( parent && !parent->IsTopLevel() )
389 {
390 parent = parent->GetParent();
391 }
392 }
393
e28b0102
VZ
394 // there is no wxTopLevelWindow under wxMotif yet
395#ifndef __WXMOTIF__
085ad686
VZ
396 // we shouldn't center the dialog on the iconized window: under
397 // Windows, for example, this places it completely off the screen
398 if ( parent )
399 {
400 wxTopLevelWindow *winTop = wxDynamicCast(parent, wxTopLevelWindow);
401 if ( winTop && winTop->IsIconized() )
402 {
403 parent = NULL;
404 }
405 }
e28b0102 406#endif // __WXMOTIF__
085ad686 407
f6bcfd97
BP
408 // did we find the parent?
409 if ( !parent )
410 {
411 // no other choice
412 direction |= wxCENTRE_ON_SCREEN;
413 }
f03fc89f 414 }
10fcf31a
VZ
415
416 if ( direction & wxCENTRE_ON_SCREEN )
f03fc89f
VZ
417 {
418 // centre with respect to the whole screen
419 wxDisplaySize(&widthParent, &heightParent);
420 }
10fcf31a
VZ
421 else
422 {
f6bcfd97
BP
423 if ( IsTopLevel() )
424 {
425 // centre on the parent
426 parent->GetSize(&widthParent, &heightParent);
427
428 // adjust to the parents position
429 posParent = parent->GetPosition();
430 }
431 else
432 {
433 // centre inside the parents client rectangle
434 parent->GetClientSize(&widthParent, &heightParent);
435 }
10fcf31a 436 }
f03fc89f
VZ
437
438 int width, height;
439 GetSize(&width, &height);
440
422d0ff0
WS
441 int xNew = wxDefaultCoord,
442 yNew = wxDefaultCoord;
f03fc89f
VZ
443
444 if ( direction & wxHORIZONTAL )
c39eda94 445 xNew = (widthParent - width)/2;
f03fc89f
VZ
446
447 if ( direction & wxVERTICAL )
c39eda94 448 yNew = (heightParent - height)/2;
f03fc89f 449
f6bcfd97
BP
450 xNew += posParent.x;
451 yNew += posParent.y;
7631a292 452
ef397583 453 // Base size of the visible dimensions of the display
10cbb81e
VZ
454 // to take into account the taskbar. And the Mac menu bar at top.
455 wxRect clientrect = wxGetClientDisplayRect();
ef397583 456
ede7020a
VS
457 // NB: in wxMSW, negative position may not neccessary mean "out of screen",
458 // but it may mean that the window is placed on other than the main
459 // display. Therefore we only make sure centered window is on the main display
460 // if the parent is at least partially present here.
461 if (posParent.x + widthParent >= 0) // if parent is (partially) on the main display
ef397583 462 {
10cbb81e
VZ
463 if (xNew < clientrect.GetLeft())
464 xNew = clientrect.GetLeft();
465 else if (xNew + width > clientrect.GetRight())
466 xNew = clientrect.GetRight() - width;
ef397583 467 }
ede7020a 468 if (posParent.y + heightParent >= 0) // if parent is (partially) on the main display
ef397583 469 {
10cbb81e
VZ
470 if (yNew + height > clientrect.GetBottom())
471 yNew = clientrect.GetBottom() - height;
ef397583
GT
472
473 // Make certain that the title bar is initially visible
474 // always, even if this would push the bottom of the
10cbb81e
VZ
475 // dialog off the visible area of the display
476 if (yNew < clientrect.GetTop())
477 yNew = clientrect.GetTop();
ef397583
GT
478 }
479
0fff366e
VZ
480 // move the window to this position (keeping the old size but using
481 // SetSize() and not Move() to allow xNew and/or yNew to be -1)
db89aa76 482 SetSize(xNew, yNew, width, height, wxSIZE_ALLOW_MINUS_ONE);
7631a292
RD
483}
484
f03fc89f
VZ
485// fits the window around the children
486void wxWindowBase::Fit()
487{
f68586e5
VZ
488 if ( GetChildren().GetCount() > 0 )
489 {
9f884528 490 SetClientSize(GetBestSize());
f68586e5
VZ
491 }
492 //else: do nothing if we have no children
493}
f03fc89f 494
2b5f62a0
VZ
495// fits virtual size (ie. scrolled area etc.) around children
496void wxWindowBase::FitInside()
497{
498 if ( GetChildren().GetCount() > 0 )
499 {
500 SetVirtualSize( GetBestVirtualSize() );
501 }
502}
503
7d59475e
JS
504// On Mac, scrollbars are explicitly children.
505#ifdef __WXMAC__
506static bool wxHasRealChildren(const wxWindowBase* win)
507{
508 int realChildCount = 0;
509
510 for ( wxWindowList::compatibility_iterator node = win->GetChildren().GetFirst();
511 node;
512 node = node->GetNext() )
513 {
514 wxWindow *win = node->GetData();
515 if ( !win->IsTopLevel() && win->IsShown() && !win->IsKindOf(CLASSINFO(wxScrollBar)))
516 realChildCount ++;
517 }
518 return (realChildCount > 0);
519}
520#endif
521
f68586e5
VZ
522// return the size best suited for the current window
523wxSize wxWindowBase::DoGetBestSize() const
524{
ec5bb70d
VZ
525 if ( m_windowSizer )
526 {
527 return m_windowSizer->GetMinSize();
528 }
529#if wxUSE_CONSTRAINTS
530 else if ( m_constraints )
531 {
532 wxConstCast(this, wxWindowBase)->SatisfyConstraints();
533
534 // our minimal acceptable size is such that all our windows fit inside
535 int maxX = 0,
536 maxY = 0;
537
222ed1d6 538 for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
ec5bb70d
VZ
539 node;
540 node = node->GetNext() )
541 {
542 wxLayoutConstraints *c = node->GetData()->GetConstraints();
543 if ( !c )
544 {
545 // it's not normal that we have an unconstrained child, but
546 // what can we do about it?
547 continue;
548 }
549
550 int x = c->right.GetValue(),
551 y = c->bottom.GetValue();
552
553 if ( x > maxX )
554 maxX = x;
555
556 if ( y > maxY )
557 maxY = y;
558
559 // TODO: we must calculate the overlaps somehow, otherwise we
560 // will never return a size bigger than the current one :-(
561 }
562
563 return wxSize(maxX, maxY);
564 }
565#endif // wxUSE_CONSTRAINTS
7d59475e
JS
566 else if ( !GetChildren().empty()
567#ifdef __WXMAC__
568 && wxHasRealChildren(this)
569#endif
570 )
f03fc89f 571 {
1ebfafde 572 // our minimal acceptable size is such that all our visible child windows fit inside
f68586e5
VZ
573 int maxX = 0,
574 maxY = 0;
575
222ed1d6 576 for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
f68586e5
VZ
577 node;
578 node = node->GetNext() )
42e69d6b 579 {
f68586e5 580 wxWindow *win = node->GetData();
1ebfafde 581 if ( win->IsTopLevel() || ( ! win->IsShown() )
1e6feb95
VZ
582#if wxUSE_STATUSBAR
583 || wxDynamicCast(win, wxStatusBar)
584#endif // wxUSE_STATUSBAR
585 )
f68586e5
VZ
586 {
587 // dialogs and frames lie in different top level windows -
7d9fd004
VZ
588 // don't deal with them here; as for the status bars, they
589 // don't lie in the client area at all
f68586e5
VZ
590 continue;
591 }
592
593 int wx, wy, ww, wh;
594 win->GetPosition(&wx, &wy);
3f5513f5
VZ
595
596 // if the window hadn't been positioned yet, assume that it is in
597 // the origin
422d0ff0 598 if ( wx == wxDefaultCoord )
3f5513f5 599 wx = 0;
422d0ff0 600 if ( wy == wxDefaultCoord )
3f5513f5
VZ
601 wy = 0;
602
f68586e5
VZ
603 win->GetSize(&ww, &wh);
604 if ( wx + ww > maxX )
605 maxX = wx + ww;
606 if ( wy + wh > maxY )
607 maxY = wy + wh;
42e69d6b
VZ
608 }
609
ec5bb70d
VZ
610 // for compatibility with the old versions and because it really looks
611 // slightly more pretty like this, add a pad
612 maxX += 7;
613 maxY += 14;
614
ba81034d 615 return wxSize(maxX, maxY);
f68586e5 616 }
997c7280 617 else // ! has children
f68586e5 618 {
997c7280
RD
619 // for a generic window there is no natural best size - just use either the
620 // minimum size if there is one, or the current size
621 if ( GetMinSize().IsFullySpecified() )
622 return GetMinSize();
623 else
624 return GetSize();
f03fc89f 625 }
f03fc89f
VZ
626}
627
9f884528
RD
628
629wxSize wxWindowBase::GetBestFittingSize() const
400a9e41 630{
9f884528
RD
631 // merge the best size with the min size, giving priority to the min size
632 wxSize min = GetMinSize();
633 if (min.x == wxDefaultCoord || min.y == wxDefaultCoord)
400a9e41 634 {
9f884528
RD
635 wxSize best = GetBestSize();
636 if (min.x == wxDefaultCoord) min.x = best.x;
637 if (min.y == wxDefaultCoord) min.y = best.y;
17c48da8 638 }
9f884528
RD
639 return min;
640}
17c48da8 641
42cfa184 642
9f884528
RD
643void wxWindowBase::SetBestFittingSize(const wxSize& size)
644{
645 // Set the min size to the size passed in. This will usually either be
646 // wxDefaultSize or the size passed to this window's ctor/Create function.
647 SetMinSize(size);
648
649 // Merge the size with the best size if needed
650 wxSize best = GetBestFittingSize();
651
652 // If the current size doesn't match then change it
653 if (GetSize() != best)
654 SetSize(best);
400a9e41
VZ
655}
656
9f884528 657
1e6feb95
VZ
658// by default the origin is not shifted
659wxPoint wxWindowBase::GetClientAreaOrigin() const
660{
661 return wxPoint(0, 0);
662}
663
f03fc89f 664// set the min/max size of the window
f03fc89f
VZ
665void wxWindowBase::SetSizeHints(int minW, int minH,
666 int maxW, int maxH,
667 int WXUNUSED(incW), int WXUNUSED(incH))
668{
e587e144
VZ
669 // setting min width greater than max width leads to infinite loops under
670 // X11 and generally doesn't make any sense, so don't allow it
422d0ff0
WS
671 wxCHECK_RET( (minW == wxDefaultCoord || maxW == wxDefaultCoord || minW <= maxW) &&
672 (minH == wxDefaultCoord || maxH == wxDefaultCoord || minH <= maxH),
e587e144
VZ
673 _T("min width/height must be less than max width/height!") );
674
f03fc89f
VZ
675 m_minWidth = minW;
676 m_maxWidth = maxW;
677 m_minHeight = minH;
678 m_maxHeight = maxH;
679}
680
69d90995
SC
681void wxWindowBase::SetWindowVariant( wxWindowVariant variant )
682{
1b69c815
VZ
683 if ( m_windowVariant != variant )
684 {
685 m_windowVariant = variant;
69d90995 686
1b69c815
VZ
687 DoSetWindowVariant(variant);
688 }
69d90995
SC
689}
690
691void wxWindowBase::DoSetWindowVariant( wxWindowVariant variant )
692{
1b69c815
VZ
693 // adjust the font height to correspond to our new variant (notice that
694 // we're only called if something really changed)
695 wxFont font = GetFont();
696 int size = font.GetPointSize();
69d90995
SC
697 switch ( variant )
698 {
1b69c815
VZ
699 case wxWINDOW_VARIANT_NORMAL:
700 break;
701
702 case wxWINDOW_VARIANT_SMALL:
703 size *= 3;
704 size /= 4;
705 break;
706
707 case wxWINDOW_VARIANT_MINI:
708 size *= 2;
709 size /= 3;
710 break;
711
712 case wxWINDOW_VARIANT_LARGE:
713 size *= 5;
714 size /= 4;
715 break;
716
69d90995
SC
717 default:
718 wxFAIL_MSG(_T("unexpected window variant"));
1b69c815 719 break;
69d90995 720 }
1b69c815
VZ
721
722 font.SetPointSize(size);
723 SetFont(font);
69d90995
SC
724}
725
566d84a7
RL
726void wxWindowBase::SetVirtualSizeHints( int minW, int minH,
727 int maxW, int maxH )
728{
729 m_minVirtualWidth = minW;
730 m_maxVirtualWidth = maxW;
731 m_minVirtualHeight = minH;
732 m_maxVirtualHeight = maxH;
566d84a7
RL
733}
734
735void wxWindowBase::DoSetVirtualSize( int x, int y )
736{
422d0ff0 737 if ( m_minVirtualWidth != wxDefaultCoord && m_minVirtualWidth > x )
1e2a653b 738 x = m_minVirtualWidth;
422d0ff0 739 if ( m_maxVirtualWidth != wxDefaultCoord && m_maxVirtualWidth < x )
1e2a653b 740 x = m_maxVirtualWidth;
422d0ff0 741 if ( m_minVirtualHeight != wxDefaultCoord && m_minVirtualHeight > y )
1e2a653b 742 y = m_minVirtualHeight;
422d0ff0 743 if ( m_maxVirtualHeight != wxDefaultCoord && m_maxVirtualHeight < y )
1e2a653b
VZ
744 y = m_maxVirtualHeight;
745
746 m_virtualSize = wxSize(x, y);
566d84a7
RL
747}
748
749wxSize wxWindowBase::DoGetVirtualSize() const
750{
751 wxSize s( GetClientSize() );
752
150c8d89
RL
753 return wxSize( wxMax( m_virtualSize.GetWidth(), s.GetWidth() ),
754 wxMax( m_virtualSize.GetHeight(), s.GetHeight() ) );
566d84a7
RL
755}
756
f03fc89f
VZ
757// ----------------------------------------------------------------------------
758// show/hide/enable/disable the window
759// ----------------------------------------------------------------------------
760
761bool wxWindowBase::Show(bool show)
762{
763 if ( show != m_isShown )
764 {
765 m_isShown = show;
766
e11f4636 767 return true;
f03fc89f
VZ
768 }
769 else
770 {
e11f4636 771 return false;
f03fc89f
VZ
772 }
773}
774
775bool wxWindowBase::Enable(bool enable)
776{
777 if ( enable != m_isEnabled )
778 {
779 m_isEnabled = enable;
780
e11f4636 781 return true;
f03fc89f
VZ
782 }
783 else
784 {
e11f4636 785 return false;
f03fc89f
VZ
786 }
787}
34636400
VZ
788// ----------------------------------------------------------------------------
789// RTTI
790// ----------------------------------------------------------------------------
791
792bool wxWindowBase::IsTopLevel() const
793{
e11f4636 794 return false;
34636400 795}
f03fc89f
VZ
796
797// ----------------------------------------------------------------------------
798// reparenting the window
799// ----------------------------------------------------------------------------
800
801void wxWindowBase::AddChild(wxWindowBase *child)
802{
223d09f6 803 wxCHECK_RET( child, wxT("can't add a NULL child") );
f03fc89f 804
f6bcfd97
BP
805 // this should never happen and it will lead to a crash later if it does
806 // because RemoveChild() will remove only one node from the children list
807 // and the other(s) one(s) will be left with dangling pointers in them
222ed1d6 808 wxASSERT_MSG( !GetChildren().Find((wxWindow*)child), _T("AddChild() called twice") );
f6bcfd97 809
222ed1d6 810 GetChildren().Append((wxWindow*)child);
f03fc89f
VZ
811 child->SetParent(this);
812}
813
814void wxWindowBase::RemoveChild(wxWindowBase *child)
815{
223d09f6 816 wxCHECK_RET( child, wxT("can't remove a NULL child") );
f03fc89f 817
222ed1d6
MB
818 GetChildren().DeleteObject((wxWindow *)child);
819 child->SetParent(NULL);
f03fc89f 820}
439b3bf1 821
f03fc89f
VZ
822bool wxWindowBase::Reparent(wxWindowBase *newParent)
823{
824 wxWindow *oldParent = GetParent();
825 if ( newParent == oldParent )
826 {
827 // nothing done
e11f4636 828 return false;
f03fc89f
VZ
829 }
830
831 // unlink this window from the existing parent.
832 if ( oldParent )
833 {
834 oldParent->RemoveChild(this);
835 }
836 else
837 {
222ed1d6 838 wxTopLevelWindows.DeleteObject((wxWindow *)this);
f03fc89f
VZ
839 }
840
841 // add it to the new one
842 if ( newParent )
843 {
844 newParent->AddChild(this);
845 }
846 else
847 {
222ed1d6 848 wxTopLevelWindows.Append((wxWindow *)this);
f03fc89f
VZ
849 }
850
e11f4636 851 return true;
f03fc89f
VZ
852}
853
854// ----------------------------------------------------------------------------
855// event handler stuff
856// ----------------------------------------------------------------------------
857
858void wxWindowBase::PushEventHandler(wxEvtHandler *handler)
859{
3a074ba8
VZ
860 wxEvtHandler *handlerOld = GetEventHandler();
861
862 handler->SetNextHandler(handlerOld);
863
864 if ( handlerOld )
865 GetEventHandler()->SetPreviousHandler(handler);
866
f03fc89f
VZ
867 SetEventHandler(handler);
868}
869
870wxEvtHandler *wxWindowBase::PopEventHandler(bool deleteHandler)
871{
872 wxEvtHandler *handlerA = GetEventHandler();
873 if ( handlerA )
874 {
875 wxEvtHandler *handlerB = handlerA->GetNextHandler();
876 handlerA->SetNextHandler((wxEvtHandler *)NULL);
3a074ba8
VZ
877
878 if ( handlerB )
879 handlerB->SetPreviousHandler((wxEvtHandler *)NULL);
f03fc89f 880 SetEventHandler(handlerB);
3a074ba8 881
f03fc89f
VZ
882 if ( deleteHandler )
883 {
884 delete handlerA;
885 handlerA = (wxEvtHandler *)NULL;
886 }
887 }
888
889 return handlerA;
890}
891
2e36d5cf
VZ
892bool wxWindowBase::RemoveEventHandler(wxEvtHandler *handler)
893{
e11f4636 894 wxCHECK_MSG( handler, false, _T("RemoveEventHandler(NULL) called") );
2e36d5cf
VZ
895
896 wxEvtHandler *handlerPrev = NULL,
897 *handlerCur = GetEventHandler();
898 while ( handlerCur )
899 {
900 wxEvtHandler *handlerNext = handlerCur->GetNextHandler();
901
902 if ( handlerCur == handler )
903 {
904 if ( handlerPrev )
905 {
906 handlerPrev->SetNextHandler(handlerNext);
907 }
908 else
909 {
910 SetEventHandler(handlerNext);
911 }
912
7a9c8d74
JS
913 if ( handlerNext )
914 {
915 handlerNext->SetPreviousHandler ( handlerPrev );
916 }
489bbac9 917
2e36d5cf 918 handler->SetNextHandler(NULL);
489bbac9 919 handler->SetPreviousHandler(NULL);
2e36d5cf 920
e11f4636 921 return true;
2e36d5cf
VZ
922 }
923
924 handlerPrev = handlerCur;
925 handlerCur = handlerNext;
926 }
927
928 wxFAIL_MSG( _T("where has the event handler gone?") );
929
e11f4636 930 return false;
2e36d5cf
VZ
931}
932
f03fc89f 933// ----------------------------------------------------------------------------
1b69c815 934// colours, fonts &c
f03fc89f
VZ
935// ----------------------------------------------------------------------------
936
b8e7b673
VZ
937void wxWindowBase::InheritAttributes()
938{
8afef133 939 const wxWindowBase * const parent = GetParent();
b8e7b673
VZ
940 if ( !parent )
941 return;
942
943 // we only inherit attributes which had been explicitly set for the parent
944 // which ensures that this only happens if the user really wants it and
945 // not by default which wouldn't make any sense in modern GUIs where the
946 // controls don't all use the same fonts (nor colours)
f8ff87ed 947 if ( parent->m_inheritFont && !m_hasFont )
b8e7b673
VZ
948 SetFont(parent->GetFont());
949
950 // in addition, there is a possibility to explicitly forbid inheriting
951 // colours at each class level by overriding ShouldInheritColours()
952 if ( ShouldInheritColours() )
953 {
f8ff87ed 954 if ( parent->m_inheritFgCol && !m_hasFgCol )
b8e7b673
VZ
955 SetForegroundColour(parent->GetForegroundColour());
956
f8ff87ed 957 if ( parent->m_inheritBgCol && !m_hasBgCol )
b8e7b673
VZ
958 SetBackgroundColour(parent->GetBackgroundColour());
959 }
960}
961
1b69c815
VZ
962/* static */ wxVisualAttributes
963wxWindowBase::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
964{
965 // it is important to return valid values for all attributes from here,
966 // GetXXX() below rely on this
967 wxVisualAttributes attrs;
968 attrs.font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
969 attrs.colFg = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT);
970 attrs.colBg = wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE);
971
972 return attrs;
973}
974
975wxColour wxWindowBase::GetBackgroundColour() const
976{
977 if ( !m_backgroundColour.Ok() )
978 {
979 wxASSERT_MSG( !m_hasBgCol, _T("we have invalid explicit bg colour?") );
980
981 // get our default background colour
982 wxColour colBg = GetDefaultAttributes().colBg;
983
984 // we must return some valid colour to avoid redoing this every time
985 // and also to avoid surprizing the applications written for older
77ffb593 986 // wxWidgets versions where GetBackgroundColour() always returned
1b69c815
VZ
987 // something -- so give them something even if it doesn't make sense
988 // for this window (e.g. it has a themed background)
989 if ( !colBg.Ok() )
990 colBg = GetClassDefaultAttributes().colBg;
991
f604c658 992 return colBg;
1b69c815 993 }
f604c658
VS
994 else
995 return m_backgroundColour;
1b69c815
VZ
996}
997
998wxColour wxWindowBase::GetForegroundColour() const
999{
1000 // logic is the same as above
1001 if ( !m_hasFgCol && !m_foregroundColour.Ok() )
1002 {
1003 wxASSERT_MSG( !m_hasFgCol, _T("we have invalid explicit fg colour?") );
1004
1005 wxColour colFg = GetDefaultAttributes().colFg;
1006
1007 if ( !colFg.Ok() )
1008 colFg = GetClassDefaultAttributes().colFg;
1009
f604c658 1010 return colFg;
1b69c815 1011 }
f604c658
VS
1012 else
1013 return m_foregroundColour;
1b69c815
VZ
1014}
1015
f03fc89f
VZ
1016bool wxWindowBase::SetBackgroundColour( const wxColour &colour )
1017{
44dfb5ce 1018 if ( colour == m_backgroundColour )
e11f4636 1019 return false;
f03fc89f 1020
44dfb5ce 1021 m_hasBgCol = colour.Ok();
f8ff87ed 1022 m_inheritBgCol = m_hasBgCol;
f03fc89f 1023 m_backgroundColour = colour;
44dfb5ce 1024 SetThemeEnabled( !m_hasBgCol && !m_foregroundColour.Ok() );
e11f4636 1025 return true;
f03fc89f
VZ
1026}
1027
1028bool wxWindowBase::SetForegroundColour( const wxColour &colour )
1029{
44dfb5ce 1030 if (colour == m_foregroundColour )
e11f4636 1031 return false;
f03fc89f 1032
44dfb5ce 1033 m_hasFgCol = colour.Ok();
f8ff87ed 1034 m_inheritFgCol = m_hasFgCol;
f03fc89f 1035 m_foregroundColour = colour;
44dfb5ce 1036 SetThemeEnabled( !m_hasFgCol && !m_backgroundColour.Ok() );
e11f4636 1037 return true;
f03fc89f
VZ
1038}
1039
1040bool wxWindowBase::SetCursor(const wxCursor& cursor)
1041{
8a9c2246
VZ
1042 // setting an invalid cursor is ok, it means that we don't have any special
1043 // cursor
13588544 1044 if ( m_cursor == cursor )
f03fc89f
VZ
1045 {
1046 // no change
e11f4636 1047 return false;
f03fc89f
VZ
1048 }
1049
8a9c2246 1050 m_cursor = cursor;
f03fc89f 1051
e11f4636 1052 return true;
f03fc89f
VZ
1053}
1054
f604c658 1055wxFont wxWindowBase::GetFont() const
1b69c815
VZ
1056{
1057 // logic is the same as in GetBackgroundColour()
1058 if ( !m_font.Ok() )
1059 {
1060 wxASSERT_MSG( !m_hasFont, _T("we have invalid explicit font?") );
1061
1062 wxFont font = GetDefaultAttributes().font;
1063 if ( !font.Ok() )
1064 font = GetClassDefaultAttributes().font;
1065
f604c658 1066 return font;
1b69c815 1067 }
f604c658
VS
1068 else
1069 return m_font;
1b69c815
VZ
1070}
1071
f03fc89f
VZ
1072bool wxWindowBase::SetFont(const wxFont& font)
1073{
1b69c815 1074 if ( font == m_font )
f03fc89f
VZ
1075 {
1076 // no change
e11f4636 1077 return false;
f03fc89f
VZ
1078 }
1079
1b69c815 1080 m_font = font;
72bbf76a 1081 m_hasFont = font.Ok();
f8ff87ed 1082 m_inheritFont = m_hasFont;
23895080 1083
e11f4636 1084 return true;
f03fc89f
VZ
1085}
1086
b95edd47
VZ
1087#if wxUSE_PALETTE
1088
1089void wxWindowBase::SetPalette(const wxPalette& pal)
1090{
e11f4636 1091 m_hasCustomPalette = true;
b95edd47
VZ
1092 m_palette = pal;
1093
1094 // VZ: can anyone explain me what do we do here?
1095 wxWindowDC d((wxWindow *) this);
1096 d.SetPalette(pal);
1097}
1098
1099wxWindow *wxWindowBase::GetAncestorWithCustomPalette() const
1100{
1101 wxWindow *win = (wxWindow *)this;
1102 while ( win && !win->HasCustomPalette() )
1103 {
1104 win = win->GetParent();
1105 }
1106
1107 return win;
1108}
1109
1110#endif // wxUSE_PALETTE
1111
789295bf
VZ
1112#if wxUSE_CARET
1113void wxWindowBase::SetCaret(wxCaret *caret)
1114{
1115 if ( m_caret )
1116 {
1117 delete m_caret;
1118 }
1119
1120 m_caret = caret;
1121
1122 if ( m_caret )
1123 {
1124 wxASSERT_MSG( m_caret->GetWindow() == this,
223d09f6 1125 wxT("caret should be created associated to this window") );
789295bf
VZ
1126 }
1127}
1128#endif // wxUSE_CARET
1129
88ac883a 1130#if wxUSE_VALIDATORS
f03fc89f
VZ
1131// ----------------------------------------------------------------------------
1132// validators
1133// ----------------------------------------------------------------------------
1134
1135void wxWindowBase::SetValidator(const wxValidator& validator)
1136{
1137 if ( m_windowValidator )
1138 delete m_windowValidator;
1139
1140 m_windowValidator = (wxValidator *)validator.Clone();
1141
1142 if ( m_windowValidator )
1b69c815 1143 m_windowValidator->SetWindow(this);
f03fc89f 1144}
88ac883a 1145#endif // wxUSE_VALIDATORS
f03fc89f
VZ
1146
1147// ----------------------------------------------------------------------------
1e6feb95 1148// update region stuff
f03fc89f
VZ
1149// ----------------------------------------------------------------------------
1150
1e6feb95
VZ
1151wxRect wxWindowBase::GetUpdateClientRect() const
1152{
1153 wxRegion rgnUpdate = GetUpdateRegion();
1154 rgnUpdate.Intersect(GetClientRect());
1155 wxRect rectUpdate = rgnUpdate.GetBox();
1156 wxPoint ptOrigin = GetClientAreaOrigin();
1157 rectUpdate.x -= ptOrigin.x;
1158 rectUpdate.y -= ptOrigin.y;
1159
1160 return rectUpdate;
1161}
1162
f03fc89f
VZ
1163bool wxWindowBase::IsExposed(int x, int y) const
1164{
1165 return m_updateRegion.Contains(x, y) != wxOutRegion;
1166}
1167
1168bool wxWindowBase::IsExposed(int x, int y, int w, int h) const
1169{
1170 return m_updateRegion.Contains(x, y, w, h) != wxOutRegion;
1171}
1172
5da0803c
VZ
1173void wxWindowBase::ClearBackground()
1174{
1175 // wxGTK uses its own version, no need to add never used code
1176#ifndef __WXGTK__
1177 wxClientDC dc((wxWindow *)this);
1178 wxBrush brush(GetBackgroundColour(), wxSOLID);
1179 dc.SetBackground(brush);
1180 dc.Clear();
1181#endif // __WXGTK__
1182}
1183
f03fc89f 1184// ----------------------------------------------------------------------------
146ba0fe 1185// find child window by id or name
f03fc89f
VZ
1186// ----------------------------------------------------------------------------
1187
1188wxWindow *wxWindowBase::FindWindow( long id )
1189{
1190 if ( id == m_windowId )
1191 return (wxWindow *)this;
1192
1193 wxWindowBase *res = (wxWindow *)NULL;
222ed1d6 1194 wxWindowList::compatibility_iterator node;
f03fc89f
VZ
1195 for ( node = m_children.GetFirst(); node && !res; node = node->GetNext() )
1196 {
1197 wxWindowBase *child = node->GetData();
1198 res = child->FindWindow( id );
1199 }
1200
1201 return (wxWindow *)res;
1202}
1203
1204wxWindow *wxWindowBase::FindWindow( const wxString& name )
1205{
1206 if ( name == m_windowName )
1207 return (wxWindow *)this;
1208
1209 wxWindowBase *res = (wxWindow *)NULL;
222ed1d6 1210 wxWindowList::compatibility_iterator node;
f03fc89f
VZ
1211 for ( node = m_children.GetFirst(); node && !res; node = node->GetNext() )
1212 {
1213 wxWindow *child = node->GetData();
1214 res = child->FindWindow(name);
1215 }
1216
1217 return (wxWindow *)res;
1218}
1219
146ba0fe
VZ
1220
1221// find any window by id or name or label: If parent is non-NULL, look through
1222// children for a label or title matching the specified string. If NULL, look
1223// through all top-level windows.
1224//
1225// to avoid duplicating code we reuse the same helper function but with
1226// different comparators
1227
1228typedef bool (*wxFindWindowCmp)(const wxWindow *win,
1229 const wxString& label, long id);
1230
1231static
1232bool wxFindWindowCmpLabels(const wxWindow *win, const wxString& label,
1233 long WXUNUSED(id))
1234{
1235 return win->GetLabel() == label;
1236}
1237
1238static
1239bool wxFindWindowCmpNames(const wxWindow *win, const wxString& label,
1240 long WXUNUSED(id))
1241{
1242 return win->GetName() == label;
1243}
1244
1245static
1246bool wxFindWindowCmpIds(const wxWindow *win, const wxString& WXUNUSED(label),
1247 long id)
1248{
1249 return win->GetId() == id;
1250}
1251
1252// recursive helper for the FindWindowByXXX() functions
1253static
1254wxWindow *wxFindWindowRecursively(const wxWindow *parent,
1255 const wxString& label,
1256 long id,
1257 wxFindWindowCmp cmp)
1258{
1259 if ( parent )
1260 {
1261 // see if this is the one we're looking for
1262 if ( (*cmp)(parent, label, id) )
1263 return (wxWindow *)parent;
1264
1265 // It wasn't, so check all its children
222ed1d6 1266 for ( wxWindowList::compatibility_iterator node = parent->GetChildren().GetFirst();
146ba0fe
VZ
1267 node;
1268 node = node->GetNext() )
1269 {
1270 // recursively check each child
1271 wxWindow *win = (wxWindow *)node->GetData();
1272 wxWindow *retwin = wxFindWindowRecursively(win, label, id, cmp);
1273 if (retwin)
1274 return retwin;
1275 }
1276 }
1277
1278 // Not found
1279 return NULL;
1280}
1281
1282// helper for FindWindowByXXX()
1283static
1284wxWindow *wxFindWindowHelper(const wxWindow *parent,
1285 const wxString& label,
1286 long id,
1287 wxFindWindowCmp cmp)
1288{
1289 if ( parent )
1290 {
1291 // just check parent and all its children
1292 return wxFindWindowRecursively(parent, label, id, cmp);
1293 }
1294
1295 // start at very top of wx's windows
222ed1d6 1296 for ( wxWindowList::compatibility_iterator node = wxTopLevelWindows.GetFirst();
146ba0fe
VZ
1297 node;
1298 node = node->GetNext() )
1299 {
1300 // recursively check each window & its children
1301 wxWindow *win = node->GetData();
1302 wxWindow *retwin = wxFindWindowRecursively(win, label, id, cmp);
1303 if (retwin)
1304 return retwin;
1305 }
1306
1307 return NULL;
1308}
1309
1310/* static */
1311wxWindow *
1312wxWindowBase::FindWindowByLabel(const wxString& title, const wxWindow *parent)
1313{
1314 return wxFindWindowHelper(parent, title, 0, wxFindWindowCmpLabels);
1315}
1316
1317/* static */
1318wxWindow *
1319wxWindowBase::FindWindowByName(const wxString& title, const wxWindow *parent)
1320{
1321 wxWindow *win = wxFindWindowHelper(parent, title, 0, wxFindWindowCmpNames);
1322
1323 if ( !win )
1324 {
1325 // fall back to the label
1326 win = FindWindowByLabel(title, parent);
1327 }
1328
1329 return win;
1330}
1331
1332/* static */
1333wxWindow *
1334wxWindowBase::FindWindowById( long id, const wxWindow* parent )
1335{
1336 return wxFindWindowHelper(parent, _T(""), id, wxFindWindowCmpIds);
1337}
1338
f03fc89f
VZ
1339// ----------------------------------------------------------------------------
1340// dialog oriented functions
1341// ----------------------------------------------------------------------------
1342
34636400 1343void wxWindowBase::MakeModal(bool modal)
f03fc89f 1344{
34636400
VZ
1345 // Disable all other windows
1346 if ( IsTopLevel() )
1347 {
222ed1d6 1348 wxWindowList::compatibility_iterator node = wxTopLevelWindows.GetFirst();
34636400
VZ
1349 while (node)
1350 {
1351 wxWindow *win = node->GetData();
1352 if (win != this)
1353 win->Enable(!modal);
1354
1355 node = node->GetNext();
1356 }
1357 }
f03fc89f
VZ
1358}
1359
1360bool wxWindowBase::Validate()
1361{
88ac883a 1362#if wxUSE_VALIDATORS
d80cd92a
VZ
1363 bool recurse = (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY) != 0;
1364
222ed1d6 1365 wxWindowList::compatibility_iterator node;
f03fc89f
VZ
1366 for ( node = m_children.GetFirst(); node; node = node->GetNext() )
1367 {
1368 wxWindowBase *child = node->GetData();
1369 wxValidator *validator = child->GetValidator();
dcd6b914 1370 if ( validator && !validator->Validate((wxWindow *)this) )
f03fc89f 1371 {
e11f4636 1372 return false;
f03fc89f 1373 }
d80cd92a
VZ
1374
1375 if ( recurse && !child->Validate() )
1376 {
e11f4636 1377 return false;
d80cd92a 1378 }
f03fc89f 1379 }
88ac883a 1380#endif // wxUSE_VALIDATORS
f03fc89f 1381
e11f4636 1382 return true;
f03fc89f
VZ
1383}
1384
1385bool wxWindowBase::TransferDataToWindow()
1386{
88ac883a 1387#if wxUSE_VALIDATORS
d80cd92a
VZ
1388 bool recurse = (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY) != 0;
1389
222ed1d6 1390 wxWindowList::compatibility_iterator node;
f03fc89f
VZ
1391 for ( node = m_children.GetFirst(); node; node = node->GetNext() )
1392 {
1393 wxWindowBase *child = node->GetData();
1394 wxValidator *validator = child->GetValidator();
1395 if ( validator && !validator->TransferToWindow() )
1396 {
d80cd92a 1397 wxLogWarning(_("Could not transfer data to window"));
e30285ab 1398#if wxUSE_LOG
d80cd92a 1399 wxLog::FlushActive();
e30285ab 1400#endif // wxUSE_LOG
f03fc89f 1401
e11f4636 1402 return false;
f03fc89f 1403 }
d80cd92a
VZ
1404
1405 if ( recurse )
1406 {
a58a12e9 1407 if ( !child->TransferDataToWindow() )
d80cd92a
VZ
1408 {
1409 // warning already given
e11f4636 1410 return false;
d80cd92a
VZ
1411 }
1412 }
f03fc89f 1413 }
88ac883a 1414#endif // wxUSE_VALIDATORS
f03fc89f 1415
e11f4636 1416 return true;
f03fc89f
VZ
1417}
1418
1419bool wxWindowBase::TransferDataFromWindow()
1420{
88ac883a 1421#if wxUSE_VALIDATORS
d80cd92a
VZ
1422 bool recurse = (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY) != 0;
1423
222ed1d6 1424 wxWindowList::compatibility_iterator node;
f03fc89f
VZ
1425 for ( node = m_children.GetFirst(); node; node = node->GetNext() )
1426 {
1427 wxWindow *child = node->GetData();
d80cd92a
VZ
1428 wxValidator *validator = child->GetValidator();
1429 if ( validator && !validator->TransferFromWindow() )
f03fc89f 1430 {
d80cd92a
VZ
1431 // nop warning here because the application is supposed to give
1432 // one itself - we don't know here what might have gone wrongly
1433
e11f4636 1434 return false;
f03fc89f 1435 }
d80cd92a
VZ
1436
1437 if ( recurse )
1438 {
a58a12e9 1439 if ( !child->TransferDataFromWindow() )
d80cd92a
VZ
1440 {
1441 // warning already given
e11f4636 1442 return false;
d80cd92a
VZ
1443 }
1444 }
f03fc89f 1445 }
88ac883a 1446#endif // wxUSE_VALIDATORS
f03fc89f 1447
e11f4636 1448 return true;
f03fc89f
VZ
1449}
1450
1451void wxWindowBase::InitDialog()
1452{
1453 wxInitDialogEvent event(GetId());
1454 event.SetEventObject( this );
1455 GetEventHandler()->ProcessEvent(event);
1456}
1457
1458// ----------------------------------------------------------------------------
bd83cb56
VZ
1459// context-sensitive help support
1460// ----------------------------------------------------------------------------
1461
1462#if wxUSE_HELP
1463
1464// associate this help text with this window
1465void wxWindowBase::SetHelpText(const wxString& text)
1466{
1467 wxHelpProvider *helpProvider = wxHelpProvider::Get();
1468 if ( helpProvider )
1469 {
1470 helpProvider->AddHelp(this, text);
1471 }
1472}
1473
1474// associate this help text with all windows with the same id as this
1475// one
1476void wxWindowBase::SetHelpTextForId(const wxString& text)
1477{
1478 wxHelpProvider *helpProvider = wxHelpProvider::Get();
1479 if ( helpProvider )
1480 {
1481 helpProvider->AddHelp(GetId(), text);
1482 }
1483}
1484
1485// get the help string associated with this window (may be empty)
1486wxString wxWindowBase::GetHelpText() const
1487{
1488 wxString text;
1489 wxHelpProvider *helpProvider = wxHelpProvider::Get();
1490 if ( helpProvider )
1491 {
1492 text = helpProvider->GetHelp(this);
1493 }
1494
1495 return text;
1496}
1497
1498// show help for this window
1499void wxWindowBase::OnHelp(wxHelpEvent& event)
1500{
1501 wxHelpProvider *helpProvider = wxHelpProvider::Get();
1502 if ( helpProvider )
1503 {
1504 if ( helpProvider->ShowHelp(this) )
1505 {
1506 // skip the event.Skip() below
1507 return;
1508 }
1509 }
1510
1511 event.Skip();
1512}
1513
1514#endif // wxUSE_HELP
1515
1516// ----------------------------------------------------------------------------
574c939e 1517// tooltipsroot.Replace("\\", "/");
f03fc89f
VZ
1518// ----------------------------------------------------------------------------
1519
1520#if wxUSE_TOOLTIPS
1521
1522void wxWindowBase::SetToolTip( const wxString &tip )
1523{
1524 // don't create the new tooltip if we already have one
1525 if ( m_tooltip )
1526 {
1527 m_tooltip->SetTip( tip );
1528 }
1529 else
1530 {
1531 SetToolTip( new wxToolTip( tip ) );
1532 }
1533
1534 // setting empty tooltip text does not remove the tooltip any more - use
1535 // SetToolTip((wxToolTip *)NULL) for this
1536}
1537
1538void wxWindowBase::DoSetToolTip(wxToolTip *tooltip)
1539{
1540 if ( m_tooltip )
1541 delete m_tooltip;
1542
1543 m_tooltip = tooltip;
1544}
1545
1546#endif // wxUSE_TOOLTIPS
1547
1548// ----------------------------------------------------------------------------
1549// constraints and sizers
1550// ----------------------------------------------------------------------------
1551
1552#if wxUSE_CONSTRAINTS
1553
1554void wxWindowBase::SetConstraints( wxLayoutConstraints *constraints )
1555{
1556 if ( m_constraints )
1557 {
1558 UnsetConstraints(m_constraints);
1559 delete m_constraints;
1560 }
1561 m_constraints = constraints;
1562 if ( m_constraints )
1563 {
1564 // Make sure other windows know they're part of a 'meaningful relationship'
1565 if ( m_constraints->left.GetOtherWindow() && (m_constraints->left.GetOtherWindow() != this) )
1566 m_constraints->left.GetOtherWindow()->AddConstraintReference(this);
1567 if ( m_constraints->top.GetOtherWindow() && (m_constraints->top.GetOtherWindow() != this) )
1568 m_constraints->top.GetOtherWindow()->AddConstraintReference(this);
1569 if ( m_constraints->right.GetOtherWindow() && (m_constraints->right.GetOtherWindow() != this) )
1570 m_constraints->right.GetOtherWindow()->AddConstraintReference(this);
1571 if ( m_constraints->bottom.GetOtherWindow() && (m_constraints->bottom.GetOtherWindow() != this) )
1572 m_constraints->bottom.GetOtherWindow()->AddConstraintReference(this);
1573 if ( m_constraints->width.GetOtherWindow() && (m_constraints->width.GetOtherWindow() != this) )
1574 m_constraints->width.GetOtherWindow()->AddConstraintReference(this);
1575 if ( m_constraints->height.GetOtherWindow() && (m_constraints->height.GetOtherWindow() != this) )
1576 m_constraints->height.GetOtherWindow()->AddConstraintReference(this);
1577 if ( m_constraints->centreX.GetOtherWindow() && (m_constraints->centreX.GetOtherWindow() != this) )
1578 m_constraints->centreX.GetOtherWindow()->AddConstraintReference(this);
1579 if ( m_constraints->centreY.GetOtherWindow() && (m_constraints->centreY.GetOtherWindow() != this) )
1580 m_constraints->centreY.GetOtherWindow()->AddConstraintReference(this);
1581 }
1582}
1583
1584// This removes any dangling pointers to this window in other windows'
1585// constraintsInvolvedIn lists.
1586void wxWindowBase::UnsetConstraints(wxLayoutConstraints *c)
1587{
1588 if ( c )
1589 {
1590 if ( c->left.GetOtherWindow() && (c->top.GetOtherWindow() != this) )
1591 c->left.GetOtherWindow()->RemoveConstraintReference(this);
1592 if ( c->top.GetOtherWindow() && (c->top.GetOtherWindow() != this) )
1593 c->top.GetOtherWindow()->RemoveConstraintReference(this);
1594 if ( c->right.GetOtherWindow() && (c->right.GetOtherWindow() != this) )
1595 c->right.GetOtherWindow()->RemoveConstraintReference(this);
1596 if ( c->bottom.GetOtherWindow() && (c->bottom.GetOtherWindow() != this) )
1597 c->bottom.GetOtherWindow()->RemoveConstraintReference(this);
1598 if ( c->width.GetOtherWindow() && (c->width.GetOtherWindow() != this) )
1599 c->width.GetOtherWindow()->RemoveConstraintReference(this);
1600 if ( c->height.GetOtherWindow() && (c->height.GetOtherWindow() != this) )
1601 c->height.GetOtherWindow()->RemoveConstraintReference(this);
1602 if ( c->centreX.GetOtherWindow() && (c->centreX.GetOtherWindow() != this) )
1603 c->centreX.GetOtherWindow()->RemoveConstraintReference(this);
1604 if ( c->centreY.GetOtherWindow() && (c->centreY.GetOtherWindow() != this) )
1605 c->centreY.GetOtherWindow()->RemoveConstraintReference(this);
1606 }
1607}
1608
1609// Back-pointer to other windows we're involved with, so if we delete this
1610// window, we must delete any constraints we're involved with.
1611void wxWindowBase::AddConstraintReference(wxWindowBase *otherWin)
1612{
1613 if ( !m_constraintsInvolvedIn )
1614 m_constraintsInvolvedIn = new wxWindowList;
222ed1d6
MB
1615 if ( !m_constraintsInvolvedIn->Find((wxWindow *)otherWin) )
1616 m_constraintsInvolvedIn->Append((wxWindow *)otherWin);
f03fc89f
VZ
1617}
1618
1619// REMOVE back-pointer to other windows we're involved with.
1620void wxWindowBase::RemoveConstraintReference(wxWindowBase *otherWin)
1621{
1622 if ( m_constraintsInvolvedIn )
222ed1d6 1623 m_constraintsInvolvedIn->DeleteObject((wxWindow *)otherWin);
f03fc89f
VZ
1624}
1625
1626// Reset any constraints that mention this window
1627void wxWindowBase::DeleteRelatedConstraints()
1628{
1629 if ( m_constraintsInvolvedIn )
1630 {
222ed1d6 1631 wxWindowList::compatibility_iterator node = m_constraintsInvolvedIn->GetFirst();
f03fc89f
VZ
1632 while (node)
1633 {
1634 wxWindow *win = node->GetData();
1635 wxLayoutConstraints *constr = win->GetConstraints();
1636
1637 // Reset any constraints involving this window
1638 if ( constr )
1639 {
1640 constr->left.ResetIfWin(this);
1641 constr->top.ResetIfWin(this);
1642 constr->right.ResetIfWin(this);
1643 constr->bottom.ResetIfWin(this);
1644 constr->width.ResetIfWin(this);
1645 constr->height.ResetIfWin(this);
1646 constr->centreX.ResetIfWin(this);
1647 constr->centreY.ResetIfWin(this);
1648 }
1649
222ed1d6
MB
1650 wxWindowList::compatibility_iterator next = node->GetNext();
1651 m_constraintsInvolvedIn->Erase(node);
f03fc89f
VZ
1652 node = next;
1653 }
1654
1655 delete m_constraintsInvolvedIn;
1656 m_constraintsInvolvedIn = (wxWindowList *) NULL;
1657 }
1658}
ec5bb70d
VZ
1659
1660#endif // wxUSE_CONSTRAINTS
f03fc89f 1661
3aa5d532 1662void wxWindowBase::SetSizer(wxSizer *sizer, bool deleteOld)
f03fc89f 1663{
fb89cfc5
RD
1664 if ( sizer == m_windowSizer)
1665 return;
1b69c815 1666
ec5bb70d
VZ
1667 if ( deleteOld )
1668 delete m_windowSizer;
3417c2cd 1669
f03fc89f 1670 m_windowSizer = sizer;
566d84a7 1671
ec5bb70d 1672 SetAutoLayout( sizer != NULL );
566d84a7
RL
1673}
1674
1675void wxWindowBase::SetSizerAndFit(wxSizer *sizer, bool deleteOld)
1676{
1677 SetSizer( sizer, deleteOld );
1678 sizer->SetSizeHints( (wxWindow*) this );
f03fc89f
VZ
1679}
1680
400a9e41 1681
1ebfafde
RD
1682void wxWindowBase::SetContainingSizer(wxSizer* sizer)
1683{
1684 // adding a window to a sizer twice is going to result in fatal and
1685 // hard to debug problems later because when deleting the second
1686 // associated wxSizerItem we're going to dereference a dangling
1687 // pointer; so try to detect this as early as possible
1688 wxASSERT_MSG( !sizer || m_containingSizer != sizer,
1689 _T("Adding a window to the same sizer twice?") );
1ebfafde 1690
400a9e41 1691 m_containingSizer = sizer;
1ebfafde 1692}
400a9e41 1693
ec5bb70d
VZ
1694#if wxUSE_CONSTRAINTS
1695
1696void wxWindowBase::SatisfyConstraints()
1697{
1698 wxLayoutConstraints *constr = GetConstraints();
1699 bool wasOk = constr && constr->AreSatisfied();
1700
1701 ResetConstraints(); // Mark all constraints as unevaluated
1702
1703 int noChanges = 1;
1704
1705 // if we're a top level panel (i.e. our parent is frame/dialog), our
1706 // own constraints will never be satisfied any more unless we do it
1707 // here
1708 if ( wasOk )
1709 {
1710 while ( noChanges > 0 )
1711 {
1712 LayoutPhase1(&noChanges);
1713 }
1714 }
1715
1716 LayoutPhase2(&noChanges);
1717}
1718
1719#endif // wxUSE_CONSTRAINTS
1720
f03fc89f
VZ
1721bool wxWindowBase::Layout()
1722{
3417c2cd 1723 // If there is a sizer, use it instead of the constraints
f03fc89f
VZ
1724 if ( GetSizer() )
1725 {
f1df0927 1726 int w, h;
566d84a7 1727 GetVirtualSize(&w, &h);
3417c2cd 1728 GetSizer()->SetDimension( 0, 0, w, h );
f03fc89f 1729 }
461e93f9 1730#if wxUSE_CONSTRAINTS
f1df0927 1731 else
f03fc89f 1732 {
ec5bb70d 1733 SatisfyConstraints(); // Find the right constraints values
f1df0927 1734 SetConstraintSizes(); // Recursively set the real window sizes
f03fc89f 1735 }
461e93f9 1736#endif
5d4b632b 1737
e11f4636 1738 return true;
f03fc89f
VZ
1739}
1740
461e93f9 1741#if wxUSE_CONSTRAINTS
ec5bb70d
VZ
1742
1743// first phase of the constraints evaluation: set our own constraints
f03fc89f
VZ
1744bool wxWindowBase::LayoutPhase1(int *noChanges)
1745{
1746 wxLayoutConstraints *constr = GetConstraints();
ec5bb70d
VZ
1747
1748 return !constr || constr->SatisfyConstraints(this, noChanges);
f03fc89f
VZ
1749}
1750
ec5bb70d 1751// second phase: set the constraints for our children
f03fc89f
VZ
1752bool wxWindowBase::LayoutPhase2(int *noChanges)
1753{
1754 *noChanges = 0;
1755
1756 // Layout children
1757 DoPhase(1);
ec5bb70d
VZ
1758
1759 // Layout grand children
f03fc89f 1760 DoPhase(2);
ec5bb70d 1761
e11f4636 1762 return true;
f03fc89f
VZ
1763}
1764
1765// Do a phase of evaluating child constraints
1766bool wxWindowBase::DoPhase(int phase)
1767{
ec5bb70d
VZ
1768 // the list containing the children for which the constraints are already
1769 // set correctly
f03fc89f 1770 wxWindowList succeeded;
ec5bb70d
VZ
1771
1772 // the max number of iterations we loop before concluding that we can't set
1773 // the constraints
1774 static const int maxIterations = 500;
1775
1776 for ( int noIterations = 0; noIterations < maxIterations; noIterations++ )
f03fc89f 1777 {
ec5bb70d
VZ
1778 int noChanges = 0;
1779
1780 // loop over all children setting their constraints
222ed1d6 1781 for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
ec5bb70d
VZ
1782 node;
1783 node = node->GetNext() )
f03fc89f
VZ
1784 {
1785 wxWindow *child = node->GetData();
ec5bb70d 1786 if ( child->IsTopLevel() )
f03fc89f 1787 {
ec5bb70d
VZ
1788 // top level children are not inside our client area
1789 continue;
1790 }
1791
1792 if ( !child->GetConstraints() || succeeded.Find(child) )
1793 {
1794 // this one is either already ok or nothing we can do about it
1795 continue;
1796 }
1797
1798 int tempNoChanges = 0;
1799 bool success = phase == 1 ? child->LayoutPhase1(&tempNoChanges)
1800 : child->LayoutPhase2(&tempNoChanges);
1801 noChanges += tempNoChanges;
1802
1803 if ( success )
1804 {
1805 succeeded.Append(child);
f03fc89f 1806 }
f03fc89f
VZ
1807 }
1808
ec5bb70d
VZ
1809 if ( !noChanges )
1810 {
1811 // constraints are set
1812 break;
1813 }
f03fc89f
VZ
1814 }
1815
e11f4636 1816 return true;
f03fc89f
VZ
1817}
1818
1819void wxWindowBase::ResetConstraints()
1820{
1821 wxLayoutConstraints *constr = GetConstraints();
1822 if ( constr )
1823 {
e11f4636
DS
1824 constr->left.SetDone(false);
1825 constr->top.SetDone(false);
1826 constr->right.SetDone(false);
1827 constr->bottom.SetDone(false);
1828 constr->width.SetDone(false);
1829 constr->height.SetDone(false);
1830 constr->centreX.SetDone(false);
1831 constr->centreY.SetDone(false);
f03fc89f 1832 }
f1df0927 1833
222ed1d6 1834 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
f03fc89f
VZ
1835 while (node)
1836 {
1837 wxWindow *win = node->GetData();
34636400 1838 if ( !win->IsTopLevel() )
f03fc89f
VZ
1839 win->ResetConstraints();
1840 node = node->GetNext();
1841 }
1842}
1843
1844// Need to distinguish between setting the 'fake' size for windows and sizers,
1845// and setting the real values.
1846void wxWindowBase::SetConstraintSizes(bool recurse)
1847{
1848 wxLayoutConstraints *constr = GetConstraints();
4b7f2165 1849 if ( constr && constr->AreSatisfied() )
f03fc89f
VZ
1850 {
1851 int x = constr->left.GetValue();
1852 int y = constr->top.GetValue();
1853 int w = constr->width.GetValue();
1854 int h = constr->height.GetValue();
1855
f03fc89f 1856 if ( (constr->width.GetRelationship() != wxAsIs ) ||
3417c2cd 1857 (constr->height.GetRelationship() != wxAsIs) )
f03fc89f 1858 {
3417c2cd 1859 SetSize(x, y, w, h);
f03fc89f
VZ
1860 }
1861 else
1862 {
3417c2cd
RR
1863 // If we don't want to resize this window, just move it...
1864 Move(x, y);
f03fc89f
VZ
1865 }
1866 }
1867 else if ( constr )
1868 {
4b7f2165 1869 wxLogDebug(wxT("Constraints not satisfied for %s named '%s'."),
f1df0927 1870 GetClassInfo()->GetClassName(),
4b7f2165 1871 GetName().c_str());
f03fc89f
VZ
1872 }
1873
1874 if ( recurse )
1875 {
222ed1d6 1876 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
f03fc89f
VZ
1877 while (node)
1878 {
1879 wxWindow *win = node->GetData();
e2f9212c 1880 if ( !win->IsTopLevel() && win->GetConstraints() )
f03fc89f
VZ
1881 win->SetConstraintSizes();
1882 node = node->GetNext();
1883 }
1884 }
1885}
1886
f03fc89f
VZ
1887// Only set the size/position of the constraint (if any)
1888void wxWindowBase::SetSizeConstraint(int x, int y, int w, int h)
1889{
1890 wxLayoutConstraints *constr = GetConstraints();
1891 if ( constr )
1892 {
422d0ff0 1893 if ( x != wxDefaultCoord )
f03fc89f
VZ
1894 {
1895 constr->left.SetValue(x);
e11f4636 1896 constr->left.SetDone(true);
f03fc89f 1897 }
422d0ff0 1898 if ( y != wxDefaultCoord )
f03fc89f
VZ
1899 {
1900 constr->top.SetValue(y);
e11f4636 1901 constr->top.SetDone(true);
f03fc89f 1902 }
422d0ff0 1903 if ( w != wxDefaultCoord )
f03fc89f
VZ
1904 {
1905 constr->width.SetValue(w);
e11f4636 1906 constr->width.SetDone(true);
f03fc89f 1907 }
422d0ff0 1908 if ( h != wxDefaultCoord )
f03fc89f
VZ
1909 {
1910 constr->height.SetValue(h);
e11f4636 1911 constr->height.SetDone(true);
f03fc89f
VZ
1912 }
1913 }
1914}
1915
1916void wxWindowBase::MoveConstraint(int x, int y)
1917{
1918 wxLayoutConstraints *constr = GetConstraints();
1919 if ( constr )
1920 {
422d0ff0 1921 if ( x != wxDefaultCoord )
f03fc89f
VZ
1922 {
1923 constr->left.SetValue(x);
e11f4636 1924 constr->left.SetDone(true);
f03fc89f 1925 }
422d0ff0 1926 if ( y != wxDefaultCoord )
f03fc89f
VZ
1927 {
1928 constr->top.SetValue(y);
e11f4636 1929 constr->top.SetDone(true);
f03fc89f
VZ
1930 }
1931 }
1932}
1933
1934void wxWindowBase::GetSizeConstraint(int *w, int *h) const
1935{
1936 wxLayoutConstraints *constr = GetConstraints();
1937 if ( constr )
1938 {
1939 *w = constr->width.GetValue();
1940 *h = constr->height.GetValue();
1941 }
1942 else
1943 GetSize(w, h);
1944}
1945
1946void wxWindowBase::GetClientSizeConstraint(int *w, int *h) const
1947{
1948 wxLayoutConstraints *constr = GetConstraints();
1949 if ( constr )
1950 {
1951 *w = constr->width.GetValue();
1952 *h = constr->height.GetValue();
1953 }
1954 else
1955 GetClientSize(w, h);
1956}
1957
461e93f9
JS
1958void wxWindowBase::GetPositionConstraint(int *x, int *y) const
1959{
1960 wxLayoutConstraints *constr = GetConstraints();
1961 if ( constr )
1962 {
1963 *x = constr->left.GetValue();
1964 *y = constr->top.GetValue();
1965 }
1966 else
1967 GetPosition(x, y);
1968}
1969
1970#endif // wxUSE_CONSTRAINTS
1971
20a1eea1 1972void wxWindowBase::AdjustForParentClientOrigin(int& x, int& y, int sizeFlags) const
a200c35e
VS
1973{
1974 // don't do it for the dialogs/frames - they float independently of their
1975 // parent
1976 if ( !IsTopLevel() )
1977 {
1978 wxWindow *parent = GetParent();
1979 if ( !(sizeFlags & wxSIZE_NO_ADJUSTMENTS) && parent )
1980 {
1981 wxPoint pt(parent->GetClientAreaOrigin());
1982 x += pt.x;
1983 y += pt.y;
1984 }
1985 }
1986}
1987
f03fc89f
VZ
1988// ----------------------------------------------------------------------------
1989// do Update UI processing for child controls
1990// ----------------------------------------------------------------------------
7ec1983b 1991
e39af974 1992void wxWindowBase::UpdateWindowUI(long flags)
7ec1983b 1993{
26bf1ce0
VZ
1994 wxUpdateUIEvent event(GetId());
1995 event.m_eventObject = this;
1996
1997 if ( GetEventHandler()->ProcessEvent(event) )
7ec1983b 1998 {
e39af974
JS
1999 DoUpdateWindowUI(event);
2000 }
7ec1983b 2001
e39af974
JS
2002 if (flags & wxUPDATE_UI_RECURSE)
2003 {
222ed1d6 2004 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
e39af974 2005 while (node)
f03fc89f 2006 {
e39af974
JS
2007 wxWindow* child = (wxWindow*) node->GetData();
2008 child->UpdateWindowUI(flags);
2009 node = node->GetNext();
26bf1ce0 2010 }
e39af974
JS
2011 }
2012}
f03fc89f 2013
e39af974
JS
2014// do the window-specific processing after processing the update event
2015// TODO: take specific knowledge out of this function and
2016// put in each control's base class. Unfortunately we don't
2017// yet have base implementation files for wxCheckBox and wxRadioButton.
2018void wxWindowBase::DoUpdateWindowUI(wxUpdateUIEvent& event)
2019{
2020 if ( event.GetSetEnabled() )
2021 Enable(event.GetEnabled());
e11f4636 2022
e39af974
JS
2023#if wxUSE_CONTROLS
2024 if ( event.GetSetText() )
2025 {
2026 wxControl *control = wxDynamicCastThis(wxControl);
2027 if ( control )
2028 {
2029 if ( event.GetText() != control->GetLabel() )
2030 control->SetLabel(event.GetText());
2031 }
88ac883a 2032#if wxUSE_CHECKBOX
f7637829 2033 wxCheckBox *checkbox = wxDynamicCastThis(wxCheckBox);
26bf1ce0
VZ
2034 if ( checkbox )
2035 {
2036 if ( event.GetSetChecked() )
2037 checkbox->SetValue(event.GetChecked());
2038 }
88ac883a
VZ
2039#endif // wxUSE_CHECKBOX
2040
b3402d0d 2041#if wxUSE_RADIOBTN
f7637829 2042 wxRadioButton *radiobtn = wxDynamicCastThis(wxRadioButton);
26bf1ce0
VZ
2043 if ( radiobtn )
2044 {
2045 if ( event.GetSetChecked() )
2046 radiobtn->SetValue(event.GetChecked());
f03fc89f 2047 }
b3402d0d 2048#endif // wxUSE_RADIOBTN
e11f4636 2049 }
e39af974
JS
2050#endif
2051}
2052
5109ae5d 2053#if 0
e39af974 2054// call internal idle recursively
5109ae5d 2055// may be obsolete (wait until OnIdle scheme stabilises)
e39af974
JS
2056void wxWindowBase::ProcessInternalIdle()
2057{
2058 OnInternalIdle();
2059
222ed1d6 2060 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
e39af974
JS
2061 while (node)
2062 {
2063 wxWindow *child = node->GetData();
2064 child->ProcessInternalIdle();
2065 node = node->GetNext();
7ec1983b 2066 }
7ec1983b 2067}
5109ae5d 2068#endif
fd71308f 2069
f03fc89f
VZ
2070// ----------------------------------------------------------------------------
2071// dialog units translations
2072// ----------------------------------------------------------------------------
2073
2074wxPoint wxWindowBase::ConvertPixelsToDialog(const wxPoint& pt)
fd71308f
JS
2075{
2076 int charWidth = GetCharWidth();
2077 int charHeight = GetCharHeight();
5d9c2818
RD
2078 wxPoint pt2(-1, -1);
2079 if (pt.x != -1)
1b69c815 2080 pt2.x = (int) ((pt.x * 4) / charWidth);
5d9c2818 2081 if (pt.y != -1)
1b69c815 2082 pt2.y = (int) ((pt.y * 8) / charHeight);
fd71308f
JS
2083
2084 return pt2;
2085}
2086
f03fc89f 2087wxPoint wxWindowBase::ConvertDialogToPixels(const wxPoint& pt)
fd71308f
JS
2088{
2089 int charWidth = GetCharWidth();
2090 int charHeight = GetCharHeight();
5d9c2818
RD
2091 wxPoint pt2(-1, -1);
2092 if (pt.x != -1)
1b69c815 2093 pt2.x = (int) ((pt.x * charWidth) / 4);
5d9c2818 2094 if (pt.y != -1)
1b69c815 2095 pt2.y = (int) ((pt.y * charHeight) / 8);
fd71308f
JS
2096
2097 return pt2;
2098}
2099
f03fc89f
VZ
2100// ----------------------------------------------------------------------------
2101// event handlers
2102// ----------------------------------------------------------------------------
2103
2104// propagate the colour change event to the subwindows
2105void wxWindowBase::OnSysColourChanged(wxSysColourChangedEvent& event)
2106{
222ed1d6 2107 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
f03fc89f
VZ
2108 while ( node )
2109 {
2110 // Only propagate to non-top-level windows
2111 wxWindow *win = node->GetData();
2112 if ( !win->IsTopLevel() )
2113 {
2114 wxSysColourChangedEvent event2;
2115 event.m_eventObject = win;
2116 win->GetEventHandler()->ProcessEvent(event2);
2117 }
2118
2119 node = node->GetNext();
2120 }
9a8477e1
VS
2121
2122 Refresh();
f03fc89f
VZ
2123}
2124
e39af974
JS
2125// the default action is to populate dialog with data when it's created,
2126// and nudge the UI into displaying itself correctly in case
2127// we've turned the wxUpdateUIEvents frequency down low.
f03fc89f
VZ
2128void wxWindowBase::OnInitDialog( wxInitDialogEvent &WXUNUSED(event) )
2129{
2130 TransferDataToWindow();
e11f4636 2131
e39af974
JS
2132 // Update the UI at this point
2133 UpdateWindowUI(wxUPDATE_UI_RECURSE);
f03fc89f
VZ
2134}
2135
a02dc3e3
VZ
2136// process Ctrl-Alt-mclick
2137void wxWindowBase::OnMiddleClick( wxMouseEvent& event )
2138{
1e6feb95 2139#if wxUSE_MSGDLG
a02dc3e3
VZ
2140 if ( event.ControlDown() && event.AltDown() )
2141 {
2142 // don't translate these strings
2143 wxString port;
af3062a8
VZ
2144
2145#ifdef __WXUNIVERSAL__
2146 port = _T("Univ/");
2147#endif // __WXUNIVERSAL__
2148
a02dc3e3
VZ
2149 switch ( wxGetOsVersion() )
2150 {
ea8e90b7 2151 case wxMOTIF_X: port += _T("Motif"); break;
ff8fda36 2152 case wxMAC:
ea8e90b7
VZ
2153 case wxMAC_DARWIN: port += _T("Mac"); break;
2154 case wxBEOS: port += _T("BeOS"); break;
a02dc3e3
VZ
2155 case wxGTK:
2156 case wxGTK_WIN32:
2157 case wxGTK_OS2:
ea8e90b7 2158 case wxGTK_BEOS: port += _T("GTK"); break;
a02dc3e3
VZ
2159 case wxWINDOWS:
2160 case wxPENWINDOWS:
2161 case wxWINDOWS_NT:
2162 case wxWIN32S:
2163 case wxWIN95:
ea8e90b7 2164 case wxWIN386: port += _T("MS Windows"); break;
a02dc3e3
VZ
2165 case wxMGL_UNIX:
2166 case wxMGL_X:
2167 case wxMGL_WIN32:
ea8e90b7 2168 case wxMGL_OS2: port += _T("MGL"); break;
a02dc3e3 2169 case wxWINDOWS_OS2:
ea8e90b7
VZ
2170 case wxOS2_PM: port += _T("OS/2"); break;
2171 default: port += _T("unknown"); break;
a02dc3e3
VZ
2172 }
2173
2174 wxMessageBox(wxString::Format(
2175 _T(
77ffb593 2176 " wxWidgets Library (%s port)\nVersion %u.%u.%u%s, compiled at %s %s\n Copyright (c) 1995-2002 wxWidgets team"
a02dc3e3
VZ
2177 ),
2178 port.c_str(),
2179 wxMAJOR_VERSION,
2180 wxMINOR_VERSION,
2181 wxRELEASE_NUMBER,
3f562374
VZ
2182#if wxUSE_UNICODE
2183 L" (Unicode)",
2184#else
2185 "",
2186#endif
2187 __TDATE__,
2188 __TTIME__
a02dc3e3 2189 ),
77ffb593 2190 _T("wxWidgets information"),
a02dc3e3
VZ
2191 wxICON_INFORMATION | wxOK,
2192 (wxWindow *)this);
2193 }
2194 else
1e6feb95 2195#endif // wxUSE_MSGDLG
a02dc3e3
VZ
2196 {
2197 event.Skip();
2198 }
2199}
2200
ed5317e5
JS
2201// ----------------------------------------------------------------------------
2202// accessibility
2203// ----------------------------------------------------------------------------
2204
2205#if wxUSE_ACCESSIBILITY
2206void wxWindowBase::SetAccessible(wxAccessible* accessible)
2207{
2aefc528 2208 if (m_accessible && (accessible != m_accessible))
ed5317e5
JS
2209 delete m_accessible;
2210 m_accessible = accessible;
2211 if (m_accessible)
2212 m_accessible->SetWindow((wxWindow*) this);
2213}
2214
2215// Returns the accessible object, creating if necessary.
2216wxAccessible* wxWindowBase::GetOrCreateAccessible()
2217{
2218 if (!m_accessible)
2219 m_accessible = CreateAccessible();
2220 return m_accessible;
2221}
2222
2223// Override to create a specific accessible object.
2224wxAccessible* wxWindowBase::CreateAccessible()
2225{
2226 return new wxWindowAccessible((wxWindow*) this);
2227}
2228
2229#endif
2230
222ed1d6 2231#if !wxUSE_STL
f03fc89f
VZ
2232// ----------------------------------------------------------------------------
2233// list classes implementation
2234// ----------------------------------------------------------------------------
2235
2236void wxWindowListNode::DeleteData()
2237{
2238 delete (wxWindow *)GetData();
2239}
222ed1d6 2240#endif
f03fc89f 2241
1e6feb95
VZ
2242// ----------------------------------------------------------------------------
2243// borders
2244// ----------------------------------------------------------------------------
2245
aede4ebb 2246wxBorder wxWindowBase::GetBorder(long flags) const
1e6feb95 2247{
aede4ebb 2248 wxBorder border = (wxBorder)(flags & wxBORDER_MASK);
1e6feb95
VZ
2249 if ( border == wxBORDER_DEFAULT )
2250 {
2251 border = GetDefaultBorder();
2252 }
2253
2254 return border;
2255}
2256
2257wxBorder wxWindowBase::GetDefaultBorder() const
2258{
2259 return wxBORDER_NONE;
2260}
2261
2262// ----------------------------------------------------------------------------
2263// hit testing
2264// ----------------------------------------------------------------------------
2265
2266wxHitTest wxWindowBase::DoHitTest(wxCoord x, wxCoord y) const
2267{
2268 // here we just check if the point is inside the window or not
2269
2270 // check the top and left border first
2271 bool outside = x < 0 || y < 0;
2272 if ( !outside )
2273 {
2274 // check the right and bottom borders too
2275 wxSize size = GetSize();
2276 outside = x >= size.x || y >= size.y;
2277 }
2278
2279 return outside ? wxHT_WINDOW_OUTSIDE : wxHT_WINDOW_INSIDE;
2280}
2281
94633ad9
VZ
2282// ----------------------------------------------------------------------------
2283// mouse capture
2284// ----------------------------------------------------------------------------
2285
2286struct WXDLLEXPORT wxWindowNext
2287{
2288 wxWindow *win;
2289 wxWindowNext *next;
786646f3 2290} *wxWindowBase::ms_winCaptureNext = NULL;
94633ad9 2291
a83e1475 2292void wxWindowBase::CaptureMouse()
94633ad9 2293{
7e555446 2294 wxLogTrace(_T("mousecapture"), _T("CaptureMouse(%p)"), this);
45e0dc94 2295
94633ad9
VZ
2296 wxWindow *winOld = GetCapture();
2297 if ( winOld )
2298 {
df2f507b 2299 ((wxWindowBase*) winOld)->DoReleaseMouse();
edd802c6 2300
94633ad9
VZ
2301 // save it on stack
2302 wxWindowNext *item = new wxWindowNext;
2303 item->win = winOld;
2304 item->next = ms_winCaptureNext;
2305 ms_winCaptureNext = item;
2306 }
2307 //else: no mouse capture to save
2308
2309 DoCaptureMouse();
2310}
2311
a83e1475 2312void wxWindowBase::ReleaseMouse()
94633ad9 2313{
7e555446 2314 wxLogTrace(_T("mousecapture"), _T("ReleaseMouse(%p)"), this);
349d1942 2315
63fd5f0b 2316 wxASSERT_MSG( GetCapture() == this, wxT("attempt to release mouse, but this window hasn't captured it") );
a7b09001 2317
94633ad9
VZ
2318 DoReleaseMouse();
2319
2320 if ( ms_winCaptureNext )
2321 {
44f8caa7 2322 ((wxWindowBase*)ms_winCaptureNext->win)->DoCaptureMouse();
edd802c6 2323
94633ad9
VZ
2324 wxWindowNext *item = ms_winCaptureNext;
2325 ms_winCaptureNext = item->next;
2326 delete item;
2327 }
2328 //else: stack is empty, no previous capture
2329
2330 wxLogTrace(_T("mousecapture"),
e11f4636
DS
2331 (const wxChar *) _T("After ReleaseMouse() mouse is captured by %p"),
2332 GetCapture());
94633ad9
VZ
2333}
2334
5048c832 2335#if wxUSE_HOTKEY
540b6b09
VZ
2336
2337bool
2338wxWindowBase::RegisterHotKey(int WXUNUSED(hotkeyId),
2339 int WXUNUSED(modifiers),
2340 int WXUNUSED(keycode))
5048c832
JS
2341{
2342 // not implemented
2343 return false;
2344}
2345
540b6b09 2346bool wxWindowBase::UnregisterHotKey(int WXUNUSED(hotkeyId))
5048c832
JS
2347{
2348 // not implemented
2349 return false;
2350}
540b6b09
VZ
2351
2352#endif // wxUSE_HOTKEY
7de59551
RD
2353
2354void wxWindowBase::SendDestroyEvent()
2355{
2356 wxWindowDestroyEvent event;
2357 event.SetEventObject(this);
2358 event.SetId(GetId());
2359 GetEventHandler()->ProcessEvent(event);
2360}
2361
4caf847c
VZ
2362// ----------------------------------------------------------------------------
2363// event processing
2364// ----------------------------------------------------------------------------
2365
ac8d0c11 2366bool wxWindowBase::TryValidator(wxEvent& wxVALIDATOR_PARAM(event))
4caf847c 2367{
6eabf58c 2368#if wxUSE_VALIDATORS
4caf847c
VZ
2369 // Can only use the validator of the window which
2370 // is receiving the event
2371 if ( event.GetEventObject() == this )
2372 {
2373 wxValidator *validator = GetValidator();
2374 if ( validator && validator->ProcessEvent(event) )
2375 {
6eabf58c 2376 return true;
4caf847c
VZ
2377 }
2378 }
6eabf58c 2379#endif // wxUSE_VALIDATORS
4caf847c 2380
6eabf58c 2381 return false;
4caf847c
VZ
2382}
2383
4caf847c
VZ
2384bool wxWindowBase::TryParent(wxEvent& event)
2385{
040e234d
VZ
2386 // carry on up the parent-child hierarchy if the propgation count hasn't
2387 // reached zero yet
2388 if ( event.ShouldPropagate() )
4caf847c
VZ
2389 {
2390 // honour the requests to stop propagation at this window: this is
2391 // used by the dialogs, for example, to prevent processing the events
2392 // from the dialog controls in the parent frame which rarely, if ever,
2393 // makes sense
2394 if ( !(GetExtraStyle() & wxWS_EX_BLOCK_EVENTS) )
2395 {
2396 wxWindow *parent = GetParent();
2397 if ( parent && !parent->IsBeingDeleted() )
040e234d
VZ
2398 {
2399 wxPropagateOnce propagateOnce(event);
2400
4caf847c 2401 return parent->GetEventHandler()->ProcessEvent(event);
040e234d 2402 }
4caf847c
VZ
2403 }
2404 }
2405
2406 return wxEvtHandler::TryParent(event);
2407}
2408
5f6cfda7 2409// ----------------------------------------------------------------------------
a24de76b 2410// keyboard navigation
5f6cfda7
JS
2411// ----------------------------------------------------------------------------
2412
2413// Navigates in the specified direction.
eedc82f4 2414bool wxWindowBase::Navigate(int flags)
5f6cfda7
JS
2415{
2416 wxNavigationKeyEvent eventNav;
eedc82f4 2417 eventNav.SetFlags(flags);
5f6cfda7
JS
2418 eventNav.SetEventObject(this);
2419 if ( GetParent()->GetEventHandler()->ProcessEvent(eventNav) )
2420 {
2421 return true;
2422 }
2423 return false;
2424}
2425
a24de76b
VZ
2426void wxWindowBase::DoMoveInTabOrder(wxWindow *win, MoveKind move)
2427{
2428 // check that we're not a top level window
2429 wxCHECK_RET( GetParent(),
2430 _T("MoveBefore/AfterInTabOrder() don't work for TLWs!") );
2431
2432 // find the target window in the siblings list
2433 wxWindowList& siblings = GetParent()->GetChildren();
2434 wxWindowList::compatibility_iterator i = siblings.Find(win);
2435 wxCHECK_RET( i, _T("MoveBefore/AfterInTabOrder(): win is not a sibling") );
2436
2437 // unfortunately, when wxUSE_STL == 1 DetachNode() is not implemented so we
2438 // can't just move the node around
feef1ecf
VZ
2439 wxWindow *self = (wxWindow *)this;
2440 siblings.DeleteObject(self);
9e9300c4
VZ
2441 if ( move == MoveAfter )
2442 {
2443 i = i->GetNext();
2444 }
2445
2446 if ( i )
a24de76b 2447 {
feef1ecf 2448 siblings.Insert(i, self);
a24de76b
VZ
2449 }
2450 else // MoveAfter and win was the last sibling
2451 {
feef1ecf 2452 siblings.Append(self);
a24de76b
VZ
2453 }
2454}
2455
33b494d6
VZ
2456// ----------------------------------------------------------------------------
2457// global functions
2458// ----------------------------------------------------------------------------
2459
2460wxWindow* wxGetTopLevelParent(wxWindow *win)
2461{
2462 while ( win && !win->IsTopLevel() )
2463 win = win->GetParent();
2464
2465 return win;
2466}
2467
ed5317e5
JS
2468#if wxUSE_ACCESSIBILITY
2469// ----------------------------------------------------------------------------
2470// accessible object for windows
2471// ----------------------------------------------------------------------------
2472
2473// Can return either a child object, or an integer
2474// representing the child element, starting from 1.
66b9ec3d 2475wxAccStatus wxWindowAccessible::HitTest(const wxPoint& WXUNUSED(pt), int* WXUNUSED(childId), wxAccessible** WXUNUSED(childObject))
ed5317e5
JS
2476{
2477 wxASSERT( GetWindow() != NULL );
2478 if (!GetWindow())
2479 return wxACC_FAIL;
2480
2481 return wxACC_NOT_IMPLEMENTED;
2482}
2483
2484// Returns the rectangle for this object (id = 0) or a child element (id > 0).
2485wxAccStatus wxWindowAccessible::GetLocation(wxRect& rect, int elementId)
2486{
2487 wxASSERT( GetWindow() != NULL );
2488 if (!GetWindow())
2489 return wxACC_FAIL;
2490
c6e2af45
JS
2491 wxWindow* win = NULL;
2492 if (elementId == 0)
2493 {
2494 win = GetWindow();
2495 }
2496 else
2497 {
2498 if (elementId <= (int) GetWindow()->GetChildren().GetCount())
2499 {
ee6eb8d8 2500 win = GetWindow()->GetChildren().Item(elementId-1)->GetData();
c6e2af45
JS
2501 }
2502 else
2503 return wxACC_FAIL;
2504 }
2505 if (win)
2506 {
2507 rect = win->GetRect();
2508 if (win->GetParent() && !win->IsKindOf(CLASSINFO(wxTopLevelWindow)))
2509 rect.SetPosition(win->GetParent()->ClientToScreen(rect.GetPosition()));
2510 return wxACC_OK;
2511 }
2512
ed5317e5
JS
2513 return wxACC_NOT_IMPLEMENTED;
2514}
2515
2516// Navigates from fromId to toId/toObject.
2517wxAccStatus wxWindowAccessible::Navigate(wxNavDir navDir, int fromId,
66b9ec3d 2518 int* WXUNUSED(toId), wxAccessible** toObject)
ed5317e5
JS
2519{
2520 wxASSERT( GetWindow() != NULL );
2521 if (!GetWindow())
2522 return wxACC_FAIL;
2523
c6e2af45
JS
2524 switch (navDir)
2525 {
2526 case wxNAVDIR_FIRSTCHILD:
2527 {
2528 if (GetWindow()->GetChildren().GetCount() == 0)
2529 return wxACC_FALSE;
2530 wxWindow* childWindow = (wxWindow*) GetWindow()->GetChildren().GetFirst()->GetData();
2531 *toObject = childWindow->GetOrCreateAccessible();
2532
2533 return wxACC_OK;
2534 }
2535 case wxNAVDIR_LASTCHILD:
2536 {
2537 if (GetWindow()->GetChildren().GetCount() == 0)
2538 return wxACC_FALSE;
2539 wxWindow* childWindow = (wxWindow*) GetWindow()->GetChildren().GetLast()->GetData();
2540 *toObject = childWindow->GetOrCreateAccessible();
2541
2542 return wxACC_OK;
2543 }
2544 case wxNAVDIR_RIGHT:
2545 case wxNAVDIR_DOWN:
2546 case wxNAVDIR_NEXT:
2547 {
ee6eb8d8
MB
2548 wxWindowList::compatibility_iterator node =
2549 wxWindowList::compatibility_iterator();
c6e2af45
JS
2550 if (fromId == 0)
2551 {
2552 // Can't navigate to sibling of this window
2553 // if we're a top-level window.
2554 if (!GetWindow()->GetParent())
2555 return wxACC_NOT_IMPLEMENTED;
2556
2557 node = GetWindow()->GetParent()->GetChildren().Find(GetWindow());
2558 }
2559 else
2560 {
2561 if (fromId <= (int) GetWindow()->GetChildren().GetCount())
33b3f7c3 2562 node = GetWindow()->GetChildren().Item(fromId-1);
c6e2af45
JS
2563 }
2564
2565 if (node && node->GetNext())
2566 {
ee6eb8d8 2567 wxWindow* nextWindow = node->GetNext()->GetData();
c6e2af45
JS
2568 *toObject = nextWindow->GetOrCreateAccessible();
2569 return wxACC_OK;
2570 }
2571 else
2572 return wxACC_FALSE;
2573 }
2574 case wxNAVDIR_LEFT:
2575 case wxNAVDIR_UP:
2576 case wxNAVDIR_PREVIOUS:
2577 {
ee6eb8d8
MB
2578 wxWindowList::compatibility_iterator node =
2579 wxWindowList::compatibility_iterator();
c6e2af45
JS
2580 if (fromId == 0)
2581 {
2582 // Can't navigate to sibling of this window
2583 // if we're a top-level window.
2584 if (!GetWindow()->GetParent())
2585 return wxACC_NOT_IMPLEMENTED;
2586
2587 node = GetWindow()->GetParent()->GetChildren().Find(GetWindow());
2588 }
2589 else
2590 {
2591 if (fromId <= (int) GetWindow()->GetChildren().GetCount())
33b3f7c3 2592 node = GetWindow()->GetChildren().Item(fromId-1);
c6e2af45
JS
2593 }
2594
2595 if (node && node->GetPrevious())
2596 {
ee6eb8d8 2597 wxWindow* previousWindow = node->GetPrevious()->GetData();
c6e2af45
JS
2598 *toObject = previousWindow->GetOrCreateAccessible();
2599 return wxACC_OK;
2600 }
2601 else
2602 return wxACC_FALSE;
2603 }
2604 }
2605
ed5317e5
JS
2606 return wxACC_NOT_IMPLEMENTED;
2607}
2608
2609// Gets the name of the specified object.
2610wxAccStatus wxWindowAccessible::GetName(int childId, wxString* name)
2611{
2612 wxASSERT( GetWindow() != NULL );
2613 if (!GetWindow())
2614 return wxACC_FAIL;
2615
2aefc528
JS
2616 wxString title;
2617
77ffb593 2618 // If a child, leave wxWidgets to call the function on the actual
2aefc528
JS
2619 // child object.
2620 if (childId > 0)
2621 return wxACC_NOT_IMPLEMENTED;
2622
2623 // This will eventually be replaced by specialised
77ffb593 2624 // accessible classes, one for each kind of wxWidgets
2aefc528 2625 // control or window.
0b4f47a3 2626#if wxUSE_BUTTON
2aefc528
JS
2627 if (GetWindow()->IsKindOf(CLASSINFO(wxButton)))
2628 title = ((wxButton*) GetWindow())->GetLabel();
2629 else
0b4f47a3 2630#endif
2aefc528 2631 title = GetWindow()->GetName();
e11f4636 2632
ed5317e5
JS
2633 if (!title.IsEmpty())
2634 {
2635 *name = title;
2636 return wxACC_OK;
2637 }
2638 else
2639 return wxACC_NOT_IMPLEMENTED;
2640}
2641
2642// Gets the number of children.
2643wxAccStatus wxWindowAccessible::GetChildCount(int* childId)
2644{
2645 wxASSERT( GetWindow() != NULL );
2646 if (!GetWindow())
2647 return wxACC_FAIL;
2648
2649 *childId = (int) GetWindow()->GetChildren().GetCount();
2650 return wxACC_OK;
2651}
2652
2653// Gets the specified child (starting from 1).
2654// If *child is NULL and return value is wxACC_OK,
2655// this means that the child is a simple element and
2656// not an accessible object.
2657wxAccStatus wxWindowAccessible::GetChild(int childId, wxAccessible** child)
2658{
2659 wxASSERT( GetWindow() != NULL );
2660 if (!GetWindow())
2661 return wxACC_FAIL;
2662
2663 if (childId == 0)
2664 {
2665 *child = this;
2666 return wxACC_OK;
2667 }
2668
2669 if (childId > (int) GetWindow()->GetChildren().GetCount())
2670 return wxACC_FAIL;
2671
ee6eb8d8 2672 wxWindow* childWindow = GetWindow()->GetChildren().Item(childId-1)->GetData();
ed5317e5
JS
2673 *child = childWindow->GetOrCreateAccessible();
2674 if (*child)
2675 return wxACC_OK;
2676 else
2677 return wxACC_FAIL;
2678}
2679
2680// Gets the parent, or NULL.
2681wxAccStatus wxWindowAccessible::GetParent(wxAccessible** parent)
2682{
2683 wxASSERT( GetWindow() != NULL );
2684 if (!GetWindow())
2685 return wxACC_FAIL;
2686
2687 wxWindow* parentWindow = GetWindow()->GetParent();
c6e2af45 2688 if (!parentWindow)
ed5317e5
JS
2689 {
2690 *parent = NULL;
2691 return wxACC_OK;
2692 }
2693 else
2694 {
2695 *parent = parentWindow->GetOrCreateAccessible();
2696 if (*parent)
2697 return wxACC_OK;
2698 else
2699 return wxACC_FAIL;
2700 }
2701}
2702
2703// Performs the default action. childId is 0 (the action for this object)
2704// or > 0 (the action for a child).
2705// Return wxACC_NOT_SUPPORTED if there is no default action for this
2706// window (e.g. an edit control).
66b9ec3d 2707wxAccStatus wxWindowAccessible::DoDefaultAction(int WXUNUSED(childId))
ed5317e5
JS
2708{
2709 wxASSERT( GetWindow() != NULL );
2710 if (!GetWindow())
2711 return wxACC_FAIL;
2712
2713 return wxACC_NOT_IMPLEMENTED;
2714}
2715
2716// Gets the default action for this object (0) or > 0 (the action for a child).
2717// Return wxACC_OK even if there is no action. actionName is the action, or the empty
2718// string if there is no action.
2719// The retrieved string describes the action that is performed on an object,
2720// not what the object does as a result. For example, a toolbar button that prints
2721// a document has a default action of "Press" rather than "Prints the current document."
66b9ec3d 2722wxAccStatus wxWindowAccessible::GetDefaultAction(int WXUNUSED(childId), wxString* WXUNUSED(actionName))
ed5317e5
JS
2723{
2724 wxASSERT( GetWindow() != NULL );
2725 if (!GetWindow())
2726 return wxACC_FAIL;
2727
2728 return wxACC_NOT_IMPLEMENTED;
2729}
2730
2731// Returns the description for this object or a child.
66b9ec3d 2732wxAccStatus wxWindowAccessible::GetDescription(int WXUNUSED(childId), wxString* description)
ed5317e5
JS
2733{
2734 wxASSERT( GetWindow() != NULL );
2735 if (!GetWindow())
2736 return wxACC_FAIL;
2737
2aefc528
JS
2738 wxString ht(GetWindow()->GetHelpText());
2739 if (!ht.IsEmpty())
2740 {
2741 *description = ht;
2742 return wxACC_OK;
2743 }
ed5317e5
JS
2744 return wxACC_NOT_IMPLEMENTED;
2745}
2746
2747// Returns help text for this object or a child, similar to tooltip text.
66b9ec3d 2748wxAccStatus wxWindowAccessible::GetHelpText(int WXUNUSED(childId), wxString* helpText)
ed5317e5
JS
2749{
2750 wxASSERT( GetWindow() != NULL );
2751 if (!GetWindow())
2752 return wxACC_FAIL;
2753
2754 wxString ht(GetWindow()->GetHelpText());
2755 if (!ht.IsEmpty())
2756 {
2757 *helpText = ht;
2758 return wxACC_OK;
2759 }
2760 return wxACC_NOT_IMPLEMENTED;
2761}
2762
2763// Returns the keyboard shortcut for this object or child.
2764// Return e.g. ALT+K
66b9ec3d 2765wxAccStatus wxWindowAccessible::GetKeyboardShortcut(int WXUNUSED(childId), wxString* WXUNUSED(shortcut))
ed5317e5
JS
2766{
2767 wxASSERT( GetWindow() != NULL );
2768 if (!GetWindow())
2769 return wxACC_FAIL;
2770
2771 return wxACC_NOT_IMPLEMENTED;
2772}
2773
2774// Returns a role constant.
2775wxAccStatus wxWindowAccessible::GetRole(int childId, wxAccRole* role)
2776{
2777 wxASSERT( GetWindow() != NULL );
2778 if (!GetWindow())
2779 return wxACC_FAIL;
2780
77ffb593 2781 // If a child, leave wxWidgets to call the function on the actual
2aefc528
JS
2782 // child object.
2783 if (childId > 0)
2784 return wxACC_NOT_IMPLEMENTED;
2785
2786 if (GetWindow()->IsKindOf(CLASSINFO(wxControl)))
2787 return wxACC_NOT_IMPLEMENTED;
2788#if wxUSE_STATUSBAR
2789 if (GetWindow()->IsKindOf(CLASSINFO(wxStatusBar)))
2790 return wxACC_NOT_IMPLEMENTED;
2791#endif
2792#if wxUSE_TOOLBAR
2793 if (GetWindow()->IsKindOf(CLASSINFO(wxToolBar)))
2794 return wxACC_NOT_IMPLEMENTED;
2795#endif
2796
2797 //*role = wxROLE_SYSTEM_CLIENT;
2798 *role = wxROLE_SYSTEM_CLIENT;
2799 return wxACC_OK;
2800
66b9ec3d 2801 #if 0
ed5317e5 2802 return wxACC_NOT_IMPLEMENTED;
66b9ec3d 2803 #endif
ed5317e5
JS
2804}
2805
2806// Returns a state constant.
2807wxAccStatus wxWindowAccessible::GetState(int childId, long* state)
2808{
2809 wxASSERT( GetWindow() != NULL );
2810 if (!GetWindow())
2811 return wxACC_FAIL;
2812
77ffb593 2813 // If a child, leave wxWidgets to call the function on the actual
2aefc528
JS
2814 // child object.
2815 if (childId > 0)
2816 return wxACC_NOT_IMPLEMENTED;
2817
2818 if (GetWindow()->IsKindOf(CLASSINFO(wxControl)))
2819 return wxACC_NOT_IMPLEMENTED;
2820
2821#if wxUSE_STATUSBAR
2822 if (GetWindow()->IsKindOf(CLASSINFO(wxStatusBar)))
2823 return wxACC_NOT_IMPLEMENTED;
2824#endif
2825#if wxUSE_TOOLBAR
2826 if (GetWindow()->IsKindOf(CLASSINFO(wxToolBar)))
2827 return wxACC_NOT_IMPLEMENTED;
2828#endif
2829
2830 *state = 0;
2831 return wxACC_OK;
2832
66b9ec3d 2833 #if 0
ed5317e5 2834 return wxACC_NOT_IMPLEMENTED;
66b9ec3d 2835 #endif
ed5317e5
JS
2836}
2837
2838// Returns a localized string representing the value for the object
2839// or child.
66b9ec3d 2840wxAccStatus wxWindowAccessible::GetValue(int WXUNUSED(childId), wxString* WXUNUSED(strValue))
ed5317e5
JS
2841{
2842 wxASSERT( GetWindow() != NULL );
2843 if (!GetWindow())
2844 return wxACC_FAIL;
2845
2846 return wxACC_NOT_IMPLEMENTED;
2847}
2848
2849// Selects the object or child.
66b9ec3d 2850wxAccStatus wxWindowAccessible::Select(int WXUNUSED(childId), wxAccSelectionFlags WXUNUSED(selectFlags))
ed5317e5
JS
2851{
2852 wxASSERT( GetWindow() != NULL );
2853 if (!GetWindow())
2854 return wxACC_FAIL;
2855
2856 return wxACC_NOT_IMPLEMENTED;
2857}
2858
2859// Gets the window with the keyboard focus.
2860// If childId is 0 and child is NULL, no object in
2861// this subhierarchy has the focus.
2862// If this object has the focus, child should be 'this'.
66b9ec3d 2863wxAccStatus wxWindowAccessible::GetFocus(int* WXUNUSED(childId), wxAccessible** WXUNUSED(child))
ed5317e5
JS
2864{
2865 wxASSERT( GetWindow() != NULL );
2866 if (!GetWindow())
2867 return wxACC_FAIL;
2868
2869 return wxACC_NOT_IMPLEMENTED;
2870}
2871
2872// Gets a variant representing the selected children
2873// of this object.
2874// Acceptable values:
2875// - a null variant (IsNull() returns TRUE)
2876// - a list variant (GetType() == wxT("list")
2877// - an integer representing the selected child element,
2878// or 0 if this object is selected (GetType() == wxT("long")
2879// - a "void*" pointer to a wxAccessible child object
66b9ec3d 2880wxAccStatus wxWindowAccessible::GetSelections(wxVariant* WXUNUSED(selections))
ed5317e5
JS
2881{
2882 wxASSERT( GetWindow() != NULL );
2883 if (!GetWindow())
2884 return wxACC_FAIL;
2885
2886 return wxACC_NOT_IMPLEMENTED;
2887}
2888
2889#endif // wxUSE_ACCESSIBILITY