]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/choice.h | |
3 | // Purpose: wxChoice class interface | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 26.07.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) wxWidgets team | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_CHOICE_H_BASE_ | |
13 | #define _WX_CHOICE_H_BASE_ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
20 | #pragma interface "choicebase.h" | |
21 | #endif | |
22 | ||
23 | #include "wx/defs.h" | |
24 | ||
25 | #if wxUSE_CHOICE | |
26 | ||
27 | #include "wx/ctrlsub.h" // the base class | |
28 | ||
29 | // ---------------------------------------------------------------------------- | |
30 | // global data | |
31 | // ---------------------------------------------------------------------------- | |
32 | ||
33 | extern WXDLLEXPORT_DATA(const wxChar*) wxChoiceNameStr; | |
34 | ||
35 | // ---------------------------------------------------------------------------- | |
36 | // wxChoice allows to select one of a non-modifiable list of strings | |
37 | // ---------------------------------------------------------------------------- | |
38 | ||
39 | class WXDLLEXPORT wxChoiceBase : public wxControlWithItems | |
40 | { | |
41 | public: | |
42 | wxChoiceBase() { } | |
43 | virtual ~wxChoiceBase(); | |
44 | ||
45 | // all generic methods are in wxControlWithItems | |
46 | ||
47 | // set/get the number of columns in the control (as they're not supported on | |
48 | // most platforms, they do nothing by default) | |
49 | virtual void SetColumns(int WXUNUSED(n) = 1 ) { } | |
50 | virtual int GetColumns() const { return 1 ; } | |
51 | ||
52 | // emulate selecting the item event.GetInt() | |
53 | void Command(wxCommandEvent& event); | |
54 | ||
55 | private: | |
56 | DECLARE_NO_COPY_CLASS(wxChoiceBase) | |
57 | }; | |
58 | ||
59 | // ---------------------------------------------------------------------------- | |
60 | // include the platform-dependent class definition | |
61 | // ---------------------------------------------------------------------------- | |
62 | ||
63 | #if defined(__WXUNIVERSAL__) | |
64 | #include "wx/univ/choice.h" | |
65 | #elif defined(__SMARTPHONE__) && defined(__WXWINCE__) | |
66 | #include "wx/msw/wince/choicece.h" | |
67 | #elif defined(__WXMSW__) | |
68 | #include "wx/msw/choice.h" | |
69 | #elif defined(__WXMOTIF__) | |
70 | #include "wx/motif/choice.h" | |
71 | #elif defined(__WXGTK__) | |
72 | #include "wx/gtk/choice.h" | |
73 | #elif defined(__WXMAC__) | |
74 | #include "wx/mac/choice.h" | |
75 | #elif defined(__WXCOCOA__) | |
76 | #include "wx/cocoa/choice.h" | |
77 | #elif defined(__WXPM__) | |
78 | #include "wx/os2/choice.h" | |
79 | #endif | |
80 | ||
81 | #endif // wxUSE_CHOICE | |
82 | ||
83 | #endif | |
84 | // _WX_CHOICE_H_BASE_ |