]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/dialog.cpp
use the window default colours, not hardcoded ones, in OnSysColourChanged()
[wxWidgets.git] / src / mac / carbon / dialog.cpp
CommitLineData
e9576ca5
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: dialog.cpp
3// Purpose: wxDialog class
a31a5f85 4// Author: Stefan Csomor
e9576ca5 5// Modified by:
a31a5f85 6// Created: 1998-01-01
e9576ca5 7// RCS-ID: $Id$
a31a5f85 8// Copyright: (c) Stefan Csomor
e40298d5 9// Licence: wxWindows licence
e9576ca5
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "dialog.h"
14#endif
15
16#include "wx/dialog.h"
17#include "wx/utils.h"
18#include "wx/frame.h"
19#include "wx/app.h"
20#include "wx/settings.h"
21
d497dca4 22#include "wx/mac/uma.h"
519cb848 23
e9576ca5
SC
24// Lists to keep track of windows, so we can disable/enable them
25// for modal dialogs
26wxList wxModalDialogs;
fe08e597 27//wxList wxModelessWindows; // Frames and modeless dialogs
e9576ca5
SC
28extern wxList wxPendingDelete;
29
2f1ae414 30#if !USE_SHARED_LIBRARY
a15eb0a5 31IMPLEMENT_DYNAMIC_CLASS(wxDialog, wxTopLevelWindow)
e9576ca5 32
d491523b 33BEGIN_EVENT_TABLE(wxDialog, wxDialogBase)
e9576ca5
SC
34 EVT_BUTTON(wxID_OK, wxDialog::OnOK)
35 EVT_BUTTON(wxID_APPLY, wxDialog::OnApply)
36 EVT_BUTTON(wxID_CANCEL, wxDialog::OnCancel)
a15eb0a5 37
e9576ca5 38 EVT_CHAR_HOOK(wxDialog::OnCharHook)
a15eb0a5 39
e9576ca5 40 EVT_SYS_COLOUR_CHANGED(wxDialog::OnSysColourChanged)
a15eb0a5 41
e9576ca5
SC
42 EVT_CLOSE(wxDialog::OnCloseWindow)
43END_EVENT_TABLE()
44
2f1ae414 45#endif
e9576ca5
SC
46
47wxDialog::wxDialog()
48{
6ec2f254 49 m_isShown = FALSE;
e9576ca5
SC
50}
51
52bool wxDialog::Create(wxWindow *parent, wxWindowID id,
53 const wxString& title,
54 const wxPoint& pos,
55 const wxSize& size,
56 long style,
57 const wxString& name)
58{
facd6764 59 SetExtraStyle(GetExtraStyle() | wxTOPLEVEL_EX_DIALOG);
eeacbb8c 60
facd6764
SC
61 // All dialogs should really have this style
62 style |= wxTAB_TRAVERSAL;
eeacbb8c 63
0f89f2f5 64 if ( !wxTopLevelWindow::Create(parent, id, title, pos, size, style & ~(wxYES|wxOK|wxNO|wxCANCEL) , name) )
a15eb0a5 65 return FALSE;
eeacbb8c 66
facd6764 67 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE));
e9576ca5 68
e40298d5 69 return TRUE;
e9576ca5
SC
70}
71
72void wxDialog::SetModal(bool flag)
73{
e40298d5 74 if ( flag )
2f1ae414
SC
75 {
76 m_windowStyle |= wxDIALOG_MODAL;
eeacbb8c 77
2f1ae414 78 wxModelessWindows.DeleteObject(this);
643a0828
SC
79#if TARGET_CARBON
80 SetWindowModality( (WindowRef) MacGetWindowRef() , kWindowModalityAppModal , NULL ) ;
81#endif
2f1ae414
SC
82 }
83 else
84 {
85 m_windowStyle &= ~wxDIALOG_MODAL;
eeacbb8c 86
2f1ae414
SC
87 wxModelessWindows.Append(this);
88 }
e9576ca5
SC
89}
90
91wxDialog::~wxDialog()
92{
4506b24a 93 m_isBeingDeleted = TRUE;
e40298d5 94 Show(FALSE);
e9576ca5
SC
95}
96
a15eb0a5 97// By default, pressing escape cancels the dialog , on mac command-stop does the same thing
e9576ca5
SC
98void wxDialog::OnCharHook(wxKeyEvent& event)
99{
eeacbb8c 100 if (( event.m_keyCode == WXK_ESCAPE ||
e40298d5
JS
101 ( event.m_keyCode == '.' && event.MetaDown() ) )
102 && FindWindow(wxID_CANCEL) )
103 {
104 // Behaviour changed in 2.0: we'll send a Cancel message
105 // to the dialog instead of Close.
106 wxCommandEvent cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL);
107 cancelEvent.SetEventObject( this );
108 GetEventHandler()->ProcessEvent(cancelEvent);
eeacbb8c 109
e40298d5
JS
110 return;
111 }
112 // We didn't process this event.
113 event.Skip();
e9576ca5
SC
114}
115
2f1ae414 116bool wxDialog::IsModal() const
51abe921 117{
2f1ae414 118 return (GetWindowStyleFlag() & wxDIALOG_MODAL) != 0;
51abe921
SC
119}
120
2f1ae414
SC
121
122bool wxDialog::IsModalShowing() const
51abe921 123{
2f1ae414 124 return wxModalDialogs.Find((wxDialog *)this) != NULL; // const_cast
51abe921
SC
125}
126
e9576ca5
SC
127bool wxDialog::Show(bool show)
128{
2f1ae414
SC
129 if ( !wxDialogBase::Show(show) )
130 {
131 // nothing to do
132 return FALSE;
133 }
e9576ca5 134
2f1ae414
SC
135 if ( show )
136 {
137 // usually will result in TransferDataToWindow() being called
138 InitDialog();
139 }
e9576ca5 140
2f1ae414 141 if ( IsModal() )
e7549107 142 {
2f1ae414
SC
143 if ( show )
144 {
145 DoShowModal();
146 }
147 else // end of modal dialog
148 {
149 // this will cause IsModalShowing() return FALSE and our local
150 // message loop will terminate
151 wxModalDialogs.DeleteObject(this);
152 }
153 }
e7549107 154
2f1ae414 155 return TRUE;
e9576ca5
SC
156}
157
2726cac5
SC
158#if !TARGET_CARBON
159extern bool s_macIsInModalLoop ;
160#endif
161
2f1ae414 162void wxDialog::DoShowModal()
51abe921 163{
2f1ae414 164 wxCHECK_RET( !IsModalShowing(), _T("DoShowModal() called twice") );
51abe921 165
2f1ae414 166 wxModalDialogs.Append(this);
51abe921 167
2726cac5 168#if TARGET_CARBON
0f89f2f5 169// BeginAppModalStateForWindow( (WindowRef) MacGetWindowRef()) ;
2726cac5 170#else
e40298d5
JS
171 // TODO : test whether parent gets disabled
172 bool formerModal = s_macIsInModalLoop ;
173 s_macIsInModalLoop = true ;
2726cac5 174#endif
e40298d5
JS
175 while ( IsModalShowing() )
176 {
177 wxTheApp->MacDoOneEvent() ;
178 // calls process idle itself
179 }
eeacbb8c 180
2726cac5 181#if TARGET_CARBON
0f89f2f5 182// EndAppModalStateForWindow( (WindowRef) MacGetWindowRef() ) ;
2726cac5
SC
183#else
184 // TODO probably reenable the parent window if any
e40298d5 185 s_macIsInModalLoop = formerModal ;
2726cac5 186#endif
51abe921 187}
519cb848 188
2f1ae414 189
e9576ca5
SC
190// Replacement for Show(TRUE) for modal dialogs - returns return code
191int wxDialog::ShowModal()
192{
e40298d5
JS
193 if ( !IsModal() )
194 {
195 SetModal(TRUE);
196 }
81b41c03 197
e40298d5
JS
198 Show(TRUE);
199 return GetReturnCode();
e9576ca5
SC
200}
201
2f1ae414
SC
202// NB: this function (surprizingly) may be called for both modal and modeless
203// dialogs and should work for both of them
e9576ca5
SC
204void wxDialog::EndModal(int retCode)
205{
51abe921
SC
206 SetReturnCode(retCode);
207 Show(FALSE);
e9576ca5
SC
208}
209
210// Standard buttons
d208e641 211void wxDialog::OnOK(wxCommandEvent& WXUNUSED(event))
e9576ca5 212{
51abe921
SC
213 if ( Validate() && TransferDataFromWindow() )
214 {
2f1ae414 215 EndModal(wxID_OK);
51abe921 216 }
e9576ca5
SC
217}
218
d208e641 219void wxDialog::OnApply(wxCommandEvent& WXUNUSED(event))
e9576ca5 220{
51abe921
SC
221 if (Validate())
222 TransferDataFromWindow();
223 // TODO probably need to disable the Apply button until things change again
e9576ca5
SC
224}
225
d208e641 226void wxDialog::OnCancel(wxCommandEvent& WXUNUSED(event))
e9576ca5 227{
d208e641 228 EndModal(wxID_CANCEL);
7c74e7fe
SC
229}
230
d208e641 231void wxDialog::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
e9576ca5 232{
e3065973 233 // We'll send a Cancel message by default,
e9576ca5 234 // which may close the dialog.
e3065973
JS
235 // Check for looping if the Cancel event handler calls Close().
236
237 // Note that if a cancel button and handler aren't present in the dialog,
238 // nothing will happen when you close the dialog via the window manager, or
239 // via Close().
240 // We wouldn't want to destroy the dialog by default, since the dialog may have been
241 // created on the stack.
242 // However, this does mean that calling dialog->Close() won't delete the dialog
243 // unless the handler for wxID_CANCEL does so. So use Destroy() if you want to be
244 // sure to destroy the dialog.
245 // The default OnCancel (above) simply ends a modal dialog, and hides a modeless dialog.
e9576ca5
SC
246
247 static wxList closing;
51abe921 248
e9576ca5 249 if ( closing.Member(this) )
e3065973 250 return;
51abe921 251
e9576ca5 252 closing.Append(this);
51abe921 253
e3065973
JS
254 wxCommandEvent cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL);
255 cancelEvent.SetEventObject( this );
256 GetEventHandler()->ProcessEvent(cancelEvent); // This may close the dialog
e9576ca5
SC
257
258 closing.DeleteObject(this);
e9576ca5
SC
259}
260
d208e641 261void wxDialog::OnSysColourChanged(wxSysColourChangedEvent& WXUNUSED(event))
e9576ca5 262{
a756f210 263 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE));
e9576ca5
SC
264 Refresh();
265}
266