| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: src/os2/dialog.cpp |
| 3 | // Purpose: wxDialog class |
| 4 | // Author: David Webster |
| 5 | // Modified by: |
| 6 | // Created: 10/14/99 |
| 7 | // RCS-ID: $Id$ |
| 8 | // Copyright: (c) David Webster |
| 9 | // Licence: wxWindows licence |
| 10 | ///////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | // For compilers that support precompilation, includes "wx.h". |
| 13 | #include "wx/wxprec.h" |
| 14 | |
| 15 | #include "wx/dialog.h" |
| 16 | |
| 17 | #ifndef WX_PRECOMP |
| 18 | #include "wx/utils.h" |
| 19 | #include "wx/frame.h" |
| 20 | #include "wx/app.h" |
| 21 | #include "wx/settings.h" |
| 22 | #include "wx/intl.h" |
| 23 | #include "wx/log.h" |
| 24 | #endif |
| 25 | |
| 26 | #include "wx/os2/private.h" |
| 27 | #include "wx/evtloop.h" |
| 28 | #include "wx/scopedptr.h" |
| 29 | |
| 30 | #define wxDIALOG_DEFAULT_X 300 |
| 31 | #define wxDIALOG_DEFAULT_Y 300 |
| 32 | |
| 33 | #define wxDIALOG_DEFAULT_WIDTH 500 |
| 34 | #define wxDIALOG_DEFAULT_HEIGHT 500 |
| 35 | |
| 36 | IMPLEMENT_DYNAMIC_CLASS(wxDialog, wxTopLevelWindow) |
| 37 | |
| 38 | // ---------------------------------------------------------------------------- |
| 39 | // wxDialogModalData |
| 40 | // ---------------------------------------------------------------------------- |
| 41 | |
| 42 | // this is simply a container for any data we need to implement modality which |
| 43 | // allows us to avoid changing wxDialog each time the implementation changes |
| 44 | class wxDialogModalData |
| 45 | { |
| 46 | public: |
| 47 | wxDialogModalData(wxDialog *dialog) : m_evtLoop(dialog) { } |
| 48 | |
| 49 | void RunLoop() |
| 50 | { |
| 51 | m_evtLoop.Run(); |
| 52 | } |
| 53 | |
| 54 | void ExitLoop() |
| 55 | { |
| 56 | m_evtLoop.Exit(); |
| 57 | } |
| 58 | |
| 59 | private: |
| 60 | wxModalEventLoop m_evtLoop; |
| 61 | }; |
| 62 | |
| 63 | wxDEFINE_TIED_SCOPED_PTR_TYPE(wxDialogModalData); |
| 64 | |
| 65 | // ============================================================================ |
| 66 | // implementation |
| 67 | // ============================================================================ |
| 68 | |
| 69 | // ---------------------------------------------------------------------------- |
| 70 | // wxDialog construction |
| 71 | // ---------------------------------------------------------------------------- |
| 72 | |
| 73 | void wxDialog::Init() |
| 74 | { |
| 75 | m_pOldFocus = NULL; |
| 76 | m_isShown = false; |
| 77 | m_pWindowDisabler = NULL; |
| 78 | m_modalData = NULL; |
| 79 | SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE)); |
| 80 | } // end of wxDialog::Init |
| 81 | |
| 82 | bool wxDialog::Create( wxWindow* pParent, |
| 83 | wxWindowID vId, |
| 84 | const wxString& rsTitle, |
| 85 | const wxPoint& rPos, |
| 86 | const wxSize& rSize, |
| 87 | long lStyle, |
| 88 | const wxString& rsName ) |
| 89 | { |
| 90 | Init(); |
| 91 | SetExtraStyle(GetExtraStyle() | wxTOPLEVEL_EX_DIALOG); |
| 92 | |
| 93 | // |
| 94 | // Save focus before doing anything which can potentially change it |
| 95 | // |
| 96 | m_pOldFocus = FindFocus(); |
| 97 | |
| 98 | // |
| 99 | // All dialogs should really have this style |
| 100 | // |
| 101 | lStyle |= wxTAB_TRAVERSAL; |
| 102 | |
| 103 | if (!wxTopLevelWindow::Create( pParent |
| 104 | ,vId |
| 105 | ,rsTitle |
| 106 | ,rPos |
| 107 | ,rSize |
| 108 | ,lStyle |
| 109 | ,rsName |
| 110 | )) |
| 111 | return false; |
| 112 | |
| 113 | SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT)); |
| 114 | |
| 115 | // |
| 116 | // Must defer setting the title until after dialog is created and sized |
| 117 | // |
| 118 | if (!rsTitle.IsNull()) |
| 119 | SetTitle(rsTitle); |
| 120 | return true; |
| 121 | } // end of wxDialog::Create |
| 122 | |
| 123 | #if WXWIN_COMPATIBILITY_2_6 |
| 124 | |
| 125 | // deprecated ctor |
| 126 | wxDialog::wxDialog(wxWindow *parent, |
| 127 | const wxString& title, |
| 128 | bool WXUNUSED(modal), |
| 129 | int x, |
| 130 | int y, |
| 131 | int w, |
| 132 | int h, |
| 133 | long style, |
| 134 | const wxString& name) |
| 135 | { |
| 136 | Init(); |
| 137 | |
| 138 | Create(parent, wxID_ANY, title, wxPoint(x, y), wxSize(w, h), style, name); |
| 139 | } |
| 140 | |
| 141 | void wxDialog::SetModal(bool WXUNUSED(bFlag)) |
| 142 | { |
| 143 | // nothing to do, obsolete method |
| 144 | } // end of wxDialog::SetModal |
| 145 | |
| 146 | #endif // WXWIN_COMPATIBILITY_2_6 |
| 147 | |
| 148 | wxDialog::~wxDialog() |
| 149 | { |
| 150 | SendDestroyEvent(); |
| 151 | |
| 152 | // this will also reenable all the other windows for a modal dialog |
| 153 | Show(false); |
| 154 | } // end of wxDialog::~wxDialog |
| 155 | |
| 156 | // ---------------------------------------------------------------------------- |
| 157 | // showing the dialogs |
| 158 | // ---------------------------------------------------------------------------- |
| 159 | |
| 160 | #if WXWIN_COMPATIBILITY_2_6 |
| 161 | |
| 162 | bool wxDialog::IsModalShowing() const |
| 163 | { |
| 164 | return IsModal(); |
| 165 | } // end of wxDialog::IsModalShowing |
| 166 | |
| 167 | #endif // WXWIN_COMPATIBILITY_2_6 |
| 168 | |
| 169 | bool wxDialog::Show( bool bShow ) |
| 170 | { |
| 171 | if ( bShow == IsShown() ) |
| 172 | return false; |
| 173 | |
| 174 | if (!bShow && m_modalData ) |
| 175 | { |
| 176 | // we need to do this before calling wxDialogBase version because if we |
| 177 | // had disabled other app windows, they must be reenabled right now as |
| 178 | // if they stay disabled Windows will activate another window (one |
| 179 | // which is enabled, anyhow) when we're hidden in the base class Show() |
| 180 | // and we will lose activation |
| 181 | m_modalData->ExitLoop(); |
| 182 | #if 0 |
| 183 | if (m_pWindowDisabler) |
| 184 | { |
| 185 | delete m_pWindowDisabler; |
| 186 | m_pWindowDisabler = NULL; |
| 187 | } |
| 188 | #endif |
| 189 | } |
| 190 | |
| 191 | if (bShow) |
| 192 | { |
| 193 | if (CanDoLayoutAdaptation()) |
| 194 | DoLayoutAdaptation(); |
| 195 | |
| 196 | // this usually will result in TransferDataToWindow() being called |
| 197 | // which will change the controls values so do it before showing as |
| 198 | // otherwise we could have some flicker |
| 199 | InitDialog(); |
| 200 | } |
| 201 | |
| 202 | wxDialogBase::Show(bShow); |
| 203 | |
| 204 | wxString title = GetTitle(); |
| 205 | if (!title.empty()) |
| 206 | ::WinSetWindowText((HWND)GetHwnd(), title.c_str()); |
| 207 | |
| 208 | if ( bShow ) |
| 209 | { |
| 210 | // dialogs don't get WM_SIZE message after creation unlike most (all?) |
| 211 | // other windows and so could start their life not laid out correctly |
| 212 | // if we didn't call Layout() from here |
| 213 | // |
| 214 | // NB: normally we should call it just the first time but doing it |
| 215 | // every time is simpler than keeping a flag |
| 216 | Layout(); |
| 217 | } |
| 218 | |
| 219 | return true; |
| 220 | } // end of wxDialog::Show |
| 221 | |
| 222 | // |
| 223 | // Replacement for Show(true) for modal dialogs - returns return code |
| 224 | // |
| 225 | int wxDialog::ShowModal() |
| 226 | { |
| 227 | wxASSERT_MSG( !IsModal(), _T("wxDialog::ShowModal() reentered?") ); |
| 228 | |
| 229 | m_endModalCalled = false; |
| 230 | |
| 231 | Show(); |
| 232 | |
| 233 | // EndModal may have been called from InitDialog handler (called from |
| 234 | // inside Show()), which would cause an infinite loop if we didn't take it |
| 235 | // into account |
| 236 | if ( !m_endModalCalled ) |
| 237 | { |
| 238 | // modal dialog needs a parent window, so try to find one |
| 239 | wxWindow * const parent = GetParentForModalDialog(); |
| 240 | |
| 241 | // remember where the focus was |
| 242 | wxWindow *oldFocus = m_pOldFocus; |
| 243 | if ( !oldFocus ) |
| 244 | { |
| 245 | // VZ: do we really want to do this? |
| 246 | oldFocus = parent; |
| 247 | } |
| 248 | |
| 249 | // We have to remember the HWND because we need to check |
| 250 | // the HWND still exists (oldFocus can be garbage when the dialog |
| 251 | // exits, if it has been destroyed) |
| 252 | HWND hwndOldFocus = oldFocus ? GetHwndOf(oldFocus) : NULL; |
| 253 | |
| 254 | |
| 255 | // |
| 256 | // Before entering the modal loop, reset the "is in OnIdle()" flag (see |
| 257 | // comment in app.cpp) |
| 258 | // |
| 259 | extern bool gbInOnIdle; |
| 260 | bool bWasInOnIdle = gbInOnIdle; |
| 261 | |
| 262 | gbInOnIdle = false; |
| 263 | |
| 264 | // enter and run the modal loop |
| 265 | { |
| 266 | wxDialogModalDataTiedPtr modalData(&m_modalData, |
| 267 | new wxDialogModalData(this)); |
| 268 | modalData->RunLoop(); |
| 269 | } |
| 270 | gbInOnIdle = bWasInOnIdle; |
| 271 | |
| 272 | // and restore focus |
| 273 | // Note that this code MUST NOT access the dialog object's data |
| 274 | // in case the object has been deleted (which will be the case |
| 275 | // for a modal dialog that has been destroyed before calling EndModal). |
| 276 | if ( oldFocus && (oldFocus != this) && ::WinIsWindow(vHabmain, hwndOldFocus)) |
| 277 | { |
| 278 | // This is likely to prove that the object still exists |
| 279 | if (wxFindWinFromHandle((WXHWND) hwndOldFocus) == oldFocus) |
| 280 | oldFocus->SetFocus(); |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | return GetReturnCode(); |
| 285 | } // end of wxDialog::ShowModal |
| 286 | |
| 287 | void wxDialog::EndModal( |
| 288 | int nRetCode |
| 289 | ) |
| 290 | { |
| 291 | wxASSERT_MSG( IsModal(), _T("EndModal() called for non modal dialog") ); |
| 292 | |
| 293 | m_endModalCalled = true; |
| 294 | SetReturnCode(nRetCode); |
| 295 | |
| 296 | Hide(); |
| 297 | } // end of wxDialog::EndModal |
| 298 | |
| 299 | MRESULT wxDialog::OS2WindowProc( WXUINT uMessage, WXWPARAM wParam, WXLPARAM lParam ) |
| 300 | { |
| 301 | MRESULT rc = 0; |
| 302 | bool bProcessed = false; |
| 303 | |
| 304 | switch (uMessage) |
| 305 | { |
| 306 | case WM_CLOSE: |
| 307 | // |
| 308 | // If we can't close, tell the system that we processed the |
| 309 | // message - otherwise it would close us |
| 310 | // |
| 311 | bProcessed = !Close(); |
| 312 | break; |
| 313 | } |
| 314 | |
| 315 | if (!bProcessed) |
| 316 | rc = wxWindow::OS2WindowProc( uMessage |
| 317 | ,wParam |
| 318 | ,lParam |
| 319 | ); |
| 320 | return rc; |
| 321 | } // end of wxDialog::OS2WindowProc |