]> git.saurik.com Git - wxWidgets.git/blame - include/wx/generic/choicdgg.h
Corrected copyright message
[wxWidgets.git] / include / wx / generic / choicdgg.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
d6c9c1b7 2// Name: wx/generic/choicdgg.h
c801d85f
KB
3// Purpose: Generic choice dialogs
4// Author: Julian Smart
d6c9c1b7 5// Modified by: 03.11.00: VZ to add wxArrayString and multiple sel functions
c801d85f
KB
6// Created: 01/02/97
7// RCS-ID: $Id$
d6c9c1b7 8// Copyright: (c) wxWindows team
c50f1fb9 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef __CHOICEDLGH_G__
13#define __CHOICEDLGH_G__
14
af49c4b8 15#if defined(__GNUG__) && !defined(__APPLE__)
257bf510 16 #pragma interface "choicdgg.h"
c801d85f
KB
17#endif
18
d6c9c1b7 19#include "wx/dynarray.h"
c801d85f 20#include "wx/dialog.h"
8ee9d618
VZ
21
22class WXDLLEXPORT wxListBox;
c801d85f 23
d6c9c1b7
VZ
24// ----------------------------------------------------------------------------
25// some (ugly...) constants
26// ----------------------------------------------------------------------------
27
c801d85f
KB
28#define wxCHOICE_HEIGHT 150
29#define wxCHOICE_WIDTH 200
30
7ac080a1 31#define wxCHOICEDLG_STYLE (wxDEFAULT_DIALOG_STYLE|wxOK | wxCANCEL | wxCENTRE)
c801d85f 32
d6c9c1b7
VZ
33// ----------------------------------------------------------------------------
34// wxAnyChoiceDialog: a base class for dialogs containing a listbox
35// ----------------------------------------------------------------------------
36
37class WXDLLEXPORT wxAnyChoiceDialog : public wxDialog
c801d85f 38{
d6c9c1b7
VZ
39public:
40 wxAnyChoiceDialog() { }
41
42 wxAnyChoiceDialog(wxWindow *parent,
43 const wxString& message,
44 const wxString& caption,
45 int n, const wxString *choices,
46 long styleDlg = wxCHOICEDLG_STYLE,
47 const wxPoint& pos = wxDefaultPosition,
48 long styleLbox = wxLB_ALWAYS_SB)
49 {
50 (void)Create(parent, message, caption, n, choices,
51 styleDlg, pos, styleLbox);
52 }
53
54 bool Create(wxWindow *parent,
55 const wxString& message,
56 const wxString& caption,
57 int n, const wxString *choices,
58 long styleDlg = wxCHOICEDLG_STYLE,
59 const wxPoint& pos = wxDefaultPosition,
60 long styleLbox = wxLB_ALWAYS_SB);
61
62protected:
63 wxListBox *m_listbox;
22f3361e
VZ
64
65 DECLARE_NO_COPY_CLASS(wxAnyChoiceDialog)
d6c9c1b7 66};
257bf510 67
d6c9c1b7
VZ
68// ----------------------------------------------------------------------------
69// wxSingleChoiceDialog: a dialog with single selection listbox
70// ----------------------------------------------------------------------------
71
72class WXDLLEXPORT wxSingleChoiceDialog : public wxAnyChoiceDialog
73{
c801d85f 74public:
d6c9c1b7
VZ
75 wxSingleChoiceDialog()
76 {
77 m_selection = -1;
78 }
79
257bf510
VZ
80 wxSingleChoiceDialog(wxWindow *parent,
81 const wxString& message,
82 const wxString& caption,
83 int n,
84 const wxString *choices,
85 char **clientData = (char **)NULL,
86 long style = wxCHOICEDLG_STYLE,
87 const wxPoint& pos = wxDefaultPosition);
88
d6c9c1b7
VZ
89 bool Create(wxWindow *parent,
90 const wxString& message,
91 const wxString& caption,
92 int n,
93 const wxString *choices,
94 char **clientData = (char **)NULL,
95 long style = wxCHOICEDLG_STYLE,
96 const wxPoint& pos = wxDefaultPosition);
97
98 void SetSelection(int sel);
99 int GetSelection() const { return m_selection; }
100 wxString GetStringSelection() const { return m_stringSelection; }
101
102 // obsolete function (NB: no need to make it return wxChar, it's untyped)
103 char *GetSelectionClientData() const { return (char *)m_clientData; }
104
105 // implementation from now on
106 void OnOK(wxCommandEvent& event);
107 void OnListBoxDClick(wxCommandEvent& event);
108
109 // old, deprecated methods
1d79bd3e 110#if WXWIN_COMPATIBILITY_2
257bf510
VZ
111 wxSingleChoiceDialog(wxWindow *parent,
112 const wxString& message,
113 const wxString& caption,
114 const wxStringList& choices,
115 char **clientData = (char **)NULL,
116 long style = wxCHOICEDLG_STYLE,
117 const wxPoint& pos = wxDefaultPosition);
118
119 bool Create(wxWindow *parent,
120 const wxString& message,
121 const wxString& caption,
d6c9c1b7 122 const wxStringList& choices,
257bf510
VZ
123 char **clientData = (char **)NULL,
124 long style = wxCHOICEDLG_STYLE,
125 const wxPoint& pos = wxDefaultPosition);
d6c9c1b7
VZ
126#endif // WXWIN_COMPATIBILITY_2
127
128protected:
129 int m_selection;
130 wxString m_stringSelection;
131
132private:
133 DECLARE_DYNAMIC_CLASS(wxSingleChoiceDialog)
134 DECLARE_EVENT_TABLE()
135};
136
137// ----------------------------------------------------------------------------
138// wxMultiChoiceDialog: a dialog with multi selection listbox
139// ----------------------------------------------------------------------------
140
141class WXDLLEXPORT wxMultiChoiceDialog : public wxAnyChoiceDialog
142{
143public:
144 wxMultiChoiceDialog() { }
145
146 wxMultiChoiceDialog(wxWindow *parent,
147 const wxString& message,
148 const wxString& caption,
149 int n,
150 const wxString *choices,
151 long style = wxCHOICEDLG_STYLE,
152 const wxPoint& pos = wxDefaultPosition)
153 {
154 (void)Create(parent, message, caption, n, choices, style, pos);
155 }
257bf510
VZ
156
157 bool Create(wxWindow *parent,
158 const wxString& message,
159 const wxString& caption,
d6c9c1b7
VZ
160 int n,
161 const wxString *choices,
257bf510
VZ
162 long style = wxCHOICEDLG_STYLE,
163 const wxPoint& pos = wxDefaultPosition);
c801d85f 164
d6c9c1b7
VZ
165 void SetSelections(const wxArrayInt& selections);
166 wxArrayInt GetSelections() const { return m_selections; }
c801d85f 167
257bf510 168 // implementation from now on
3d49ce44 169 virtual bool TransferDataFromWindow();
c801d85f 170
c801d85f 171protected:
d6c9c1b7 172 wxArrayInt m_selections;
257bf510
VZ
173
174private:
d6c9c1b7 175 DECLARE_DYNAMIC_CLASS(wxMultiChoiceDialog)
c801d85f
KB
176};
177
d6c9c1b7
VZ
178// ----------------------------------------------------------------------------
179// wrapper functions which can be used to get selection(s) from the user
180// ----------------------------------------------------------------------------
181
182// get the user selection as a string
183WXDLLEXPORT wxString wxGetSingleChoice(const wxString& message,
184 const wxString& caption,
185 const wxArrayString& choices,
186 wxWindow *parent = (wxWindow *) NULL,
187 int x = -1,
188 int y = -1,
189 bool centre = TRUE,
190 int width = wxCHOICE_WIDTH,
191 int height = wxCHOICE_HEIGHT);
c801d85f 192
d6c9c1b7
VZ
193WXDLLEXPORT wxString wxGetSingleChoice(const wxString& message,
194 const wxString& caption,
195 int n, const wxString *choices,
196 wxWindow *parent = (wxWindow *) NULL,
197 int x = -1,
198 int y = -1,
199 bool centre = TRUE,
200 int width = wxCHOICE_WIDTH,
201 int height = wxCHOICE_HEIGHT);
c801d85f
KB
202
203// Same as above but gets position in list of strings, instead of string,
204// or -1 if no selection
d6c9c1b7
VZ
205WXDLLEXPORT int wxGetSingleChoiceIndex(const wxString& message,
206 const wxString& caption,
207 const wxArrayString& choices,
208 wxWindow *parent = (wxWindow *) NULL,
209 int x = -1,
210 int y = -1,
211 bool centre = TRUE,
212 int width = wxCHOICE_WIDTH,
213 int height = wxCHOICE_HEIGHT);
214
215WXDLLEXPORT int wxGetSingleChoiceIndex(const wxString& message,
216 const wxString& caption,
217 int n, const wxString *choices,
218 wxWindow *parent = (wxWindow *) NULL,
219 int x = -1,
220 int y = -1,
221 bool centre = TRUE,
222 int width = wxCHOICE_WIDTH,
223 int height = wxCHOICE_HEIGHT);
224
225// Return client data instead or NULL if cancelled
226WXDLLEXPORT void* wxGetSingleChoiceData(const wxString& message,
227 const wxString& caption,
228 const wxArrayString& choices,
229 void **client_data,
230 wxWindow *parent = (wxWindow *) NULL,
231 int x = -1, int y = -1,
232 bool centre = TRUE,
233 int width = wxCHOICE_WIDTH,
234 int height = wxCHOICE_HEIGHT);
235
236WXDLLEXPORT void* wxGetSingleChoiceData(const wxString& message,
237 const wxString& caption,
238 int n, const wxString *choices,
239 void **client_data,
240 wxWindow *parent = (wxWindow *) NULL,
241 int x = -1, int y = -1,
242 bool centre = TRUE,
243 int width = wxCHOICE_WIDTH,
244 int height = wxCHOICE_HEIGHT);
245
246// fill the array with the indices of the chosen items, it will be empty
247// if no items were selected or Cancel was pressed - return the number of
248// selections
249WXDLLEXPORT size_t wxGetMultipleChoices(wxArrayInt& selections,
250 const wxString& message,
251 const wxString& caption,
252 int n, const wxString *choices,
253 wxWindow *parent = (wxWindow *) NULL,
254 int x = -1,
255 int y = -1,
256 bool centre = TRUE,
257 int width = wxCHOICE_WIDTH,
258 int height = wxCHOICE_HEIGHT);
259
260WXDLLEXPORT size_t wxGetMultipleChoices(wxArrayInt& selections,
261 const wxString& message,
262 const wxString& caption,
263 const wxArrayString& choices,
264 wxWindow *parent = (wxWindow *) NULL,
265 int x = -1,
266 int y = -1,
267 bool centre = TRUE,
268 int width = wxCHOICE_WIDTH,
269 int height = wxCHOICE_HEIGHT);
270
271// ----------------------------------------------------------------------------
272// these methods are for backwards compatibility only, not documented and
273// deprecated
274// ----------------------------------------------------------------------------
275
1d79bd3e 276#if WXWIN_COMPATIBILITY_2
96bcf4f9 277
d6c9c1b7
VZ
278WXDLLEXPORT wxString wxGetSingleChoice(const wxString& message,
279 const wxString& caption,
280 int n, wxChar *choices[],
281 wxWindow *parent = (wxWindow *) NULL,
282 int x = -1,
283 int y = -1,
284 bool centre = TRUE,
285 int width = wxCHOICE_WIDTH,
286 int height = wxCHOICE_HEIGHT);
287
288WXDLLEXPORT int wxGetSingleChoiceIndex(const wxString& message,
289 const wxString& caption,
290 int n, wxChar *choices[],
291 wxWindow *parent = (wxWindow *) NULL,
292 int x = -1,
293 int y = -1,
294 bool centre = TRUE,
295 int width = wxCHOICE_WIDTH,
296 int height = wxCHOICE_HEIGHT);
297
298WXDLLEXPORT void* wxGetSingleChoiceData(const wxString& message,
299 const wxString& caption,
300 int n, wxChar **choices,
301 void **client_data,
302 wxWindow *parent = (wxWindow *) NULL,
303 int x = -1, int y = -1,
304 bool centre = TRUE,
305 int width = wxCHOICE_WIDTH,
306 int height = wxCHOICE_HEIGHT);
307
308
96bcf4f9
VZ
309#endif // WXWIN_COMPATIBILITY_2
310
d6c9c1b7 311#endif // __CHOICEDLGH_G__
c801d85f 312