1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxDialog class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "dialog.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
24 #include "wx/dialog.h"
28 #include "wx/settings.h"
31 #include "wx/msw/private.h"
33 #if USE_COMMON_DIALOGS
37 #define wxDIALOG_DEFAULT_X 300
38 #define wxDIALOG_DEFAULT_Y 300
40 // Lists to keep track of windows, so we can disable/enable them
42 wxList wxModalDialogs
;
43 wxList wxModelessWindows
; // Frames and modeless dialogs
44 extern wxList wxPendingDelete
;
46 #if !USE_SHARED_LIBRARY
47 IMPLEMENT_DYNAMIC_CLASS(wxDialog
, wxPanel
)
49 BEGIN_EVENT_TABLE(wxDialog
, wxPanel
)
50 EVT_BUTTON(wxID_OK
, wxDialog::OnOK
)
51 EVT_BUTTON(wxID_APPLY
, wxDialog::OnApply
)
52 EVT_BUTTON(wxID_CANCEL
, wxDialog::OnCancel
)
53 EVT_CHAR_HOOK(wxDialog::OnCharHook
)
54 EVT_SYS_COLOUR_CHANGED(wxDialog::OnSysColourChanged
)
55 EVT_CLOSE(wxDialog::OnCloseWindow
)
60 long wxDialog::MSWDefWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
62 return ::CallWindowProc(CASTWNDPROC (FARPROC
) m_oldWndProc
, (HWND
) GetHWND(), (UINT
) nMsg
, (WPARAM
) wParam
, (LPARAM
) lParam
);
65 bool wxDialog::MSWProcessMessage(WXMSG
* pMsg
)
67 return (::IsDialogMessage((HWND
) GetHWND(), (MSG
*)pMsg
) != 0);
70 bool wxDialog::MSWOnClose(void)
75 wxDialog::wxDialog(void)
78 m_modalShowing
= FALSE
;
80 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
));
81 SetDefaultBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
));
84 bool wxDialog::Create(wxWindow
*parent
, const wxWindowID id
,
85 const wxString
& title
,
91 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
));
92 SetDefaultBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
));
96 wxTopLevelWindows
.Append(this);
98 // windowFont = wxTheFontList->FindOrCreateFont(11, wxSWISS, wxNORMAL, wxNORMAL);
100 if (parent
) parent
->AddChild(this);
103 m_windowId
= (int)NewControlId();
112 if (x
< 0) x
= wxDIALOG_DEFAULT_X
;
113 if (y
< 0) y
= wxDIALOG_DEFAULT_Y
;
115 m_windowStyle
= style
;
118 m_modalShowing
= FALSE
;
125 WXDWORD extendedStyle
= MakeExtendedStyle(m_windowStyle
);
126 if (m_windowStyle
& wxSTAY_ON_TOP
)
127 extendedStyle
|= WS_EX_TOPMOST
;
129 // Allows creation of dialogs with & without captions under MSWindows
130 if(style
& wxCAPTION
){
131 MSWCreate(m_windowId
, (wxWindow
*)parent
, NULL
, this, NULL
, x
, y
, width
, height
, 0, "wxCaptionDialog",
135 MSWCreate(m_windowId
, (wxWindow
*)parent
, NULL
, this, NULL
, x
, y
, width
, height
, 0, "wxNoCaptionDialog",
139 SubclassWin(GetHWND());
141 SetWindowText((HWND
) GetHWND(), (const char *)title
);
142 SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT
));
147 void wxDialog::SetModal(const bool flag
)
150 m_windowStyle
|= wxDIALOG_MODAL
;
152 if ( m_windowStyle
& wxDIALOG_MODAL
)
153 m_windowStyle
-= wxDIALOG_MODAL
;
155 wxModelessWindows
.DeleteObject(this);
157 wxModelessWindows
.Append(this);
160 wxDialog::~wxDialog()
162 m_isBeingDeleted
= TRUE
;
164 wxTopLevelWindows
.DeleteObject(this);
169 // For some reason, wxWindows can activate another task altogether
170 // when a frame is destroyed after a modal dialog has been invoked.
171 // Try to bring the parent to the top.
172 // dfgg: I moved this following line from end of function -
173 // must not call if another window is on top!!
174 // This can often happen with Close() and delayed deleting
175 if (GetParent() && GetParent()->GetHWND())
176 ::BringWindowToTop((HWND
) GetParent()->GetHWND());
179 m_modalShowing
= FALSE
;
181 ShowWindow((HWND
) GetHWND(), SW_HIDE
);
183 if ( (GetWindowStyleFlag() & wxDIALOG_MODAL
) != wxDIALOG_MODAL
)
184 wxModelessWindows
.DeleteObject(this);
188 // If this is the last top-level window, exit.
189 if (wxTheApp
&& (wxTopLevelWindows
.Number() == 0))
191 wxTheApp
->SetTopWindow(NULL
);
193 if (wxTheApp
->GetExitOnFrameDelete())
200 // By default, pressing escape cancels the dialog
201 void wxDialog::OnCharHook(wxKeyEvent
& event
)
205 if (event
.m_keyCode
== WXK_ESCAPE
)
207 // Behaviour changed in 2.0: we'll send a Cancel message
208 // to the dialog instead of Close.
209 wxCommandEvent
cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_CANCEL
);
210 cancelEvent
.SetEventObject( this );
211 GetEventHandler()->ProcessEvent(cancelEvent
);
216 // We didn't process this event.
220 void wxDialog::OnPaint(wxPaintEvent
& event
)
222 // No: if you call the default procedure, it makes
223 // the following painting code not work.
224 // wxWindow::OnPaint(event);
227 void wxDialog::Fit(void)
232 void wxDialog::Iconize(const bool WXUNUSED(iconize
))
234 // Windows dialog boxes can't be iconized
237 bool wxDialog::IsIconized(void) const
242 void wxDialog::SetSize(const int x
, const int y
, const int width
, const int height
, const int WXUNUSED(sizeFlags
))
244 wxWindow::SetSize(x
, y
, width
, height
);
247 void wxDialog::SetClientSize(const int width
, const int height
)
249 HWND hWnd
= (HWND
) GetHWND();
251 GetClientRect(hWnd
, &rect
);
254 GetWindowRect(hWnd
, &rect2
);
256 // Find the difference between the entire window (title bar and all)
257 // and the client area; add this to the new client size to move the
259 int actual_width
= rect2
.right
- rect2
.left
- rect
.right
+ width
;
260 int actual_height
= rect2
.bottom
- rect2
.top
- rect
.bottom
+ height
;
262 MoveWindow(hWnd
, rect2
.left
, rect2
.top
, actual_width
, actual_height
, TRUE
);
263 #if WXWIN_COMPATIBILITY
264 GetEventHandler()->OldOnSize(actual_width
, actual_height
);
266 wxSizeEvent
event(wxSize(actual_width
, actual_height
), m_windowId
);
267 event
.eventObject
= this;
268 GetEventHandler()->ProcessEvent(event
);
272 void wxDialog::GetPosition(int *x
, int *y
) const
274 HWND hWnd
= (HWND
) GetHWND();
276 GetWindowRect(hWnd
, &rect
);
282 bool wxDialog::IsShown(void) const
287 bool wxDialog::Show(const bool show
)
294 bool modal
= ((GetWindowStyleFlag() & wxDIALOG_MODAL
) == wxDIALOG_MODAL
) ;
296 #if WXGARBAGE_COLLECTION_ON /* MATTHEW: GC */
299 if (!wxModelessWindows
.Member(this))
300 wxModelessWindows
.Append(this);
302 wxModelessWindows
.DeleteObject(this);
305 if (!wxTopLevelWindows
.Member(this))
306 wxTopLevelWindows
.Append(this);
308 wxTopLevelWindows
.DeleteObject(this);
315 wxList DisabledWindows
;
318 BringWindowToTop((HWND
) GetHWND());
322 m_modalShowing
= TRUE
;
323 wxNode
*node
= wxModalDialogs
.First();
326 wxDialog
*box
= (wxDialog
*)node
->Data();
328 ::EnableWindow((HWND
) box
->GetHWND(), FALSE
);
331 node
= wxModelessWindows
.First();
334 wxWindow
*win
= (wxWindow
*)node
->Data();
335 if (::IsWindowEnabled((HWND
) win
->GetHWND()))
337 ::EnableWindow((HWND
) win
->GetHWND(), FALSE
);
338 DisabledWindows
.Append(win
);
343 ShowWindow((HWND
) GetHWND(), SW_SHOW
);
344 EnableWindow((HWND
) GetHWND(), TRUE
);
345 BringWindowToTop((HWND
) GetHWND());
347 if (!wxModalDialogs
.Member(this))
348 wxModalDialogs
.Append(this);
351 // Must test whether this dialog still exists: we may not process
352 // a message before the deletion.
353 while (wxModalDialogs
.Member(this) && m_modalShowing
&& GetMessage(&msg
, NULL
, 0, 0))
355 if (!IsDialogMessage((HWND
) GetHWND(), &msg
))
357 TranslateMessage(&msg
);
358 DispatchMessage(&msg
);
360 if (m_modalShowing
&& !::PeekMessage(&msg
, 0, 0, 0, PM_NOREMOVE
))
361 // dfgg: NB MUST test m_modalShowing again as the message loop could have triggered
362 // a Show(FALSE) in the mean time!!!
363 // Without the test, we might delete the dialog before the end of modal showing.
365 while (wxTheApp
->ProcessIdle() && m_modalShowing
)
367 // Keep going until we decide we've done enough
371 // dfgg: now must specifically re-enable all other app windows that we disabled earlier
372 node
=DisabledWindows
.First();
374 wxWindow
* win
= (wxWindow
*) node
->Data();
375 HWND hWnd
= (HWND
) win
->GetHWND();
376 if (::IsWindow(hWnd
) && (wxModalDialogs
.Member(win
) || wxModelessWindows
.Member(win
) ))
377 ::EnableWindow(hWnd
,TRUE
);
383 wxModalDialogs
.DeleteObject(this);
385 wxNode
*last
= wxModalDialogs
.Last();
387 // If there's still a modal dialog active, we
388 // enable it, else we enable all modeless windows
391 wxDialog
*box
= (wxDialog
*)last
->Data();
392 HWND hwnd
= (HWND
) box
->GetHWND();
393 if (box
->m_winEnabled
)
394 EnableWindow(hwnd
, TRUE
);
395 BringWindowToTop(hwnd
);
399 wxNode
*node
= wxModelessWindows
.First();
402 wxWindow
*win
= (wxWindow
*)node
->Data();
403 HWND hwnd
= (HWND
) win
->GetHWND();
404 // Only enable again if not user-disabled.
405 if (win
->IsUserEnabled())
406 EnableWindow(hwnd
, TRUE
);
410 // Try to highlight the correct window (the parent)
414 hWndParent
= (HWND
) GetParent()->GetHWND();
416 ::BringWindowToTop(hWndParent
);
418 ShowWindow((HWND
) GetHWND(), SW_HIDE
);
419 m_modalShowing
= FALSE
;
426 ShowWindow((HWND
) GetHWND(), SW_SHOW
);
427 BringWindowToTop((HWND
) GetHWND());
431 // Try to highlight the correct window (the parent)
435 hWndParent
= (HWND
) GetParent()->GetHWND();
437 ::BringWindowToTop(hWndParent
);
439 ShowWindow((HWND
) GetHWND(), SW_HIDE
);
445 void wxDialog::SetTitle(const wxString
& title
)
447 SetWindowText((HWND
) GetHWND(), (const char *)title
);
450 wxString
wxDialog::GetTitle(void) const
452 GetWindowText((HWND
) GetHWND(), wxBuffer
, 1000);
453 return wxString(wxBuffer
);
456 void wxDialog::Centre(const int direction
)
458 int x_offset
,y_offset
;
459 int display_width
, display_height
;
460 int width
, height
, x
, y
;
462 if (direction
& wxCENTER_FRAME
)
464 frame
= (wxFrame
*)GetParent() ;
467 frame
->GetPosition(&x_offset
,&y_offset
) ;
468 frame
->GetSize(&display_width
,&display_height
) ;
476 wxDisplaySize(&display_width
, &display_height
);
482 GetSize(&width
, &height
);
485 if (direction
& wxHORIZONTAL
)
486 x
= (int)((display_width
- width
)/2);
487 if (direction
& wxVERTICAL
)
488 y
= (int)((display_height
- height
)/2);
490 SetSize(x
+x_offset
, y
+y_offset
, width
, height
);
493 // Replacement for Show(TRUE) for modal dialogs - returns return code
494 int wxDialog::ShowModal(void)
497 return GetReturnCode();
500 void wxDialog::EndModal(int retCode
)
502 SetReturnCode(retCode
);
506 // Define for each class of dialog and control
507 WXHBRUSH
wxDialog::OnCtlColor(const WXHDC pDC
, const WXHWND pWnd
, const WXUINT nCtlColor
,
508 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
511 HBRUSH hbrush
= Ctl3dCtlColorEx(message
, wParam
, lParam
);
512 return (WXHBRUSH
) hbrush
;
519 void wxDialog::OnOK(wxCommandEvent
& event
)
521 if ( Validate() && TransferDataFromWindow() )
527 SetReturnCode(wxID_OK
);
533 void wxDialog::OnApply(wxCommandEvent
& event
)
536 TransferDataFromWindow();
537 // TODO probably need to disable the Apply button until things change again
540 void wxDialog::OnCancel(wxCommandEvent
& event
)
543 EndModal(wxID_CANCEL
);
546 SetReturnCode(wxID_CANCEL
);
551 bool wxDialog::OnClose(void)
553 // Behaviour changed in 2.0: we'll send a Cancel message by default,
554 // which may close the dialog.
555 // Check for looping if the Cancel event handler calls Close()
557 static wxList closing
;
559 if ( closing
.Member(this) )
562 closing
.Append(this);
564 wxCommandEvent
cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_CANCEL
);
565 cancelEvent
.SetEventObject( this );
566 GetEventHandler()->ProcessEvent(cancelEvent
);
568 closing
.DeleteObject(this);
573 void wxDialog::OnCloseWindow(wxCloseEvent
& event
)
576 if ( GetEventHandler()->OnClose() || event
.GetForce())
582 // Destroy the window (delayed, if a managed window)
583 bool wxDialog::Destroy(void)
585 if (!wxPendingDelete
.Member(this))
586 wxPendingDelete
.Append(this);
590 void wxDialog::OnSysColourChanged(wxSysColourChangedEvent
& event
)
595 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
));
596 SetDefaultBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
));
601 long wxDialog::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
603 return wxWindow::MSWWindowProc(message
, wParam
, lParam
);