1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/dlgcmn.cpp
3 // Purpose: common (to all ports) wxDialog functions
4 // Author: Vadim Zeitlin
7 // Copyright: (c) Vadim Zeitlin
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // For compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
26 #include "wx/dialog.h"
30 #include "wx/button.h"
31 #include "wx/dcclient.h"
33 #include "wx/settings.h"
34 #include "wx/stattext.h"
36 #include "wx/containr.h"
39 #include "wx/statline.h"
40 #include "wx/sysopt.h"
41 #include "wx/module.h"
42 #include "wx/bookctrl.h"
43 #include "wx/scrolwin.h"
44 #include "wx/textwrapper.h"
45 #include "wx/modalhook.h"
48 #include "wx/display.h"
51 extern WXDLLEXPORT_DATA(const char) wxDialogNameStr
[] = "dialog";
53 // ----------------------------------------------------------------------------
55 // ----------------------------------------------------------------------------
57 wxDEFINE_FLAGS( wxDialogStyle
)
58 wxBEGIN_FLAGS( wxDialogStyle
)
59 // new style border flags, we put them first to
60 // use them for streaming out
61 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
62 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
63 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
64 wxFLAGS_MEMBER(wxBORDER_RAISED
)
65 wxFLAGS_MEMBER(wxBORDER_STATIC
)
66 wxFLAGS_MEMBER(wxBORDER_NONE
)
68 // old style border flags
69 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
70 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
71 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
72 wxFLAGS_MEMBER(wxRAISED_BORDER
)
73 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
74 wxFLAGS_MEMBER(wxNO_BORDER
)
76 // standard window styles
77 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
78 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
81 wxFLAGS_MEMBER(wxWS_EX_VALIDATE_RECURSIVELY
)
82 wxFLAGS_MEMBER(wxSTAY_ON_TOP
)
83 wxFLAGS_MEMBER(wxCAPTION
)
84 #if WXWIN_COMPATIBILITY_2_6
85 wxFLAGS_MEMBER(wxTHICK_FRAME
)
86 #endif // WXWIN_COMPATIBILITY_2_6
87 wxFLAGS_MEMBER(wxSYSTEM_MENU
)
88 wxFLAGS_MEMBER(wxRESIZE_BORDER
)
89 #if WXWIN_COMPATIBILITY_2_6
90 wxFLAGS_MEMBER(wxRESIZE_BOX
)
91 #endif // WXWIN_COMPATIBILITY_2_6
92 wxFLAGS_MEMBER(wxCLOSE_BOX
)
93 wxFLAGS_MEMBER(wxMAXIMIZE_BOX
)
94 wxFLAGS_MEMBER(wxMINIMIZE_BOX
)
95 wxEND_FLAGS( wxDialogStyle
)
97 wxIMPLEMENT_DYNAMIC_CLASS_XTI(wxDialog
, wxTopLevelWindow
, "wx/dialog.h")
99 wxBEGIN_PROPERTIES_TABLE(wxDialog
)
100 wxPROPERTY( Title
, wxString
, SetTitle
, GetTitle
, wxString(), \
101 0 /*flags*/, wxT("Helpstring"), wxT("group"))
103 wxPROPERTY_FLAGS( WindowStyle
, wxDialogStyle
, long, SetWindowStyleFlag
, \
104 GetWindowStyleFlag
, wxEMPTY_PARAMETER_VALUE
, 0 /*flags*/, \
105 wxT("Helpstring"), wxT("group")) // style
106 wxEND_PROPERTIES_TABLE()
108 wxEMPTY_HANDLERS_TABLE(wxDialog
)
110 wxCONSTRUCTOR_6( wxDialog
, wxWindow
*, Parent
, wxWindowID
, Id
, \
111 wxString
, Title
, wxPoint
, Position
, wxSize
, Size
, long, WindowStyle
)
113 // ----------------------------------------------------------------------------
115 // ----------------------------------------------------------------------------
117 BEGIN_EVENT_TABLE(wxDialogBase
, wxTopLevelWindow
)
118 EVT_BUTTON(wxID_ANY
, wxDialogBase::OnButton
)
120 EVT_CLOSE(wxDialogBase::OnCloseWindow
)
122 EVT_CHAR_HOOK(wxDialogBase::OnCharHook
)
125 wxDialogLayoutAdapter
* wxDialogBase::sm_layoutAdapter
= NULL
;
126 bool wxDialogBase::sm_layoutAdaptation
= false;
128 wxDialogBase::wxDialogBase()
131 m_affirmativeId
= wxID_OK
;
132 m_escapeId
= wxID_ANY
;
133 m_layoutAdaptationLevel
= 3;
134 m_layoutAdaptationDone
= FALSE
;
135 m_layoutAdaptationMode
= wxDIALOG_ADAPTATION_MODE_DEFAULT
;
137 // the dialogs have this flag on by default to prevent the events from the
138 // dialog controls from reaching the parent frame which is usually
139 // undesirable and can lead to unexpected and hard to find bugs
140 SetExtraStyle(GetExtraStyle() | wxWS_EX_BLOCK_EVENTS
);
143 wxWindow
*wxDialogBase::CheckIfCanBeUsedAsParent(wxWindow
*parent
) const
148 extern WXDLLIMPEXP_DATA_BASE(wxList
) wxPendingDelete
;
149 if ( wxPendingDelete
.Member(parent
) || parent
->IsBeingDeleted() )
151 // this window is being deleted and we shouldn't create any children
156 if ( parent
->HasExtraStyle(wxWS_EX_TRANSIENT
) )
158 // this window is not being deleted yet but it's going to disappear
159 // soon so still don't parent this window under it
163 if ( !parent
->IsShownOnScreen() )
165 // using hidden parent won't work correctly neither
169 // FIXME-VC6: this compiler requires an explicit const cast or it fails
171 if ( const_cast<const wxWindow
*>(parent
) == this )
173 // not sure if this can really happen but it doesn't hurt to guard
174 // against this clearly invalid situation
182 wxDialogBase::GetParentForModalDialog(wxWindow
*parent
, long style
) const
184 // creating a parent-less modal dialog will result (under e.g. wxGTK2)
185 // in an unfocused dialog, so try to find a valid parent for it unless we
186 // were explicitly asked not to
187 if ( style
& wxDIALOG_NO_PARENT
)
190 // first try the given parent
192 parent
= CheckIfCanBeUsedAsParent(wxGetTopLevelParent(parent
));
194 // then the currently active window
196 parent
= CheckIfCanBeUsedAsParent(
197 wxGetTopLevelParent(wxGetActiveWindow()));
199 // and finally the application main window
201 parent
= CheckIfCanBeUsedAsParent(wxTheApp
->GetTopWindow());
208 wxSizer
*wxDialogBase::CreateTextSizer(const wxString
& message
)
210 wxTextSizerWrapper
wrapper(this);
212 return CreateTextSizer(message
, wrapper
);
215 wxSizer
*wxDialogBase::CreateTextSizer(const wxString
& message
,
216 wxTextSizerWrapper
& wrapper
)
218 // I admit that this is complete bogus, but it makes
219 // message boxes work for pda screens temporarily..
221 const bool is_pda
= wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA
;
224 widthMax
= wxSystemSettings::GetMetric( wxSYS_SCREEN_X
) - 25;
227 return wrapper
.CreateSizer(message
, widthMax
);
230 #endif // wxUSE_STATTEXT
232 wxSizer
*wxDialogBase::CreateButtonSizer(long flags
)
234 #ifdef __SMARTPHONE__
235 wxDialog
* dialog
= (wxDialog
*) this;
237 dialog
->SetLeftMenu(wxID_OK
);
239 if ( flags
& wxCANCEL
)
240 dialog
->SetRightMenu(wxID_CANCEL
);
243 dialog
->SetLeftMenu(wxID_YES
);
246 dialog
->SetRightMenu(wxID_NO
);
249 #else // !__SMARTPHONE__
254 // PocketPC guidelines recommend for Ok/Cancel dialogs to use OK button
255 // located inside caption bar and implement Cancel functionality through
256 // Undo outside dialog. As native behaviour this will be default here but
257 // can be replaced with real wxButtons by setting the option below to 1
258 if ( (flags
& ~(wxCANCEL
|wxNO_DEFAULT
)) != wxOK
||
259 wxSystemOptions::GetOptionInt(wxT("wince.dialog.real-ok-cancel")) )
260 #endif // __POCKETPC__
262 return CreateStdDialogButtonSizer(flags
);
266 #endif // __POCKETPC__
268 #else // !wxUSE_BUTTON
272 #endif // wxUSE_BUTTON/!wxUSE_BUTTON
274 #endif // __SMARTPHONE__/!__SMARTPHONE__
277 wxSizer
*wxDialogBase::CreateSeparatedSizer(wxSizer
*sizer
)
279 // Mac Human Interface Guidelines recommend not to use static lines as
281 #if wxUSE_STATLINE && !defined(__WXMAC__)
282 wxBoxSizer
*topsizer
= new wxBoxSizer(wxVERTICAL
);
283 topsizer
->Add(new wxStaticLine(this),
284 wxSizerFlags().Expand().DoubleBorder(wxBOTTOM
));
285 topsizer
->Add(sizer
, wxSizerFlags().Expand());
287 #endif // wxUSE_STATLINE
292 wxSizer
*wxDialogBase::CreateSeparatedButtonSizer(long flags
)
294 wxSizer
*sizer
= CreateButtonSizer(flags
);
298 return CreateSeparatedSizer(sizer
);
303 wxStdDialogButtonSizer
*wxDialogBase::CreateStdDialogButtonSizer( long flags
)
305 wxStdDialogButtonSizer
*sizer
= new wxStdDialogButtonSizer();
308 wxButton
*yes
= NULL
;
313 ok
= new wxButton(this, wxID_OK
);
314 sizer
->AddButton(ok
);
317 if (flags
& wxCANCEL
)
319 wxButton
*cancel
= new wxButton(this, wxID_CANCEL
);
320 sizer
->AddButton(cancel
);
325 yes
= new wxButton(this, wxID_YES
);
326 sizer
->AddButton(yes
);
331 no
= new wxButton(this, wxID_NO
);
332 sizer
->AddButton(no
);
337 wxButton
*apply
= new wxButton(this, wxID_APPLY
);
338 sizer
->AddButton(apply
);
343 wxButton
*close
= new wxButton(this, wxID_CLOSE
);
344 sizer
->AddButton(close
);
349 wxButton
*help
= new wxButton(this, wxID_HELP
);
350 sizer
->AddButton(help
);
353 if (flags
& wxNO_DEFAULT
)
376 SetAffirmativeId(wxID_OK
);
377 else if (flags
& wxYES
)
378 SetAffirmativeId(wxID_YES
);
385 #endif // wxUSE_BUTTON
387 // ----------------------------------------------------------------------------
388 // standard buttons handling
389 // ----------------------------------------------------------------------------
391 void wxDialogBase::EndDialog(int rc
)
399 void wxDialogBase::AcceptAndClose()
401 if ( Validate() && TransferDataFromWindow() )
403 EndDialog(m_affirmativeId
);
407 void wxDialogBase::SetAffirmativeId(int affirmativeId
)
409 m_affirmativeId
= affirmativeId
;
412 void wxDialogBase::SetEscapeId(int escapeId
)
414 m_escapeId
= escapeId
;
417 bool wxDialogBase::EmulateButtonClickIfPresent(int id
)
420 wxButton
*btn
= wxDynamicCast(FindWindow(id
), wxButton
);
422 if ( !btn
|| !btn
->IsEnabled() || !btn
->IsShown() )
425 wxCommandEvent
event(wxEVT_BUTTON
, id
);
426 event
.SetEventObject(btn
);
427 btn
->GetEventHandler()->ProcessEvent(event
);
430 #else // !wxUSE_BUTTON
433 #endif // wxUSE_BUTTON/!wxUSE_BUTTON
436 bool wxDialogBase::SendCloseButtonClickEvent()
438 int idCancel
= GetEscapeId();
442 // The user doesn't want this dialog to close "implicitly".
446 // this value is special: it means translate Esc to wxID_CANCEL
447 // but if there is no such button, then fall back to wxID_OK
448 if ( EmulateButtonClickIfPresent(wxID_CANCEL
) )
450 idCancel
= GetAffirmativeId();
454 // translate Esc to button press for the button with given id
455 if ( EmulateButtonClickIfPresent(idCancel
) )
462 bool wxDialogBase::IsEscapeKey(const wxKeyEvent
& event
)
464 // For most platforms, Esc key is used to close the dialogs.
466 // Notice that we intentionally don't check for modifiers here, Shift-Esc,
467 // Alt-Esc and so on still close the dialog, typically.
468 return event
.GetKeyCode() == WXK_ESCAPE
;
471 void wxDialogBase::OnCharHook(wxKeyEvent
& event
)
473 if ( IsEscapeKey(event
) )
475 if ( SendCloseButtonClickEvent() )
477 // Skip the call to event.Skip() below, we did handle this key.
485 void wxDialogBase::OnButton(wxCommandEvent
& event
)
487 const int id
= event
.GetId();
488 if ( id
== GetAffirmativeId() )
492 else if ( id
== wxID_APPLY
)
495 TransferDataFromWindow();
497 // TODO: disable the Apply button until things change again
499 else if ( id
== GetEscapeId() ||
500 (id
== wxID_CANCEL
&& GetEscapeId() == wxID_ANY
) )
502 EndDialog(wxID_CANCEL
);
504 else // not a standard button
510 // ----------------------------------------------------------------------------
511 // compatibility methods for supporting the modality API
512 // ----------------------------------------------------------------------------
514 wxDEFINE_EVENT( wxEVT_WINDOW_MODAL_DIALOG_CLOSED
, wxWindowModalDialogEvent
);
516 IMPLEMENT_DYNAMIC_CLASS(wxWindowModalDialogEvent
, wxCommandEvent
)
518 void wxDialogBase::ShowWindowModal ()
521 SendWindowModalDialogEvent ( wxEVT_WINDOW_MODAL_DIALOG_CLOSED
);
524 void wxDialogBase::SendWindowModalDialogEvent ( wxEventType type
)
526 wxWindowModalDialogEvent
event ( type
, GetId());
527 event
.SetEventObject(this);
529 if ( !GetEventHandler()->ProcessEvent(event
) )
531 // the event is not propagated upwards to the parent automatically
532 // because the dialog is a top level window, so do it manually as
533 // in 9 cases of 10 the message must be processed by the dialog
534 // owner and not the dialog itself
535 (void)GetParent()->GetEventHandler()->ProcessEvent(event
);
540 wxDialogModality
wxDialogBase::GetModality() const
542 return IsModal() ? wxDIALOG_MODALITY_APP_MODAL
: wxDIALOG_MODALITY_NONE
;
545 // ----------------------------------------------------------------------------
546 // other event handlers
547 // ----------------------------------------------------------------------------
549 void wxDialogBase::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
551 // We'll send a Cancel message by default, which may close the dialog.
553 // Check for looping if the Cancel event handler calls Close().
555 // VZ: this is horrible and MT-unsafe. Can't we reuse some of these global
556 // lists here? don't dare to change it now, but should be done later!
557 static wxList closing
;
559 if ( closing
.Member(this) )
562 closing
.Append(this);
564 if ( !SendCloseButtonClickEvent() )
566 // If the handler didn't close the dialog (e.g. because there is no
567 // button with matching id) we still want to close it when the user
568 // clicks the "x" button in the title bar, otherwise we shouldn't even
569 // have put it there.
571 // Notice that using wxID_CLOSE might have been a better choice but we
572 // use wxID_CANCEL for compatibility reasons.
573 EndDialog(wxID_CANCEL
);
576 closing
.DeleteObject(this);
579 void wxDialogBase::OnSysColourChanged(wxSysColourChangedEvent
& event
)
582 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
));
589 /// Do the adaptation
590 bool wxDialogBase::DoLayoutAdaptation()
592 if (GetLayoutAdapter())
594 wxWindow
* focusWindow
= wxFindFocusDescendant(this); // from event.h
595 if (GetLayoutAdapter()->DoLayoutAdaptation((wxDialog
*) this))
598 focusWindow
->SetFocus();
608 /// Can we do the adaptation?
609 bool wxDialogBase::CanDoLayoutAdaptation()
611 // Check if local setting overrides the global setting
612 bool layoutEnabled
= (GetLayoutAdaptationMode() == wxDIALOG_ADAPTATION_MODE_ENABLED
) || (IsLayoutAdaptationEnabled() && (GetLayoutAdaptationMode() != wxDIALOG_ADAPTATION_MODE_DISABLED
));
614 return (layoutEnabled
&& !m_layoutAdaptationDone
&& GetLayoutAdaptationLevel() != 0 && GetLayoutAdapter() != NULL
&& GetLayoutAdapter()->CanDoLayoutAdaptation((wxDialog
*) this));
617 /// Set scrolling adapter class, returning old adapter
618 wxDialogLayoutAdapter
* wxDialogBase::SetLayoutAdapter(wxDialogLayoutAdapter
* adapter
)
620 wxDialogLayoutAdapter
* oldLayoutAdapter
= sm_layoutAdapter
;
621 sm_layoutAdapter
= adapter
;
622 return oldLayoutAdapter
;
629 IMPLEMENT_CLASS(wxDialogLayoutAdapter
, wxObject
)
631 IMPLEMENT_CLASS(wxStandardDialogLayoutAdapter
, wxDialogLayoutAdapter
)
633 // Allow for caption size on wxWidgets < 2.9
634 #if defined(__WXGTK__) && !wxCHECK_VERSION(2,9,0)
635 #define wxEXTRA_DIALOG_HEIGHT 30
637 #define wxEXTRA_DIALOG_HEIGHT 0
640 /// Indicate that adaptation should be done
641 bool wxStandardDialogLayoutAdapter::CanDoLayoutAdaptation(wxDialog
* dialog
)
643 if (dialog
->GetSizer())
645 wxSize windowSize
, displaySize
;
646 return MustScroll(dialog
, windowSize
, displaySize
) != 0;
652 bool wxStandardDialogLayoutAdapter::DoLayoutAdaptation(wxDialog
* dialog
)
654 if (dialog
->GetSizer())
657 wxBookCtrlBase
* bookContentWindow
= wxDynamicCast(dialog
->GetContentWindow(), wxBookCtrlBase
);
659 if (bookContentWindow
)
661 // If we have a book control, make all the pages (that use sizers) scrollable
662 wxWindowList windows
;
663 for (size_t i
= 0; i
< bookContentWindow
->GetPageCount(); i
++)
665 wxWindow
* page
= bookContentWindow
->GetPage(i
);
667 wxScrolledWindow
* scrolledWindow
= wxDynamicCast(page
, wxScrolledWindow
);
669 windows
.Append(scrolledWindow
);
670 else if (!scrolledWindow
&& page
->GetSizer())
672 // Create a scrolled window and reparent
673 scrolledWindow
= CreateScrolledWindow(page
);
674 wxSizer
* oldSizer
= page
->GetSizer();
676 wxSizer
* newSizer
= new wxBoxSizer(wxVERTICAL
);
677 newSizer
->Add(scrolledWindow
,1, wxEXPAND
, 0);
679 page
->SetSizer(newSizer
, false /* don't delete the old sizer */);
681 scrolledWindow
->SetSizer(oldSizer
);
683 ReparentControls(page
, scrolledWindow
);
685 windows
.Append(scrolledWindow
);
689 FitWithScrolling(dialog
, windows
);
692 #endif // wxUSE_BOOKCTRL
695 // If we have an arbitrary dialog, create a scrolling area for the main content, and a button sizer
696 // for the main buttons.
697 wxScrolledWindow
* scrolledWindow
= CreateScrolledWindow(dialog
);
699 int buttonSizerBorder
= 0;
701 // First try to find a wxStdDialogButtonSizer
702 wxSizer
* buttonSizer
= FindButtonSizer(true /* find std button sizer */, dialog
, dialog
->GetSizer(), buttonSizerBorder
);
704 // Next try to find a wxBoxSizer containing the controls
705 if (!buttonSizer
&& dialog
->GetLayoutAdaptationLevel() > wxDIALOG_ADAPTATION_STANDARD_SIZER
)
706 buttonSizer
= FindButtonSizer(false /* find ordinary sizer */, dialog
, dialog
->GetSizer(), buttonSizerBorder
);
708 // If we still don't have a button sizer, collect any 'loose' buttons in the layout
709 if (!buttonSizer
&& dialog
->GetLayoutAdaptationLevel() > wxDIALOG_ADAPTATION_ANY_SIZER
)
712 wxStdDialogButtonSizer
* stdButtonSizer
= new wxStdDialogButtonSizer
;
713 buttonSizer
= stdButtonSizer
;
715 FindLooseButtons(dialog
, stdButtonSizer
, dialog
->GetSizer(), count
);
717 stdButtonSizer
->Realize();
720 wxDELETE(buttonSizer
);
724 if (buttonSizerBorder
== 0)
725 buttonSizerBorder
= 5;
727 ReparentControls(dialog
, scrolledWindow
, buttonSizer
);
729 wxBoxSizer
* newTopSizer
= new wxBoxSizer(wxVERTICAL
);
730 wxSizer
* oldSizer
= dialog
->GetSizer();
732 dialog
->SetSizer(newTopSizer
, false /* don't delete old sizer */);
734 newTopSizer
->Add(scrolledWindow
, 1, wxEXPAND
|wxALL
, 0);
736 newTopSizer
->Add(buttonSizer
, 0, wxEXPAND
|wxALL
, buttonSizerBorder
);
738 scrolledWindow
->SetSizer(oldSizer
);
740 FitWithScrolling(dialog
, scrolledWindow
);
741 #endif // wxUSE_BUTTON
745 dialog
->SetLayoutAdaptationDone(true);
749 // Create the scrolled window
750 wxScrolledWindow
* wxStandardDialogLayoutAdapter::CreateScrolledWindow(wxWindow
* parent
)
752 wxScrolledWindow
* scrolledWindow
= new wxScrolledWindow(parent
, wxID_ANY
, wxDefaultPosition
, wxDefaultSize
, wxTAB_TRAVERSAL
|wxVSCROLL
|wxHSCROLL
|wxBORDER_NONE
);
753 return scrolledWindow
;
758 /// Find and remove the button sizer, if any
759 wxSizer
* wxStandardDialogLayoutAdapter::FindButtonSizer(bool stdButtonSizer
, wxDialog
* dialog
, wxSizer
* sizer
, int& retBorder
, int accumlatedBorder
)
761 for ( wxSizerItemList::compatibility_iterator node
= sizer
->GetChildren().GetFirst();
762 node
; node
= node
->GetNext() )
764 wxSizerItem
*item
= node
->GetData();
765 wxSizer
*childSizer
= item
->GetSizer();
769 int newBorder
= accumlatedBorder
;
770 if (item
->GetFlag() & wxALL
)
771 newBorder
+= item
->GetBorder();
773 if (stdButtonSizer
) // find wxStdDialogButtonSizer
775 wxStdDialogButtonSizer
* buttonSizer
= wxDynamicCast(childSizer
, wxStdDialogButtonSizer
);
778 sizer
->Detach(childSizer
);
779 retBorder
= newBorder
;
783 else // find a horizontal box sizer containing standard buttons
785 wxBoxSizer
* buttonSizer
= wxDynamicCast(childSizer
, wxBoxSizer
);
786 if (buttonSizer
&& IsOrdinaryButtonSizer(dialog
, buttonSizer
))
788 sizer
->Detach(childSizer
);
789 retBorder
= newBorder
;
794 wxSizer
* s
= FindButtonSizer(stdButtonSizer
, dialog
, childSizer
, retBorder
, newBorder
);
802 /// Check if this sizer contains standard buttons, and so can be repositioned in the dialog
803 bool wxStandardDialogLayoutAdapter::IsOrdinaryButtonSizer(wxDialog
* dialog
, wxBoxSizer
* sizer
)
805 if (sizer
->GetOrientation() != wxHORIZONTAL
)
808 for ( wxSizerItemList::compatibility_iterator node
= sizer
->GetChildren().GetFirst();
809 node
; node
= node
->GetNext() )
811 wxSizerItem
*item
= node
->GetData();
812 wxButton
*childButton
= wxDynamicCast(item
->GetWindow(), wxButton
);
814 if (childButton
&& IsStandardButton(dialog
, childButton
))
820 /// Check if this is a standard button
821 bool wxStandardDialogLayoutAdapter::IsStandardButton(wxDialog
* dialog
, wxButton
* button
)
823 wxWindowID id
= button
->GetId();
825 return (id
== wxID_OK
|| id
== wxID_CANCEL
|| id
== wxID_YES
|| id
== wxID_NO
|| id
== wxID_SAVE
||
826 id
== wxID_APPLY
|| id
== wxID_HELP
|| id
== wxID_CONTEXT_HELP
|| dialog
->IsMainButtonId(id
));
829 /// Find 'loose' main buttons in the existing layout and add them to the standard dialog sizer
830 bool wxStandardDialogLayoutAdapter::FindLooseButtons(wxDialog
* dialog
, wxStdDialogButtonSizer
* buttonSizer
, wxSizer
* sizer
, int& count
)
832 wxSizerItemList::compatibility_iterator node
= sizer
->GetChildren().GetFirst();
835 wxSizerItemList::compatibility_iterator next
= node
->GetNext();
836 wxSizerItem
*item
= node
->GetData();
837 wxSizer
*childSizer
= item
->GetSizer();
838 wxButton
*childButton
= wxDynamicCast(item
->GetWindow(), wxButton
);
840 if (childButton
&& IsStandardButton(dialog
, childButton
))
842 sizer
->Detach(childButton
);
843 buttonSizer
->AddButton(childButton
);
848 FindLooseButtons(dialog
, buttonSizer
, childSizer
, count
);
855 #endif // wxUSE_BUTTON
857 /// Reparent the controls to the scrolled window
858 void wxStandardDialogLayoutAdapter::ReparentControls(wxWindow
* parent
, wxWindow
* reparentTo
, wxSizer
* buttonSizer
)
860 DoReparentControls(parent
, reparentTo
, buttonSizer
);
863 void wxStandardDialogLayoutAdapter::DoReparentControls(wxWindow
* parent
, wxWindow
* reparentTo
, wxSizer
* buttonSizer
)
865 wxWindowList::compatibility_iterator node
= parent
->GetChildren().GetFirst();
868 wxWindowList::compatibility_iterator next
= node
->GetNext();
870 wxWindow
*win
= node
->GetData();
872 // Don't reparent the scrolled window or buttons in the button sizer
873 if (win
!= reparentTo
&& (!buttonSizer
|| !buttonSizer
->GetItem(win
)))
875 win
->Reparent(reparentTo
);
877 // Restore correct tab order
878 ::SetWindowPos((HWND
) win
->GetHWND(), HWND_BOTTOM
, -1, -1, -1, -1, SWP_NOMOVE
|SWP_NOSIZE
);
886 /// Find whether scrolling will be necessary for the dialog, returning wxVERTICAL, wxHORIZONTAL or both
887 int wxStandardDialogLayoutAdapter::MustScroll(wxDialog
* dialog
, wxSize
& windowSize
, wxSize
& displaySize
)
889 return DoMustScroll(dialog
, windowSize
, displaySize
);
892 /// Find whether scrolling will be necessary for the dialog, returning wxVERTICAL, wxHORIZONTAL or both
893 int wxStandardDialogLayoutAdapter::DoMustScroll(wxDialog
* dialog
, wxSize
& windowSize
, wxSize
& displaySize
)
895 wxSize minWindowSize
= dialog
->GetSizer()->GetMinSize();
896 windowSize
= dialog
->GetSize();
897 windowSize
= wxSize(wxMax(windowSize
.x
, minWindowSize
.x
), wxMax(windowSize
.y
, minWindowSize
.y
));
899 displaySize
= wxDisplay(wxDisplay::GetFromWindow(dialog
)).GetClientArea().GetSize();
901 displaySize
= wxGetClientDisplayRect().GetSize();
906 if (windowSize
.y
>= (displaySize
.y
- wxEXTRA_DIALOG_HEIGHT
))
908 if (windowSize
.x
>= displaySize
.x
)
909 flags
|= wxHORIZONTAL
;
914 // A function to fit the dialog around its contents, and then adjust for screen size.
915 // If scrolled windows are passed, scrolling is enabled in the required orientation(s).
916 bool wxStandardDialogLayoutAdapter::FitWithScrolling(wxDialog
* dialog
, wxWindowList
& windows
)
918 return DoFitWithScrolling(dialog
, windows
);
921 // A function to fit the dialog around its contents, and then adjust for screen size.
922 // If a scrolled window is passed, scrolling is enabled in the required orientation(s).
923 bool wxStandardDialogLayoutAdapter::FitWithScrolling(wxDialog
* dialog
, wxScrolledWindow
* scrolledWindow
)
925 return DoFitWithScrolling(dialog
, scrolledWindow
);
928 // A function to fit the dialog around its contents, and then adjust for screen size.
929 // If a scrolled window is passed, scrolling is enabled in the required orientation(s).
930 bool wxStandardDialogLayoutAdapter::DoFitWithScrolling(wxDialog
* dialog
, wxScrolledWindow
* scrolledWindow
)
932 wxWindowList windows
;
933 windows
.Append(scrolledWindow
);
934 return DoFitWithScrolling(dialog
, windows
);
937 bool wxStandardDialogLayoutAdapter::DoFitWithScrolling(wxDialog
* dialog
, wxWindowList
& windows
)
939 wxSizer
* sizer
= dialog
->GetSizer();
943 sizer
->SetSizeHints(dialog
);
945 wxSize windowSize
, displaySize
;
946 int scrollFlags
= DoMustScroll(dialog
, windowSize
, displaySize
);
947 int scrollBarSize
= 20;
951 int scrollBarExtraX
= 0, scrollBarExtraY
= 0;
952 bool resizeHorizontally
= (scrollFlags
& wxHORIZONTAL
) != 0;
953 bool resizeVertically
= (scrollFlags
& wxVERTICAL
) != 0;
955 if (windows
.GetCount() != 0)
957 // Allow extra for a scrollbar, assuming we resizing in one direction only.
958 if ((resizeVertically
&& !resizeHorizontally
) && (windowSize
.x
< (displaySize
.x
- scrollBarSize
)))
959 scrollBarExtraX
= scrollBarSize
;
960 if ((resizeHorizontally
&& !resizeVertically
) && (windowSize
.y
< (displaySize
.y
- scrollBarSize
)))
961 scrollBarExtraY
= scrollBarSize
;
964 wxWindowList::compatibility_iterator node
= windows
.GetFirst();
967 wxWindow
*win
= node
->GetData();
968 wxScrolledWindow
* scrolledWindow
= wxDynamicCast(win
, wxScrolledWindow
);
971 scrolledWindow
->SetScrollRate(resizeHorizontally
? 10 : 0, resizeVertically
? 10 : 0);
973 if (scrolledWindow
->GetSizer())
974 scrolledWindow
->GetSizer()->Fit(scrolledWindow
);
977 node
= node
->GetNext();
980 wxSize limitTo
= windowSize
+ wxSize(scrollBarExtraX
, scrollBarExtraY
);
981 if (resizeVertically
)
982 limitTo
.y
= displaySize
.y
- wxEXTRA_DIALOG_HEIGHT
;
983 if (resizeHorizontally
)
984 limitTo
.x
= displaySize
.x
;
986 dialog
->SetMinSize(limitTo
);
987 dialog
->SetSize(limitTo
);
989 dialog
->SetSizeHints( limitTo
.x
, limitTo
.y
, dialog
->GetMaxWidth(), dialog
->GetMaxHeight() );
996 * Module to initialise standard adapter
999 class wxDialogLayoutAdapterModule
: public wxModule
1001 DECLARE_DYNAMIC_CLASS(wxDialogLayoutAdapterModule
)
1003 wxDialogLayoutAdapterModule() {}
1004 virtual void OnExit() { delete wxDialogBase::SetLayoutAdapter(NULL
); }
1005 virtual bool OnInit() { wxDialogBase::SetLayoutAdapter(new wxStandardDialogLayoutAdapter
); return true; }
1008 IMPLEMENT_DYNAMIC_CLASS(wxDialogLayoutAdapterModule
, wxModule
)