]> git.saurik.com Git - wxWidgets.git/blame - src/common/dlgcmn.cpp
add missing static
[wxWidgets.git] / src / common / dlgcmn.cpp
CommitLineData
e37feda2 1/////////////////////////////////////////////////////////////////////////////
f1e01716 2// Name: src/common/dlgcmn.cpp
e37feda2
VZ
3// Purpose: common (to all ports) wxDialog functions
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 28.06.99
7// RCS-ID: $Id$
8// Copyright: (c) Vadim Zeitlin
65571936 9// Licence: wxWindows licence
e37feda2
VZ
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
e37feda2
VZ
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24 #pragma hdrstop
25#endif
26
fdf565fe
WS
27#include "wx/dialog.h"
28
e37feda2 29#ifndef WX_PRECOMP
df57f6be 30 #include "wx/app.h"
f6bcfd97 31 #include "wx/button.h"
e37feda2 32 #include "wx/dcclient.h"
9f3a38fc 33 #include "wx/intl.h"
e37feda2 34 #include "wx/settings.h"
9f3a38fc 35 #include "wx/stattext.h"
92afa2b1 36 #include "wx/sizer.h"
7d9f12f3 37 #include "wx/containr.h"
e37feda2
VZ
38#endif
39
897b24cf
WS
40#include "wx/statline.h"
41#include "wx/sysopt.h"
39bc0347 42#include "wx/private/stattext.h"
897b24cf 43
5d1b4919
VZ
44
45// ----------------------------------------------------------------------------
92afa2b1 46// wxDialogBase
5d1b4919 47// ----------------------------------------------------------------------------
e37feda2 48
7d9f12f3 49BEGIN_EVENT_TABLE(wxDialogBase, wxTopLevelWindow)
a9f620da 50 EVT_BUTTON(wxID_ANY, wxDialogBase::OnButton)
2158f4d7
VZ
51
52 EVT_CLOSE(wxDialogBase::OnCloseWindow)
53
0be27418 54 EVT_CHAR_HOOK(wxDialogBase::OnCharHook)
7d9f12f3
VS
55END_EVENT_TABLE()
56
7d9f12f3
VS
57void wxDialogBase::Init()
58{
59 m_returnCode = 0;
9ceeecb9 60 m_affirmativeId = wxID_OK;
c6ece595
VZ
61 m_escapeId = wxID_ANY;
62
e4b713a2
VZ
63 // the dialogs have this flag on by default to prevent the events from the
64 // dialog controls from reaching the parent frame which is usually
65 // undesirable and can lead to unexpected and hard to find bugs
66 SetExtraStyle(GetExtraStyle() | wxWS_EX_BLOCK_EVENTS);
7d9f12f3
VS
67}
68
893f7840
VZ
69// helper of GetParentForModalDialog()
70static bool CanBeUsedAsParent(wxWindow *parent)
71{
72 extern WXDLLIMPEXP_DATA_CORE(wxList) wxPendingDelete;
73
74 return !parent->HasExtraStyle(wxWS_EX_TRANSIENT) &&
75 parent->IsShownOnScreen() &&
76 !wxPendingDelete.Member(parent) &&
9dcf65d3 77 !parent->IsBeingDeleted();
893f7840
VZ
78}
79
2229243b
VZ
80wxWindow *wxDialogBase::GetParentForModalDialog(wxWindow *parent) const
81{
82 // creating a parent-less modal dialog will result (under e.g. wxGTK2)
83 // in an unfocused dialog, so try to find a valid parent for it:
84 if ( parent )
85 parent = wxGetTopLevelParent(parent);
86
893f7840 87 if ( !parent || !CanBeUsedAsParent(parent) )
2229243b
VZ
88 parent = wxTheApp->GetTopWindow();
89
893f7840 90 if ( parent && !CanBeUsedAsParent(parent) )
2229243b
VZ
91 {
92 // can't use this one, it's going to disappear
93 parent = NULL;
94 }
95
96 return parent;
97}
98
5d1b4919 99#if wxUSE_STATTEXT
1e6feb95 100
cfd1ac21
MW
101class wxTextSizerWrapper : public wxTextWrapper
102{
103public:
104 wxTextSizerWrapper(wxWindow *win)
105 {
106 m_win = win;
107 m_hLine = 0;
108 }
109
110 wxSizer *CreateSizer(const wxString& text, int widthMax)
111 {
112 m_sizer = new wxBoxSizer(wxVERTICAL);
113 Wrap(m_win, text, widthMax);
114 return m_sizer;
115 }
116
117protected:
118 virtual void OnOutputLine(const wxString& line)
119 {
120 if ( !line.empty() )
121 {
122 m_sizer->Add(new wxStaticText(m_win, wxID_ANY, line));
123 }
124 else // empty line, no need to create a control for it
125 {
126 if ( !m_hLine )
127 m_hLine = m_win->GetCharHeight();
128
129 m_sizer->Add(5, m_hLine);
130 }
131 }
132
133private:
134 wxWindow *m_win;
135 wxSizer *m_sizer;
136 int m_hLine;
137};
138
5d1b4919
VZ
139wxSizer *wxDialogBase::CreateTextSizer(const wxString& message)
140{
2b5f62a0
VZ
141 // I admit that this is complete bogus, but it makes
142 // message boxes work for pda screens temporarily..
5d1b4919
VZ
143 int widthMax = -1;
144 const bool is_pda = wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA;
2b5f62a0
VZ
145 if (is_pda)
146 {
5d1b4919 147 widthMax = wxSystemSettings::GetMetric( wxSYS_SCREEN_X ) - 25;
2b5f62a0 148 }
68379eaf 149
5d1b4919
VZ
150 // '&' is used as accel mnemonic prefix in the wxWidgets controls but in
151 // the static messages created by CreateTextSizer() (used by wxMessageBox,
152 // for example), we don't want this special meaning, so we need to quote it
153 wxString text(message);
154 text.Replace(_T("&"), _T("&&"));
68379eaf 155
cfd1ac21 156 wxTextSizerWrapper wrapper(this);
b730516c 157
cfd1ac21
MW
158 return wrapper.CreateSizer(text, widthMax);
159}
5d1b4919 160
5d1b4919 161#endif // wxUSE_STATTEXT
1e6feb95 162
25eb10d2 163wxSizer *wxDialogBase::CreateButtonSizer(long flags)
e37feda2 164{
25eb10d2 165 wxSizer *sizer = NULL;
897b24cf 166
25eb10d2 167#ifdef __SMARTPHONE__
102c0454 168 wxDialog* dialog = (wxDialog*) this;
25eb10d2 169 if ( flags & wxOK )
102c0454 170 dialog->SetLeftMenu(wxID_OK);
102c0454 171
25eb10d2 172 if ( flags & wxCANCEL )
102c0454 173 dialog->SetRightMenu(wxID_CANCEL);
102c0454 174
25eb10d2 175 if ( flags & wxYES )
102c0454 176 dialog->SetLeftMenu(wxID_YES);
897b24cf 177
25eb10d2
VZ
178 if ( flags & wxNO )
179 dialog->SetRightMenu(wxID_NO);
897b24cf
WS
180#else // !__SMARTPHONE__
181
25eb10d2
VZ
182#if wxUSE_BUTTON
183
897b24cf 184#ifdef __POCKETPC__
25eb10d2
VZ
185 // PocketPC guidelines recommend for Ok/Cancel dialogs to use OK button
186 // located inside caption bar and implement Cancel functionality through
187 // Undo outside dialog. As native behaviour this will be default here but
188 // can be replaced with real wxButtons by setting the option below to 1
189 if ( (flags & ~(wxCANCEL|wxNO_DEFAULT)) != wxOK ||
190 wxSystemOptions::GetOptionInt(wxT("wince.dialog.real-ok-cancel")) )
191#endif // __POCKETPC__
897b24cf 192 {
25eb10d2 193 sizer = CreateStdDialogButtonSizer(flags);
897b24cf 194 }
25eb10d2 195#endif // wxUSE_BUTTON
897b24cf 196
25eb10d2 197#endif // __SMARTPHONE__/!__SMARTPHONE__
897b24cf 198
25eb10d2
VZ
199 return sizer;
200}
897b24cf 201
25eb10d2
VZ
202wxSizer *wxDialogBase::CreateSeparatedButtonSizer(long flags)
203{
204 wxSizer *sizer = CreateButtonSizer(flags);
205 if ( !sizer )
206 return NULL;
897b24cf 207
25eb10d2
VZ
208 // Mac Human Interface Guidelines recommend not to use static lines as
209 // grouping elements
210#if wxUSE_STATLINE && !defined(__WXMAC__)
211 wxBoxSizer *topsizer = new wxBoxSizer(wxVERTICAL);
212 topsizer->Add(new wxStaticLine(this),
213 wxSizerFlags().Expand().DoubleBorder(wxBOTTOM));
214 topsizer->Add(sizer, wxSizerFlags().Expand());
215 sizer = topsizer;
216#endif // wxUSE_STATLINE
897b24cf 217
897b24cf 218 return sizer;
acf2ac37 219}
68379eaf 220
897b24cf
WS
221#if wxUSE_BUTTON
222
acf2ac37
RR
223wxStdDialogButtonSizer *wxDialogBase::CreateStdDialogButtonSizer( long flags )
224{
225 wxStdDialogButtonSizer *sizer = new wxStdDialogButtonSizer();
897b24cf 226
acf2ac37 227 wxButton *ok = NULL;
acf2ac37
RR
228 wxButton *yes = NULL;
229 wxButton *no = NULL;
52069700 230
25eb10d2
VZ
231 if (flags & wxOK)
232 {
331c1816 233 ok = new wxButton(this, wxID_OK);
52069700 234 sizer->AddButton(ok);
2b5f62a0 235 }
52069700 236
25eb10d2
VZ
237 if (flags & wxCANCEL)
238 {
331c1816 239 wxButton *cancel = new wxButton(this, wxID_CANCEL);
52069700 240 sizer->AddButton(cancel);
b5b49e42 241 }
52069700 242
25eb10d2
VZ
243 if (flags & wxYES)
244 {
331c1816 245 yes = new wxButton(this, wxID_YES);
52069700 246 sizer->AddButton(yes);
e37feda2 247 }
52069700 248
25eb10d2
VZ
249 if (flags & wxNO)
250 {
331c1816 251 no = new wxButton(this, wxID_NO);
52069700 252 sizer->AddButton(no);
e37feda2 253 }
52069700 254
57d7f988
VZ
255 if (flags & wxAPPLY)
256 {
257 wxButton *apply = new wxButton(this, wxID_APPLY);
258 sizer->AddButton(apply);
259 }
260
261 if (flags & wxCLOSE)
262 {
263 wxButton *close = new wxButton(this, wxID_CLOSE);
264 sizer->AddButton(close);
265 }
266
25eb10d2
VZ
267 if (flags & wxHELP)
268 {
331c1816 269 wxButton *help = new wxButton(this, wxID_HELP);
52069700 270 sizer->AddButton(help);
e37feda2 271 }
52069700 272
b730516c
RD
273 if (flags & wxNO_DEFAULT)
274 {
275 if (no)
276 {
277 no->SetDefault();
278 no->SetFocus();
279 }
280 }
281 else
92afa2b1
RR
282 {
283 if (ok)
284 {
285 ok->SetDefault();
286 ok->SetFocus();
287 }
288 else if (yes)
289 {
290 yes->SetDefault();
291 yes->SetFocus();
292 }
293 }
d30814cd 294
9ceeecb9
JS
295 if (flags & wxOK)
296 SetAffirmativeId(wxID_OK);
297 else if (flags & wxYES)
298 SetAffirmativeId(wxID_YES);
b730516c 299
d30814cd
MB
300 sizer->Realize();
301
acf2ac37 302 return sizer;
e37feda2
VZ
303}
304
1e6feb95 305#endif // wxUSE_BUTTON
0be27418 306
551f281b 307// ----------------------------------------------------------------------------
a9f620da 308// standard buttons handling
551f281b
VZ
309// ----------------------------------------------------------------------------
310
a9f620da
VZ
311void wxDialogBase::EndDialog(int rc)
312{
313 if ( IsModal() )
314 EndModal(rc);
315 else
316 Hide();
317}
318
551f281b
VZ
319void wxDialogBase::AcceptAndClose()
320{
321 if ( Validate() && TransferDataFromWindow() )
322 {
a9f620da 323 EndDialog(m_affirmativeId);
551f281b
VZ
324 }
325}
326
327void wxDialogBase::SetAffirmativeId(int affirmativeId)
328{
fabd7a7f 329 m_affirmativeId = affirmativeId;
551f281b
VZ
330}
331
332void wxDialogBase::SetEscapeId(int escapeId)
333{
fabd7a7f 334 m_escapeId = escapeId;
551f281b
VZ
335}
336
0be27418
VZ
337bool wxDialogBase::EmulateButtonClickIfPresent(int id)
338{
dbfa7f33 339#if wxUSE_BUTTON
0be27418
VZ
340 wxButton *btn = wxDynamicCast(FindWindow(id), wxButton);
341
342 if ( !btn || !btn->IsEnabled() || !btn->IsShown() )
343 return false;
344
345 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, id);
346 event.SetEventObject(btn);
347 btn->GetEventHandler()->ProcessEvent(event);
348
349 return true;
dbfa7f33
VS
350#else // !wxUSE_BUTTON
351 wxUnusedVar(id);
352 return false;
353#endif // wxUSE_BUTTON/!wxUSE_BUTTON
0be27418
VZ
354}
355
356bool wxDialogBase::IsEscapeKey(const wxKeyEvent& event)
357{
358 // for most platforms, Esc key is used to close the dialogs
359 return event.GetKeyCode() == WXK_ESCAPE &&
360 event.GetModifiers() == wxMOD_NONE;
361}
362
363void wxDialogBase::OnCharHook(wxKeyEvent& event)
364{
365 if ( event.GetKeyCode() == WXK_ESCAPE )
366 {
367 int idCancel = GetEscapeId();
368 switch ( idCancel )
369 {
370 case wxID_NONE:
371 // don't handle Esc specially at all
372 break;
373
374 case wxID_ANY:
375 // this value is special: it means translate Esc to wxID_CANCEL
376 // but if there is no such button, then fall back to wxID_OK
377 if ( EmulateButtonClickIfPresent(wxID_CANCEL) )
378 return;
153a0b78 379 idCancel = GetAffirmativeId();
0be27418
VZ
380 // fall through
381
382 default:
383 // translate Esc to button press for the button with given id
384 if ( EmulateButtonClickIfPresent(idCancel) )
385 return;
386 }
387 }
388
389 event.Skip();
390}
391
a9f620da 392void wxDialogBase::OnButton(wxCommandEvent& event)
2158f4d7 393{
a9f620da
VZ
394 const int id = event.GetId();
395 if ( id == GetAffirmativeId() )
396 {
397 AcceptAndClose();
398 }
399 else if ( id == wxID_APPLY )
400 {
401 if ( Validate() )
402 TransferDataFromWindow();
2158f4d7 403
a9f620da
VZ
404 // TODO: disable the Apply button until things change again
405 }
406 else if ( id == GetEscapeId() ||
407 (id == wxID_CANCEL && GetEscapeId() == wxID_ANY) )
408 {
409 EndDialog(wxID_CANCEL);
410 }
411 else // not a standard button
412 {
413 event.Skip();
414 }
2158f4d7
VZ
415}
416
a9f620da
VZ
417// ----------------------------------------------------------------------------
418// other event handlers
419// ----------------------------------------------------------------------------
2158f4d7
VZ
420
421void wxDialogBase::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
422{
423 // We'll send a Cancel message by default, which may close the dialog.
424 // Check for looping if the Cancel event handler calls Close().
425
426 // Note that if a cancel button and handler aren't present in the dialog,
427 // nothing will happen when you close the dialog via the window manager, or
428 // via Close(). We wouldn't want to destroy the dialog by default, since
429 // the dialog may have been created on the stack. However, this does mean
430 // that calling dialog->Close() won't delete the dialog unless the handler
431 // for wxID_CANCEL does so. So use Destroy() if you want to be sure to
432 // destroy the dialog. The default OnCancel (above) simply ends a modal
433 // dialog, and hides a modeless dialog.
434
435 // VZ: this is horrible and MT-unsafe. Can't we reuse some of these global
436 // lists here? don't dare to change it now, but should be done later!
437 static wxList closing;
438
439 if ( closing.Member(this) )
440 return;
441
442 closing.Append(this);
443
444 wxCommandEvent cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL);
445 cancelEvent.SetEventObject( this );
446 GetEventHandler()->ProcessEvent(cancelEvent); // This may close the dialog
447
448 closing.DeleteObject(this);
449}
450
451void wxDialogBase::OnSysColourChanged(wxSysColourChangedEvent& WXUNUSED(event))
452{
453 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE));
454 Refresh();
455}