1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/os2/dialog.cpp
3 // Purpose: wxDialog class
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
15 #include "wx/dialog.h"
21 #include "wx/settings.h"
26 #include "wx/os2/private.h"
27 #include "wx/evtloop.h"
28 #include "wx/ptr_scpd.h"
30 #define wxDIALOG_DEFAULT_X 300
31 #define wxDIALOG_DEFAULT_Y 300
33 #define wxDIALOG_DEFAULT_WIDTH 500
34 #define wxDIALOG_DEFAULT_HEIGHT 500
36 IMPLEMENT_DYNAMIC_CLASS(wxDialog
, wxTopLevelWindow
)
38 BEGIN_EVENT_TABLE(wxDialog
, wxDialogBase
)
39 EVT_BUTTON(wxID_OK
, wxDialog::OnOK
)
40 EVT_BUTTON(wxID_APPLY
, wxDialog::OnApply
)
41 EVT_BUTTON(wxID_CANCEL
, wxDialog::OnCancel
)
42 EVT_SYS_COLOUR_CHANGED(wxDialog::OnSysColourChanged
)
44 EVT_CLOSE(wxDialog::OnCloseWindow
)
47 // ----------------------------------------------------------------------------
49 // ----------------------------------------------------------------------------
51 // this is simply a container for any data we need to implement modality which
52 // allows us to avoid changing wxDialog each time the implementation changes
53 class wxDialogModalData
56 wxDialogModalData(wxDialog
*dialog
) : m_evtLoop(dialog
) { }
69 wxModalEventLoop m_evtLoop
;
72 wxDEFINE_TIED_SCOPED_PTR_TYPE(wxDialogModalData
);
74 // ============================================================================
76 // ============================================================================
78 // ----------------------------------------------------------------------------
79 // wxDialog construction
80 // ----------------------------------------------------------------------------
84 m_pOldFocus
= (wxWindow
*)NULL
;
86 m_pWindowDisabler
= (wxWindowDisabler
*)NULL
;
88 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
));
89 } // end of wxDialog::Init
91 bool wxDialog::Create( wxWindow
* pParent
,
93 const wxString
& rsTitle
,
97 const wxString
& rsName
)
100 SetExtraStyle(GetExtraStyle() | wxTOPLEVEL_EX_DIALOG
);
103 // Save focus before doing anything which can potentially change it
105 m_pOldFocus
= FindFocus();
108 // All dialogs should really have this style
110 lStyle
|= wxTAB_TRAVERSAL
;
112 if (!wxTopLevelWindow::Create( pParent
122 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
125 // Must defer setting the title until after dialog is created and sized
127 if (!rsTitle
.IsNull())
130 } // end of wxDialog::Create
132 #if WXWIN_COMPATIBILITY_2_6
135 wxDialog::wxDialog(wxWindow
*parent
,
136 const wxString
& title
,
137 bool WXUNUSED(modal
),
143 const wxString
& name
)
147 Create(parent
, wxID_ANY
, title
, wxPoint(x
, y
), wxSize(w
, h
), style
, name
);
150 void wxDialog::SetModal(bool WXUNUSED(bFlag
))
152 // nothing to do, obsolete method
153 } // end of wxDialog::SetModal
155 #endif // WXWIN_COMPATIBILITY_2_6
157 wxDialog::~wxDialog()
159 m_isBeingDeleted
= true;
161 // this will also reenable all the other windows for a modal dialog
163 } // end of wxDialog::~wxDialog
165 // ----------------------------------------------------------------------------
166 // showing the dialogs
167 // ----------------------------------------------------------------------------
169 #if WXWIN_COMPATIBILITY_2_6
171 bool wxDialog::IsModalShowing() const
174 } // end of wxDialog::IsModalShowing
176 #endif // WXWIN_COMPATIBILITY_2_6
178 wxWindow
*wxDialog::FindSuitableParent() const
180 // first try to use the currently active window
181 HWND hwndFg
= ::WinQueryActiveWindow(HWND_DESKTOP
);
182 wxWindow
*parent
= hwndFg
? wxFindWinFromHandle((WXHWND
)hwndFg
)
186 // next try the main app window
187 parent
= wxTheApp
->GetTopWindow();
190 // finally, check if the parent we found is really suitable
191 if ( !parent
|| parent
== (wxWindow
*)this || !parent
->IsShown() )
193 // don't use this one
200 bool wxDialog::Show( bool bShow
)
202 if ( bShow
== IsShown() )
205 if (!bShow
&& m_modalData
)
207 // we need to do this before calling wxDialogBase version because if we
208 // had disabled other app windows, they must be reenabled right now as
209 // if they stay disabled Windows will activate another window (one
210 // which is enabled, anyhow) when we're hidden in the base class Show()
211 // and we will lose activation
212 m_modalData
->ExitLoop();
214 if (m_pWindowDisabler
)
216 delete m_pWindowDisabler
;
217 m_pWindowDisabler
= NULL
;
224 // this usually will result in TransferDataToWindow() being called
225 // which will change the controls values so do it before showing as
226 // otherwise we could have some flicker
230 wxDialogBase::Show(bShow
);
232 wxString title
= GetTitle();
234 ::WinSetWindowText((HWND
)GetHwnd(), (PSZ
)title
.c_str());
238 // dialogs don't get WM_SIZE message after creation unlike most (all?)
239 // other windows and so could start their life not laid out correctly
240 // if we didn't call Layout() from here
242 // NB: normally we should call it just the first time but doing it
243 // every time is simpler than keeping a flag
248 } // end of wxDialog::Show
251 // Replacement for Show(true) for modal dialogs - returns return code
253 int wxDialog::ShowModal()
255 wxASSERT_MSG( !IsModal(), _T("wxDialog::ShowModal() reentered?") );
257 m_endModalCalled
= false;
261 // EndModal may have been called from InitDialog handler (called from
262 // inside Show()), which would cause an infinite loop if we didn't take it
264 if ( !m_endModalCalled
)
266 // modal dialog needs a parent window, so try to find one
267 wxWindow
*parent
= GetParent();
270 parent
= FindSuitableParent();
273 // remember where the focus was
274 wxWindow
*oldFocus
= m_pOldFocus
;
277 // VZ: do we really want to do this?
281 // We have to remember the HWND because we need to check
282 // the HWND still exists (oldFocus can be garbage when the dialog
283 // exits, if it has been destroyed)
284 HWND hwndOldFocus
= oldFocus
? GetHwndOf(oldFocus
) : NULL
;
288 // Before entering the modal loop, reset the "is in OnIdle()" flag (see
289 // comment in app.cpp)
291 extern bool gbInOnIdle
;
292 bool bWasInOnIdle
= gbInOnIdle
;
296 // enter and run the modal loop
298 wxDialogModalDataTiedPtr
modalData(&m_modalData
,
299 new wxDialogModalData(this));
300 modalData
->RunLoop();
302 gbInOnIdle
= bWasInOnIdle
;
305 // Note that this code MUST NOT access the dialog object's data
306 // in case the object has been deleted (which will be the case
307 // for a modal dialog that has been destroyed before calling EndModal).
308 if ( oldFocus
&& (oldFocus
!= this) && ::WinIsWindow(vHabmain
, hwndOldFocus
))
310 // This is likely to prove that the object still exists
311 if (wxFindWinFromHandle((WXHWND
) hwndOldFocus
) == oldFocus
)
312 oldFocus
->SetFocus();
316 return GetReturnCode();
317 } // end of wxDialog::ShowModal
319 void wxDialog::EndModal(
323 wxASSERT_MSG( IsModal(), _T("EndModal() called for non modal dialog") );
325 m_endModalCalled
= true;
326 SetReturnCode(nRetCode
);
329 } // end of wxDialog::EndModal
331 MRESULT
wxDialog::OS2WindowProc( WXUINT uMessage
, WXWPARAM wParam
, WXLPARAM lParam
)
334 bool bProcessed
= false;
340 // If we can't close, tell the system that we processed the
341 // message - otherwise it would close us
343 bProcessed
= !Close();
348 rc
= wxWindow::OS2WindowProc( uMessage
353 } // end of wxDialog::OS2WindowProc