]>
Commit | Line | Data |
---|---|---|
9b6dbb09 | 1 | ///////////////////////////////////////////////////////////////////////////// |
853dcc57 | 2 | // Name: wx/motif/choice.h |
9b6dbb09 JS |
3 | // Purpose: wxChoice class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
853dcc57 | 9 | // Licence: wxWindows licence |
9b6dbb09 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_CHOICE_H_ | |
13 | #define _WX_CHOICE_H_ | |
14 | ||
ec75d791 | 15 | #include "wx/clntdata.h" |
ec75d791 | 16 | |
3bdb8629 MB |
17 | #ifndef wxWIDGET_ARRAY_DEFINED |
18 | #define wxWIDGET_ARRAY_DEFINED | |
19 | ||
20 | #include "wx/dynarray.h" | |
4b4f6e0f | 21 | WX_DEFINE_ARRAY_PTR(WXWidget, wxWidgetArray); |
3bdb8629 | 22 | #endif |
ec75d791 | 23 | |
9b6dbb09 | 24 | // Choice item |
c33c81c3 | 25 | class WXDLLEXPORT wxChoice: public wxChoiceBase |
9b6dbb09 | 26 | { |
bfc6fde4 | 27 | DECLARE_DYNAMIC_CLASS(wxChoice) |
ec75d791 | 28 | |
bfc6fde4 VZ |
29 | public: |
30 | wxChoice(); | |
31 | ~wxChoice(); | |
853dcc57 | 32 | |
bfc6fde4 | 33 | wxChoice(wxWindow *parent, wxWindowID id, |
83df96d6 JS |
34 | const wxPoint& pos = wxDefaultPosition, |
35 | const wxSize& size = wxDefaultSize, | |
36 | int n = 0, const wxString choices[] = NULL, | |
37 | long style = 0, | |
38 | const wxValidator& validator = wxDefaultValidator, | |
39 | const wxString& name = wxChoiceNameStr) | |
bfc6fde4 | 40 | { |
ec75d791 | 41 | Init(); |
bfc6fde4 VZ |
42 | Create(parent, id, pos, size, n, choices, style, validator, name); |
43 | } | |
853dcc57 | 44 | |
584ad2a3 MB |
45 | wxChoice(wxWindow *parent, wxWindowID id, |
46 | const wxPoint& pos, | |
47 | const wxSize& size, | |
48 | const wxArrayString& choices, | |
49 | long style = 0, | |
50 | const wxValidator& validator = wxDefaultValidator, | |
51 | const wxString& name = wxChoiceNameStr) | |
52 | { | |
53 | Init(); | |
54 | Create(parent, id, pos, size, choices, style, validator, name); | |
55 | } | |
56 | ||
bfc6fde4 | 57 | bool Create(wxWindow *parent, wxWindowID id, |
83df96d6 JS |
58 | const wxPoint& pos = wxDefaultPosition, |
59 | const wxSize& size = wxDefaultSize, | |
60 | int n = 0, const wxString choices[] = NULL, | |
61 | long style = 0, | |
62 | const wxValidator& validator = wxDefaultValidator, | |
584ad2a3 MB |
63 | const wxString& name = wxChoiceNameStr); |
64 | ||
65 | bool Create(wxWindow *parent, wxWindowID id, | |
66 | const wxPoint& pos, | |
67 | const wxSize& size, | |
68 | const wxArrayString& choices, | |
69 | long style = 0, | |
70 | const wxValidator& validator = wxDefaultValidator, | |
83df96d6 | 71 | const wxString& name = wxChoiceNameStr); |
ec75d791 MB |
72 | |
73 | // implementation of wxControlWithItems | |
6adaedf0 JS |
74 | virtual int GetCount() const; |
75 | virtual int DoAppend(const wxString& item); | |
243dbf1a | 76 | virtual int DoInsert(const wxString& item, int pos); |
6adaedf0 JS |
77 | virtual void DoSetItemClientData(int n, void* clientData); |
78 | virtual void* DoGetItemClientData(int n) const; | |
79 | virtual void DoSetItemClientObject(int n, wxClientData* clientData); | |
80 | virtual wxClientData* DoGetItemClientObject(int n) const; | |
ec75d791 | 81 | virtual int GetSelection() const; |
bfc6fde4 VZ |
82 | virtual void Delete(int n); |
83 | virtual void Clear(); | |
ec75d791 MB |
84 | virtual void SetString(int n, const wxString& s); |
85 | virtual wxString GetString(int n) const; | |
86 | ||
87 | // implementation of wxChoiceBase | |
bfc6fde4 | 88 | virtual void SetSelection(int n); |
bfc6fde4 VZ |
89 | virtual void SetColumns(int n = 1 ); |
90 | virtual int GetColumns() const ; | |
853dcc57 WS |
91 | |
92 | // Original API | |
ec75d791 | 93 | virtual void Command(wxCommandEvent& event); |
853dcc57 | 94 | |
bfc6fde4 | 95 | void SetFocus(); |
853dcc57 | 96 | |
bfc6fde4 | 97 | // Implementation |
96be256b | 98 | virtual void ChangeFont(bool keepOriginalSize = true); |
bfc6fde4 VZ |
99 | virtual void ChangeBackgroundColour(); |
100 | virtual void ChangeForegroundColour(); | |
101 | WXWidget GetTopWidget() const { return m_formWidget; } | |
102 | WXWidget GetMainWidget() const { return m_buttonWidget; } | |
ec75d791 MB |
103 | |
104 | virtual wxSize DoGetBestSize() const; | |
105 | ||
106 | // implementation, for wxChoiceCallback | |
107 | const wxWidgetArray& GetWidgets() const { return m_widgetArray; } | |
108 | const wxStringList& GetStrings() const { return m_stringList; } | |
9b6dbb09 | 109 | protected: |
ec75d791 MB |
110 | // minimum size for the text ctrl |
111 | wxSize GetItemsSize() const; | |
112 | // common part of all contructors | |
113 | void Init(); | |
114 | ||
fd304d98 | 115 | size_t m_noStrings; |
bfc6fde4 VZ |
116 | WXWidget m_menuWidget; |
117 | WXWidget m_buttonWidget; | |
ec75d791 | 118 | wxWidgetArray m_widgetArray; |
bfc6fde4 VZ |
119 | WXWidget m_formWidget; |
120 | wxStringList m_stringList; | |
ec75d791 | 121 | wxClientDataDictionary m_clientDataDict; |
853dcc57 | 122 | |
bfc6fde4 | 123 | virtual void DoSetSize(int x, int y, |
83df96d6 JS |
124 | int width, int height, |
125 | int sizeFlags = wxSIZE_AUTO); | |
9b6dbb09 JS |
126 | }; |
127 | ||
128 | #endif | |
83df96d6 | 129 | // _WX_CHOICE_H_ |