1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Generic choice dialogs
4 // Author: Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef __CHOICEDLGH_G__
13 #define __CHOICEDLGH_G__
16 #pragma interface "choicdgg.h"
20 #include "wx/dialog.h"
22 #define wxCHOICE_HEIGHT 150
23 #define wxCHOICE_WIDTH 200
25 #define wxID_LISTBOX 3000
27 class WXDLLEXPORT wxSingleChoiceDialog
: public wxDialog
29 DECLARE_DYNAMIC_CLASS(wxSingleChoiceDialog
)
31 wxSingleChoiceDialog(wxWindow
*parent
, const wxString
& message
, const wxString
& caption
,
32 const int n
, const wxString
*choices
, char **clientData
= NULL
, long style
= wxOK
|wxCANCEL
|wxCENTRE
, const wxPoint
& pos
= wxDefaultPosition
);
34 wxSingleChoiceDialog(wxWindow
*parent
, const wxString
& message
, const wxString
& caption
,
35 const wxStringList
& choices
, char **clientData
= NULL
, long style
= wxOK
|wxCANCEL
|wxCENTRE
, const wxPoint
& pos
= wxDefaultPosition
);
37 bool Create(wxWindow
*parent
, const wxString
& message
, const wxString
& caption
,
38 const int n
, const wxString
*choices
, char **clientData
= NULL
, long style
= wxOK
|wxCANCEL
|wxCENTRE
, const wxPoint
& pos
= wxDefaultPosition
);
39 bool Create(wxWindow
*parent
, const wxString
& message
, const wxString
& caption
,
40 const wxStringList
& choices
, char **clientData
= NULL
, long style
= wxOK
|wxCANCEL
|wxCENTRE
, const wxPoint
& pos
= wxDefaultPosition
);
42 void SetSelection(int sel
) ;
43 inline int GetSelection(void) const { return m_selection
; }
44 inline wxString
GetStringSelection(void) const { return m_stringSelection
; }
45 inline char *GetSelectionClientData(void) const { return m_clientData
; }
47 void OnOK(wxCommandEvent
& event
);
54 wxString m_stringSelection
;
58 wxString WXDLLEXPORT
wxGetSingleChoice(const wxString
& message
, const wxString
& caption
,
59 const int n
, const wxString
*choices
, wxWindow
*parent
= NULL
,
60 const int x
= -1, const int y
= -1, const bool centre
= TRUE
,
61 const int width
= wxCHOICE_WIDTH
, const int height
= wxCHOICE_HEIGHT
);
63 wxString WXDLLEXPORT
wxGetSingleChoice(const wxString
& message
, const wxString
& caption
,
64 const int n
, char *choices
[], wxWindow
*parent
= NULL
,
65 const int x
= -1, const int y
= -1, const bool centre
= TRUE
,
66 const int width
= wxCHOICE_WIDTH
, const int height
= wxCHOICE_HEIGHT
);
68 // Same as above but gets position in list of strings, instead of string,
69 // or -1 if no selection
70 int WXDLLEXPORT
wxGetSingleChoiceIndex(const wxString
& message
, const wxString
& caption
,
71 const int n
, const wxString
*choices
, wxWindow
*parent
= NULL
,
72 const int x
= -1, const int y
= -1, const bool centre
= TRUE
,
73 const int width
= wxCHOICE_WIDTH
, const int height
= wxCHOICE_HEIGHT
);
75 int WXDLLEXPORT
wxGetSingleChoiceIndex(const wxString
& message
, const wxString
& caption
,
76 const int n
, char *choices
[], wxWindow
*parent
= NULL
,
77 const int x
= -1, const int y
= -1, const bool centre
= TRUE
,
78 const int width
= wxCHOICE_WIDTH
, const int height
= wxCHOICE_HEIGHT
);
80 // Return client data instead
81 char* WXDLLEXPORT
wxGetSingleChoiceData(const wxString
& message
, const wxString
& caption
,
82 const int n
, const wxString
*choices
, char **client_data
,
83 wxWindow
*parent
= NULL
, const int x
= -1, const int y
= -1,
84 const bool centre
= TRUE
,
85 const int width
= wxCHOICE_WIDTH
, const int height
= wxCHOICE_HEIGHT
);
87 char* WXDLLEXPORT
wxGetSingleChoiceData(const wxString
& message
, const wxString
& caption
,
88 const int n
, char *choices
[], char **client_data
,
89 wxWindow
*parent
= NULL
, const int x
= -1, const int y
= -1,
90 const bool centre
= TRUE
,
91 const int width
= wxCHOICE_WIDTH
, const int height
= wxCHOICE_HEIGHT
);
94 int WXDLLEXPORT wxGetMultipleChoice(const wxString& message, const wxString& caption,
95 const int n, const wxString *choices,
96 const int nsel, int * selection,
97 wxWindow *parent = NULL, const int x = -1 , const int y = -1, const bool centre = TRUE,
98 const int width = wxCHOICE_WIDTH, const int height = wxCHOICE_HEIGHT);