]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/choice.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxChoice class interface
4 // Author: Vadim Zeitlin
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_CHOICE_H_BASE_
13 #define _WX_CHOICE_H_BASE_
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
20 #pragma interface "choicebase.h"
25 #include "wx/ctrlsub.h" // the base class
27 // ----------------------------------------------------------------------------
29 // ----------------------------------------------------------------------------
31 extern WXDLLEXPORT_DATA(const wxChar
*) wxChoiceNameStr
;
33 // ----------------------------------------------------------------------------
34 // wxChoice allows to select one of a non-modifiable list of strings
35 // ----------------------------------------------------------------------------
37 class WXDLLEXPORT wxChoiceBase
: public wxControlWithItems
41 virtual ~wxChoiceBase();
43 // all generic methods are in wxControlWithItems
45 // set/get the number of columns in the control (as they're not supported on
46 // most platforms, they do nothing by default)
47 virtual void SetColumns(int WXUNUSED(n
) = 1 ) { }
48 virtual int GetColumns() const { return 1 ; }
50 // emulate selecting the item event.GetInt()
51 void Command(wxCommandEvent
& event
);
54 DECLARE_NO_COPY_CLASS(wxChoiceBase
)
57 // ----------------------------------------------------------------------------
58 // include the platform-dependent class definition
59 // ----------------------------------------------------------------------------
61 #if defined(__WXUNIVERSAL__)
62 #include "wx/univ/choice.h"
63 #elif defined(__SMARTPHONE__) && defined(__WXWINCE__)
64 #include "wx/msw/wince/choicece.h"
65 #elif defined(__WXMSW__)
66 #include "wx/msw/choice.h"
67 #elif defined(__WXMOTIF__)
68 #include "wx/motif/choice.h"
69 #elif defined(__WXGTK__)
70 #include "wx/gtk/choice.h"
71 #elif defined(__WXMAC__)
72 #include "wx/mac/choice.h"
73 #elif defined(__WXCOCOA__)
74 #include "wx/cocoa/choice.h"
75 #elif defined(__WXPM__)
76 #include "wx/os2/choice.h"
79 #endif // wxUSE_CHOICE