1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxDialogBase class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_DIALOG_H_BASE_
13 #define _WX_DIALOG_H_BASE_
16 #include "wx/toplevel.h"
18 class WXDLLIMPEXP_FWD_CORE wxSizer
;
19 class WXDLLIMPEXP_FWD_CORE wxStdDialogButtonSizer
;
20 class WXDLLIMPEXP_FWD_CORE wxBoxSizer
;
21 class WXDLLIMPEXP_FWD_CORE wxDialogLayoutAdapter
;
22 class WXDLLIMPEXP_FWD_CORE wxDialog
;
23 class WXDLLIMPEXP_FWD_CORE wxButton
;
24 class WXDLLIMPEXP_FWD_CORE wxScrolledWindow
;
25 class wxTextSizerWrapper
;
27 // Also see the bit summary table in wx/toplevel.h.
29 #define wxDIALOG_NO_PARENT 0x0100 // Don't make owned by apps top window
32 #define wxDEFAULT_DIALOG_STYLE (wxCAPTION | wxMAXIMIZE | wxCLOSE_BOX | wxNO_BORDER)
34 #define wxDEFAULT_DIALOG_STYLE (wxCAPTION | wxSYSTEM_MENU | wxCLOSE_BOX)
37 // Layout adaptation levels, for SetLayoutAdaptationLevel
39 // Don't do any layout adaptation
40 #define wxDIALOG_ADAPTATION_NONE 0
42 // Only look for wxStdDialogButtonSizer for non-scrolling part
43 #define wxDIALOG_ADAPTATION_STANDARD_SIZER 1
45 // Also look for any suitable sizer for non-scrolling part
46 #define wxDIALOG_ADAPTATION_ANY_SIZER 2
48 // Also look for 'loose' standard buttons for non-scrolling part
49 #define wxDIALOG_ADAPTATION_LOOSE_BUTTONS 3
51 // Layout adaptation mode, for SetLayoutAdaptationMode
52 enum wxDialogLayoutAdaptationMode
54 wxDIALOG_ADAPTATION_MODE_DEFAULT
= 0, // use global adaptation enabled status
55 wxDIALOG_ADAPTATION_MODE_ENABLED
= 1, // enable this dialog overriding global status
56 wxDIALOG_ADAPTATION_MODE_DISABLED
= 2 // disable this dialog overriding global status
61 wxDIALOG_MODALITY_NONE
= 0,
62 wxDIALOG_MODALITY_WINDOW_MODAL
= 1,
63 wxDIALOG_MODALITY_APP_MODAL
= 2
66 extern WXDLLIMPEXP_DATA_CORE(const char) wxDialogNameStr
[];
68 class WXDLLIMPEXP_CORE wxDialogBase
: public wxTopLevelWindow
71 wxDialogBase() { Init(); }
72 virtual ~wxDialogBase() { }
74 // define public wxDialog methods to be implemented by the derived classes
75 virtual int ShowModal() = 0;
76 virtual void EndModal(int retCode
) = 0;
77 virtual bool IsModal() const = 0;
78 // show the dialog frame-modally (needs a parent), using app-modal
79 // dialogs on platforms that don't support it
80 virtual void ShowWindowModal () ;
81 virtual void SendWindowModalDialogEvent ( wxEventType type
);
83 // Modal dialogs have a return code - usually the id of the last
85 void SetReturnCode(int returnCode
) { m_returnCode
= returnCode
; }
86 int GetReturnCode() const { return m_returnCode
; }
88 // Set the identifier for the affirmative button: this button will close
89 // the dialog after validating data and calling TransferDataFromWindow()
90 void SetAffirmativeId(int affirmativeId
);
91 int GetAffirmativeId() const { return m_affirmativeId
; }
93 // Set identifier for Esc key translation: the button with this id will
94 // close the dialog without doing anything else; special value wxID_NONE
95 // means to not handle Esc at all while wxID_ANY means to map Esc to
96 // wxID_CANCEL if present and GetAffirmativeId() otherwise
97 void SetEscapeId(int escapeId
);
98 int GetEscapeId() const { return m_escapeId
; }
100 // Find the parent to use for modal dialog: try to use the specified parent
101 // but fall back to the current active window or main application window as
102 // last resort if it is unsuitable.
104 // As this function is often called from the ctor, the window style may be
105 // not set yet and hence must be passed explicitly to it so that we could
106 // check whether it contains wxDIALOG_NO_PARENT bit.
108 // This function always returns a valid top level window or NULL.
109 wxWindow
*GetParentForModalDialog(wxWindow
*parent
, long style
) const;
111 // This overload can only be used for already initialized windows, i.e. not
112 // from the ctor. It uses the current window parent and style.
113 wxWindow
*GetParentForModalDialog() const
115 return GetParentForModalDialog(GetParent(), GetWindowStyle());
118 #if wxUSE_STATTEXT // && wxUSE_TEXTCTRL
119 // splits text up at newlines and places the lines into a vertical
121 wxSizer
*CreateTextSizer( const wxString
& message
);
123 // same as above but uses a customized wxTextSizerWrapper to create
124 // non-standard controls for the lines
125 wxSizer
*CreateTextSizer( const wxString
& message
,
126 wxTextSizerWrapper
& wrapper
);
127 #endif // wxUSE_STATTEXT // && wxUSE_TEXTCTRL
129 // returns a horizontal wxBoxSizer containing the given buttons
131 // notice that the returned sizer can be NULL if no buttons are put in the
132 // sizer (this mostly happens under smart phones and other atypical
133 // platforms which have hardware buttons replacing OK/Cancel and such)
134 wxSizer
*CreateButtonSizer(long flags
);
136 // returns a sizer containing the given one and a static line separating it
137 // from the preceding elements if it's appropriate for the current platform
138 wxSizer
*CreateSeparatedSizer(wxSizer
*sizer
);
140 // returns the sizer containing CreateButtonSizer() below a separating
141 // static line for the platforms which use static lines for items
142 // separation (i.e. not Mac)
144 // this is just a combination of CreateButtonSizer() and
145 // CreateSeparatedSizer()
146 wxSizer
*CreateSeparatedButtonSizer(long flags
);
149 wxStdDialogButtonSizer
*CreateStdDialogButtonSizer( long flags
);
150 #endif // wxUSE_BUTTON
152 // Do layout adaptation
153 virtual bool DoLayoutAdaptation();
155 // Can we do layout adaptation?
156 virtual bool CanDoLayoutAdaptation();
158 // Returns a content window if there is one. This can be used by the layout adapter, for
159 // example to make the pages of a book control into scrolling windows
160 virtual wxWindow
* GetContentWindow() const { return NULL
; }
162 // Add an id to the list of main button identifiers that should be in the button sizer
163 void AddMainButtonId(wxWindowID id
) { m_mainButtonIds
.Add((int) id
); }
164 wxArrayInt
& GetMainButtonIds() { return m_mainButtonIds
; }
166 // Is this id in the main button id array?
167 bool IsMainButtonId(wxWindowID id
) const { return (m_mainButtonIds
.Index((int) id
) != wxNOT_FOUND
); }
169 // Level of adaptation, from none (Level 0) to full (Level 3). To disable adaptation,
170 // set level 0, for example in your dialog constructor. You might
171 // do this if you know that you are displaying on a large screen and you don't want the
173 void SetLayoutAdaptationLevel(int level
) { m_layoutAdaptationLevel
= level
; }
174 int GetLayoutAdaptationLevel() const { return m_layoutAdaptationLevel
; }
176 /// Override global adaptation enabled/disabled status
177 void SetLayoutAdaptationMode(wxDialogLayoutAdaptationMode mode
) { m_layoutAdaptationMode
= mode
; }
178 wxDialogLayoutAdaptationMode
GetLayoutAdaptationMode() const { return m_layoutAdaptationMode
; }
180 // Returns true if the adaptation has been done
181 void SetLayoutAdaptationDone(bool adaptationDone
) { m_layoutAdaptationDone
= adaptationDone
; }
182 bool GetLayoutAdaptationDone() const { return m_layoutAdaptationDone
; }
184 // Set layout adapter class, returning old adapter
185 static wxDialogLayoutAdapter
* SetLayoutAdapter(wxDialogLayoutAdapter
* adapter
);
186 static wxDialogLayoutAdapter
* GetLayoutAdapter() { return sm_layoutAdapter
; }
188 // Global switch for layout adaptation
189 static bool IsLayoutAdaptationEnabled() { return sm_layoutAdaptation
; }
190 static void EnableLayoutAdaptation(bool enable
) { sm_layoutAdaptation
= enable
; }
193 virtual wxDialogModality
GetModality() const;
195 // emulate click of a button with the given id if it's present in the dialog
197 // return true if button was "clicked" or false if we don't have it
198 bool EmulateButtonClickIfPresent(int id
);
200 // this function is used by OnCharHook() to decide whether the given key
201 // should close the dialog
203 // for most platforms the default implementation (which just checks for
204 // Esc) is sufficient, but Mac port also adds Cmd-. here and other ports
205 // could do something different if needed
206 virtual bool IsEscapeKey(const wxKeyEvent
& event
);
208 // end either modal or modeless dialog, for the modal dialog rc is used as
209 // the dialog return code
210 void EndDialog(int rc
);
212 // call Validate() and TransferDataFromWindow() and close dialog with
213 // wxID_OK return code
214 void AcceptAndClose();
216 // The return code from modal dialog
219 // The identifier for the affirmative button (usually wxID_OK)
222 // The identifier for cancel button (usually wxID_CANCEL)
225 // Flags whether layout adaptation has been done for this dialog
226 bool m_layoutAdaptationDone
;
228 // Extra button identifiers to be taken as 'main' button identifiers
229 // to be placed in the non-scrolling area
230 wxArrayInt m_mainButtonIds
;
233 int m_layoutAdaptationLevel
;
235 // Local override for global adaptation enabled status
236 wxDialogLayoutAdaptationMode m_layoutAdaptationMode
;
238 // Global layout adapter
239 static wxDialogLayoutAdapter
* sm_layoutAdapter
;
241 // Global adaptation switch
242 static bool sm_layoutAdaptation
;
245 // common part of all ctors
248 // helper of GetParentForModalDialog(): returns the passed in window if it
249 // can be used as our parent or NULL if it can't
250 wxWindow
*CheckIfCanBeUsedAsParent(wxWindow
*parent
) const;
252 // Helper of OnCharHook() and OnCloseWindow(): find the appropriate button
253 // for closing the dialog and send a click event for it.
255 // Return true if we found a button to close the dialog and "clicked" it or
257 bool SendCloseButtonClickEvent();
259 // handle Esc key presses
260 void OnCharHook(wxKeyEvent
& event
);
262 // handle closing the dialog window
263 void OnCloseWindow(wxCloseEvent
& event
);
265 // handle the standard buttons
266 void OnButton(wxCommandEvent
& event
);
268 // update the background colour
269 void OnSysColourChanged(wxSysColourChangedEvent
& event
);
272 wxDECLARE_NO_COPY_CLASS(wxDialogBase
);
273 DECLARE_EVENT_TABLE()
277 * Base class for layout adapters - code that, for example, turns a dialog into a
278 * scrolling dialog if there isn't enough screen space. You can derive further
279 * adapter classes to do any other kind of adaptation, such as applying a watermark, or adding
283 class WXDLLIMPEXP_CORE wxDialogLayoutAdapter
: public wxObject
285 DECLARE_CLASS(wxDialogLayoutAdapter
)
287 wxDialogLayoutAdapter() {}
289 // Override this function to indicate that adaptation should be done
290 virtual bool CanDoLayoutAdaptation(wxDialog
* dialog
) = 0;
292 // Override this function to do the adaptation
293 virtual bool DoLayoutAdaptation(wxDialog
* dialog
) = 0;
297 * Standard adapter. Does scrolling adaptation for paged and regular dialogs.
301 class WXDLLIMPEXP_CORE wxStandardDialogLayoutAdapter
: public wxDialogLayoutAdapter
303 DECLARE_CLASS(wxStandardDialogLayoutAdapter
)
305 wxStandardDialogLayoutAdapter() {}
309 // Indicate that adaptation should be done
310 virtual bool CanDoLayoutAdaptation(wxDialog
* dialog
);
312 // Do layout adaptation
313 virtual bool DoLayoutAdaptation(wxDialog
* dialog
);
317 // Create the scrolled window
318 virtual wxScrolledWindow
* CreateScrolledWindow(wxWindow
* parent
);
320 // Find a standard or horizontal box sizer
321 virtual wxSizer
* FindButtonSizer(bool stdButtonSizer
, wxDialog
* dialog
, wxSizer
* sizer
, int& retBorder
, int accumlatedBorder
= 0);
323 // Check if this sizer contains standard buttons, and so can be repositioned in the dialog
324 virtual bool IsOrdinaryButtonSizer(wxDialog
* dialog
, wxBoxSizer
* sizer
);
326 // Check if this is a standard button
327 virtual bool IsStandardButton(wxDialog
* dialog
, wxButton
* button
);
329 // Find 'loose' main buttons in the existing layout and add them to the standard dialog sizer
330 virtual bool FindLooseButtons(wxDialog
* dialog
, wxStdDialogButtonSizer
* buttonSizer
, wxSizer
* sizer
, int& count
);
332 // Reparent the controls to the scrolled window, except those in buttonSizer
333 virtual void ReparentControls(wxWindow
* parent
, wxWindow
* reparentTo
, wxSizer
* buttonSizer
= NULL
);
334 static void DoReparentControls(wxWindow
* parent
, wxWindow
* reparentTo
, wxSizer
* buttonSizer
= NULL
);
336 // A function to fit the dialog around its contents, and then adjust for screen size.
337 // If scrolled windows are passed, scrolling is enabled in the required orientation(s).
338 virtual bool FitWithScrolling(wxDialog
* dialog
, wxScrolledWindow
* scrolledWindow
);
339 virtual bool FitWithScrolling(wxDialog
* dialog
, wxWindowList
& windows
);
340 static bool DoFitWithScrolling(wxDialog
* dialog
, wxScrolledWindow
* scrolledWindow
);
341 static bool DoFitWithScrolling(wxDialog
* dialog
, wxWindowList
& windows
);
343 // Find whether scrolling will be necessary for the dialog, returning wxVERTICAL, wxHORIZONTAL or both
344 virtual int MustScroll(wxDialog
* dialog
, wxSize
& windowSize
, wxSize
& displaySize
);
345 static int DoMustScroll(wxDialog
* dialog
, wxSize
& windowSize
, wxSize
& displaySize
);
348 #if defined(__WXUNIVERSAL__) && !defined(__WXMICROWIN__)
349 #include "wx/univ/dialog.h"
351 #if defined(__WXPALMOS__)
352 #include "wx/palmos/dialog.h"
353 #elif defined(__WXMSW__)
354 #include "wx/msw/dialog.h"
355 #elif defined(__WXMOTIF__)
356 #include "wx/motif/dialog.h"
357 #elif defined(__WXGTK20__)
358 #include "wx/gtk/dialog.h"
359 #elif defined(__WXGTK__)
360 #include "wx/gtk1/dialog.h"
361 #elif defined(__WXMAC__)
362 #include "wx/osx/dialog.h"
363 #elif defined(__WXCOCOA__)
364 #include "wx/cocoa/dialog.h"
365 #elif defined(__WXPM__)
366 #include "wx/os2/dialog.h"
370 class WXDLLIMPEXP_CORE wxWindowModalDialogEvent
: public wxCommandEvent
373 wxWindowModalDialogEvent (wxEventType commandType
= wxEVT_NULL
, int id
= 0)
374 : wxCommandEvent(commandType
, id
) { }
376 wxDialog
*GetDialog() const
377 { return wxStaticCast(GetEventObject(), wxDialog
); }
379 int GetReturnCode() const
380 { return GetDialog()->GetReturnCode(); }
382 virtual wxEvent
*Clone() const { return new wxWindowModalDialogEvent (*this); }
385 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxWindowModalDialogEvent
)
388 wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CORE
, wxEVT_WINDOW_MODAL_DIALOG_CLOSED
, wxWindowModalDialogEvent
);
390 typedef void (wxEvtHandler::*wxWindowModalDialogEventFunction
)(wxWindowModalDialogEvent
&);
392 #define wxWindowModalDialogEventHandler(func) \
393 wxEVENT_HANDLER_CAST(wxWindowModalDialogEventFunction, func)
396 // _WX_DIALOG_H_BASE_