]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/preferences.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: interface/wx/preferences.h
3 // Purpose: wxPreferencesEditor class documentation.
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2013 Vaclav Slavik <vslavik@fastmail.fm>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
12 Manage preferences dialog.
14 This class encapsulates the differences -- both in appearance and
15 behaviour -- between preferences dialogs on different platforms. In
16 particular, OS X preferences look very different from the typical notebook
17 control used on other platforms, and both OS X and GTK+ preferences windows
18 are modeless unlike Windows options dialogs that are typically modal.
20 wxPreferencesEditor is able to hide the differences by hiding the creation
21 of preferences window from the API. Instead, you create an instance of
22 wxPreferencesEditor and add page descriptions in the form of
23 wxPreferencesPage using its AddPage() method. After setting up the editor
24 object, you must call Show() to present preferences to the user.
26 @note Notice that this class is not derived from wxWindow and hence
27 doesn't represent a window, even if its Show() method does create one
34 class wxPreferencesEditor
40 Creates an empty editor, use AddPage() to add controls to it.
42 @param title The title overriding the default title of the top level
43 window used by the editor. It is recommended to not specify this
44 parameter to use the native convention for the preferences dialogs
47 wxPreferencesEditor(const wxString
& title
= wxString());
52 Destroying this object hides the associated preferences window if it is
55 The destructor is non-virtual as this class is not supposed to be
58 ~wxPreferencesEditor();
61 Add a new page to the editor.
63 The editor takes ownership of the page and will delete it from its
64 destructor (but not sooner).
66 @see wxPreferencesPage, wxStockPreferencesPage
68 void AddPage(wxPreferencesPage
*page
);
71 Show the preferences dialog or bring it to the top if it's already
74 Notice that this method may or may not block depending on the platform,
75 i.e. depending on whether the dialog is modal or not.
77 @param parent The window that invokes the preferences.
78 Call Dismiss() before it's destroyed.
80 virtual void Show(wxWindow
* parent
);
83 Hide the currently shown dialog, if any.
85 This is typically called to dismiss the dialog if the object whose
86 preferences it is editing was closed.
91 Returns whether changes to values in preferences pages should be
92 applied immediately or only when the user clicks the OK button.
94 Currently, changes are applied immediately on OS X and GTK+.
96 The preprocessor macro `wxHAS_PREF_EDITOR_APPLY_IMMEDIATELY` is defined
99 static bool ShouldApplyChangesImmediately()
102 Returns whether the preferences dialog is shown modally.
104 If this method returns false, as it currently does in wxGTK and wxOSX,
105 Show() simply makes the dialog visible and returns immediately. If it
106 returns true, as it does in wxMSW and under the other platforms, then
107 the dialog is shown modally, i.e. Show() blocks until the user
110 Notice that it isn't necessary to test the return value of this method
111 to use this class normally, its interface is designed to work in both
112 cases. However it can sometimes be necessary to call it if the program
113 needs to handle modal dialogs specially, e.g. perhaps to block some
114 periodic background update operation while a modal dialog is shown.
116 static bool ShownModally();
121 One page of preferences dialog.
123 This is the base class for implementation of application's preferences. Its
124 methods return various properties of the page, such as title or icon. The
125 actual page is created by CreateWindow().
127 @see wxStockPreferencesPage
133 class wxPreferencesPage
140 virtual ~wxPreferencesPage();
143 Return name of the page.
145 The name is used for notebook tab's label, icon label etc., depending
148 virtual wxString
GetName() const = 0;
151 Return 32x32 icon used for the page on some platforms.
153 Currently only used on OS X.
155 @note This method is only pure virtual on platforms that require it
156 (OS X). On other platforms, it has default implementation that
157 returns an invalid bitmap. The preprocessor symbol
158 `wxHAS_PREF_EDITOR_ICONS` is defined if this method must be
161 virtual wxBitmap
GetLargeIcon() const = 0;
164 Create a window for this page.
166 The window will be placed into the preferences dialog in
167 platform-specific manner. Depending on the platform, this method may
168 be called before showing the preferences window, when switching to its
169 tab or even more than once. Don't make assumptions about the number of
170 times or the specific time when it is called.
172 The caller takes ownership of the window.
174 wxPanel is usually used, but doesn't have to be.
176 @param parent Parent window to use.
178 virtual wxWindow
*CreateWindow(wxWindow
*parent
) = 0;
183 Specialization of wxPreferencesPage useful for certain commonly used
186 On OS X, preferences pages named "General" and "Advanced" are commonly used
187 in apps and the OS provides stock icons for them that should be used.
188 Instead of reimplementing this behavior yourself, you can inherit from
189 wxStockPreferencesPage and get correct title and icon.
191 Notice that this class only implements GetName() and GetLargeIcon(), you
192 still have to provide the rest of wxPreferencesPage implementation.
198 class wxStockPreferencesPage
: public wxPreferencesPage
201 /// Kinds of stock pages.
204 /// The "General" page
206 /// The "Advanced" page
211 wxStockPreferencesPage(Kind kind
);
213 /// Returns the page's kind.
214 Kind
GetKind() const;
216 /// Reimplemented to return suitable name for the page's kind.
217 virtual wxString
GetName() const;
218 /// Reimplemented to return stock icon on OS X.
219 virtual wxBitmap
GetLargeIcon() const;