]>
Commit | Line | Data |
---|---|---|
6c8a980f VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/ctrlsub.h (read: "wxConTRoL with SUBitems") | |
3 | // Purpose: wxControlWithItems interface | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 22.10.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) wxWindows team | |
371a5b4e | 9 | // Licence: wxWindows licence |
6c8a980f VZ |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_CTRLSUB_H_BASE_ | |
13 | #define _WX_CTRLSUB_H_BASE_ | |
14 | ||
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
6c8a980f VZ |
16 | #pragma interface "controlwithitems.h" |
17 | #endif | |
18 | ||
1e6feb95 VZ |
19 | #if wxUSE_CONTROLS |
20 | ||
6c8a980f VZ |
21 | #include "wx/control.h" // base class |
22 | ||
23 | // ---------------------------------------------------------------------------- | |
1e6feb95 | 24 | // wxItemContainer defines an interface which is implemented by all controls |
6c8a980f VZ |
25 | // which have string subitems each of which may be selected. |
26 | // | |
1e6feb95 VZ |
27 | // Examples: wxListBox, wxCheckListBox, wxChoice and wxComboBox (which |
28 | // implements an extended interface deriving from this one) | |
6c8a980f VZ |
29 | // ---------------------------------------------------------------------------- |
30 | ||
1e6feb95 | 31 | class WXDLLEXPORT wxItemContainer |
6c8a980f VZ |
32 | { |
33 | public: | |
1e6feb95 | 34 | wxItemContainer() { m_clientDataItemsType = wxClientData_None; } |
799ea011 | 35 | virtual ~wxItemContainer(); |
6c8a980f VZ |
36 | |
37 | // adding items | |
38 | // ------------ | |
39 | ||
1e6feb95 VZ |
40 | int Append(const wxString& item) |
41 | { return DoAppend(item); } | |
42 | int Append(const wxString& item, void *clientData) | |
43 | { int n = DoAppend(item); SetClientData(n, clientData); return n; } | |
44 | int Append(const wxString& item, wxClientData *clientData) | |
45 | { int n = DoAppend(item); SetClientObject(n, clientData); return n; } | |
6c8a980f | 46 | |
1978421a SC |
47 | // only for rtti needs (separate name) |
48 | void AppendString( const wxString& item) | |
49 | { Append( item ) ; } | |
50 | ||
0e0bc921 VZ |
51 | // append several items at once to the control |
52 | void Append(const wxArrayString& strings); | |
53 | ||
243dbf1a VZ |
54 | int Insert(const wxString& item, int pos) |
55 | { return DoInsert(item, pos); } | |
56 | int Insert(const wxString& item, int pos, void *clientData); | |
57 | int Insert(const wxString& item, int pos, wxClientData *clientData); | |
58 | ||
6c8a980f VZ |
59 | // deleting items |
60 | // -------------- | |
61 | ||
62 | virtual void Clear() = 0; | |
63 | virtual void Delete(int n) = 0; | |
64 | ||
65 | // accessing strings | |
66 | // ----------------- | |
67 | ||
68 | virtual int GetCount() const = 0; | |
a8dade3e VZ |
69 | bool IsEmpty() const { return GetCount() == 0; } |
70 | ||
6c8a980f | 71 | virtual wxString GetString(int n) const = 0; |
1978421a | 72 | wxArrayString GetStrings() const; |
6c8a980f VZ |
73 | virtual void SetString(int n, const wxString& s) = 0; |
74 | virtual int FindString(const wxString& s) const = 0; | |
75 | ||
76 | // selection | |
77 | // --------- | |
78 | ||
79 | virtual void Select(int n) = 0; | |
80 | virtual int GetSelection() const = 0; | |
81 | ||
82 | wxString GetStringSelection() const; | |
83 | ||
84 | // misc | |
85 | // ---- | |
86 | ||
87 | // client data stuff | |
88 | void SetClientData(int n, void* clientData); | |
89 | void* GetClientData(int n) const; | |
90 | ||
91 | void SetClientObject(int n, wxClientData* clientData); | |
92 | wxClientData* GetClientObject(int n) const; | |
93 | ||
94 | bool HasClientObjectData() const | |
1e6feb95 | 95 | { return m_clientDataItemsType == wxClientData_Object; } |
6c8a980f | 96 | bool HasClientUntypedData() const |
1e6feb95 | 97 | { return m_clientDataItemsType == wxClientData_Void; } |
6c8a980f | 98 | |
62e26542 | 99 | #if WXWIN_COMPATIBILITY_2_2 |
6c8a980f VZ |
100 | // compatibility - these functions are deprecated, use the new ones |
101 | // instead | |
102 | int Number() const { return GetCount(); } | |
62e26542 | 103 | #endif // WXWIN_COMPATIBILITY_2_2 |
1e6feb95 | 104 | |
6c8a980f VZ |
105 | protected: |
106 | virtual int DoAppend(const wxString& item) = 0; | |
243dbf1a | 107 | virtual int DoInsert(const wxString& item, int pos) = 0; |
6c8a980f VZ |
108 | |
109 | virtual void DoSetItemClientData(int n, void* clientData) = 0; | |
110 | virtual void* DoGetItemClientData(int n) const = 0; | |
111 | virtual void DoSetItemClientObject(int n, wxClientData* clientData) = 0; | |
112 | virtual wxClientData* DoGetItemClientObject(int n) const = 0; | |
113 | ||
114 | // the type of the client data for the items | |
115 | wxClientDataType m_clientDataItemsType; | |
116 | }; | |
117 | ||
1e6feb95 VZ |
118 | class WXDLLEXPORT wxControlWithItems : public wxControl, public wxItemContainer |
119 | { | |
120 | public: | |
7c720ce6 GD |
121 | wxControlWithItems() { } |
122 | virtual ~wxControlWithItems(); | |
123 | ||
1e6feb95 VZ |
124 | // we have to redefine these functions here to avoid ambiguities in classes |
125 | // deriving from us which would arise otherwise because both base classses | |
126 | // have the methods with the same names - hopefully, a smart compiler can | |
127 | // optimize away these simple inline wrappers so we don't suffer much from | |
128 | // this | |
129 | ||
130 | void SetClientData(void *data) | |
131 | { | |
132 | wxControl::SetClientData(data); | |
133 | } | |
134 | ||
135 | void *GetClientData() const | |
136 | { | |
137 | return wxControl::GetClientData(); | |
138 | } | |
139 | ||
140 | void SetClientObject(wxClientData *data) | |
141 | { | |
142 | wxControl::SetClientObject(data); | |
143 | } | |
144 | ||
145 | wxClientData *GetClientObject() const | |
146 | { | |
147 | return wxControl::GetClientObject(); | |
148 | } | |
149 | ||
150 | void SetClientData(int n, void* clientData) | |
151 | { | |
152 | wxItemContainer::SetClientData(n, clientData); | |
153 | } | |
154 | ||
155 | void* GetClientData(int n) const | |
156 | { | |
157 | return wxItemContainer::GetClientData(n); | |
158 | } | |
159 | ||
160 | void SetClientObject(int n, wxClientData* clientData) | |
161 | { | |
162 | wxItemContainer::SetClientObject(n, clientData); | |
163 | } | |
164 | ||
165 | wxClientData* GetClientObject(int n) const | |
166 | { | |
167 | return wxItemContainer::GetClientObject(n); | |
168 | } | |
fc7a2a60 VZ |
169 | |
170 | private: | |
aa3d520a | 171 | DECLARE_NO_COPY_CLASS(wxControlWithItems) |
1e6feb95 VZ |
172 | }; |
173 | ||
174 | #endif // wxUSE_CONTROLS | |
6c8a980f | 175 | |
1e6feb95 | 176 | #endif // _WX_CTRLSUB_H_BASE_ |
6c8a980f | 177 |