]> git.saurik.com Git - wxWidgets.git/blame - include/wx/ctrlsub.h
Added GetBitmap, GetIcon to wxImageList
[wxWidgets.git] / include / wx / ctrlsub.h
CommitLineData
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$
77ffb593 8// Copyright: (c) wxWidgets team
65571936 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//
8ba7c771
VZ
27// It is decomposed in wxItemContainerImmutable which omits all methods
28// adding/removing items and is used by wxRadioBox and wxItemContainer itself.
29//
1e6feb95
VZ
30// Examples: wxListBox, wxCheckListBox, wxChoice and wxComboBox (which
31// implements an extended interface deriving from this one)
6c8a980f
VZ
32// ----------------------------------------------------------------------------
33
8ba7c771
VZ
34class WXDLLEXPORT wxItemContainerImmutable
35{
36public:
37 wxItemContainerImmutable() { }
38 virtual ~wxItemContainerImmutable();
39
40 // accessing strings
41 // -----------------
42
43 virtual int GetCount() const = 0;
44 bool IsEmpty() const { return GetCount() == 0; }
45
46 virtual wxString GetString(int n) const = 0;
47 wxArrayString GetStrings() const;
48 virtual void SetString(int n, const wxString& s) = 0;
49 virtual int FindString(const wxString& s) const = 0;
50
51
52 // selection
53 // ---------
54
55 virtual void SetSelection(int n) = 0;
56 virtual int GetSelection() const = 0;
57
58 // set selection to the specified string, return false if not found
59 bool SetStringSelection(const wxString& s);
60
61 // return the selected string or empty string if none
62 wxString GetStringSelection() const;
63
64 // this is the same as SetSelection( for single-selection controls but
65 // reads better for multi-selection ones
66 void Select(int n) { SetSelection(n); }
67
789f6795
WS
68
69protected:
70
71 // check that the index is valid
72 inline bool IsValid(int n) const { return n >= 0 && n < GetCount(); }
8ba7c771
VZ
73};
74
75class WXDLLEXPORT wxItemContainer : public wxItemContainerImmutable
6c8a980f
VZ
76{
77public:
6463b9f5 78 wxItemContainer() { m_clientDataItemsType = wxClientData_None; }
799ea011 79 virtual ~wxItemContainer();
6c8a980f
VZ
80
81 // adding items
82 // ------------
83
1e6feb95
VZ
84 int Append(const wxString& item)
85 { return DoAppend(item); }
86 int Append(const wxString& item, void *clientData)
87 { int n = DoAppend(item); SetClientData(n, clientData); return n; }
88 int Append(const wxString& item, wxClientData *clientData)
89 { int n = DoAppend(item); SetClientObject(n, clientData); return n; }
6c8a980f 90
1978421a
SC
91 // only for rtti needs (separate name)
92 void AppendString( const wxString& item)
64fa6f16 93 { Append( item ); }
1978421a 94
0e0bc921
VZ
95 // append several items at once to the control
96 void Append(const wxArrayString& strings);
97
243dbf1a
VZ
98 int Insert(const wxString& item, int pos)
99 { return DoInsert(item, pos); }
100 int Insert(const wxString& item, int pos, void *clientData);
101 int Insert(const wxString& item, int pos, wxClientData *clientData);
102
6c8a980f
VZ
103 // deleting items
104 // --------------
105
106 virtual void Clear() = 0;
107 virtual void Delete(int n) = 0;
108
6c8a980f
VZ
109 // misc
110 // ----
111
112 // client data stuff
113 void SetClientData(int n, void* clientData);
114 void* GetClientData(int n) const;
115
116 void SetClientObject(int n, wxClientData* clientData);
117 wxClientData* GetClientObject(int n) const;
118
119 bool HasClientObjectData() const
1e6feb95 120 { return m_clientDataItemsType == wxClientData_Object; }
6c8a980f 121 bool HasClientUntypedData() const
1e6feb95 122 { return m_clientDataItemsType == wxClientData_Void; }
6c8a980f 123
62e26542 124#if WXWIN_COMPATIBILITY_2_2
6c8a980f
VZ
125 // compatibility - these functions are deprecated, use the new ones
126 // instead
2d67974d 127 wxDEPRECATED( int Number() const );
62e26542 128#endif // WXWIN_COMPATIBILITY_2_2
1e6feb95 129
6c8a980f
VZ
130protected:
131 virtual int DoAppend(const wxString& item) = 0;
243dbf1a 132 virtual int DoInsert(const wxString& item, int pos) = 0;
6c8a980f
VZ
133
134 virtual void DoSetItemClientData(int n, void* clientData) = 0;
135 virtual void* DoGetItemClientData(int n) const = 0;
136 virtual void DoSetItemClientObject(int n, wxClientData* clientData) = 0;
137 virtual wxClientData* DoGetItemClientObject(int n) const = 0;
138
139 // the type of the client data for the items
140 wxClientDataType m_clientDataItemsType;
141};
142
0ae0bb79
VZ
143// this macro must (unfortunately) be used in any class deriving from both
144// wxItemContainer and wxControl because otherwise there is ambiguity when
145// calling GetClientXXX() functions -- the compiler can't choose between the
146// two versions
147#define wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST \
148 void SetClientData(void *data) \
149 { wxControl::SetClientData(data); } \
150 void *GetClientData() const \
151 { return wxControl::GetClientData(); } \
152 void SetClientObject(wxClientData *data) \
153 { wxControl::SetClientObject(data); } \
154 wxClientData *GetClientObject() const \
155 { return wxControl::GetClientObject(); } \
156 void SetClientData(int n, void* clientData) \
157 { wxItemContainer::SetClientData(n, clientData); } \
158 void* GetClientData(int n) const \
159 { return wxItemContainer::GetClientData(n); } \
160 void SetClientObject(int n, wxClientData* clientData) \
161 { wxItemContainer::SetClientObject(n, clientData); } \
162 wxClientData* GetClientObject(int n) const \
163 { return wxItemContainer::GetClientObject(n); }
164
1e6feb95
VZ
165class WXDLLEXPORT wxControlWithItems : public wxControl, public wxItemContainer
166{
167public:
6463b9f5 168 wxControlWithItems() { }
7c720ce6 169 virtual ~wxControlWithItems();
0ae0bb79 170
1e6feb95
VZ
171 // we have to redefine these functions here to avoid ambiguities in classes
172 // deriving from us which would arise otherwise because both base classses
173 // have the methods with the same names - hopefully, a smart compiler can
174 // optimize away these simple inline wrappers so we don't suffer much from
175 // this
0ae0bb79 176 wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST
fc7a2a60 177
d4864e97
VZ
178 // usually the controls like list/combo boxes have their own background
179 // colour
180 virtual bool ShouldInheritColours() const { return false; }
181
929bd5fd
VZ
182protected:
183 // we can't compute our best size before the items are added to the control
184 // which is done after calling SetInitialBestSize() (it is called from the
185 // base class ctor and the items are added in the derived class ctor), so
186 // don't do anything at all here as our size will be changed later anyhow
187 //
188 // of course, all derived classes *must* call SetBestSize() from their
189 // ctors for this to work!
190 virtual void SetInitialBestSize(const wxSize& WXUNUSED(size)) { }
191
fc7a2a60 192private:
aa3d520a 193 DECLARE_NO_COPY_CLASS(wxControlWithItems)
1e6feb95
VZ
194};
195
c6179a84
VZ
196
197// ----------------------------------------------------------------------------
198// inline functions
199// ----------------------------------------------------------------------------
200
201#if WXWIN_COMPATIBILITY_2_2
202
203inline int wxItemContainer::Number() const
204{
205 return GetCount();
206}
207
208#endif // WXWIN_COMPATIBILITY_2_2
209
1e6feb95 210#endif // wxUSE_CONTROLS
6c8a980f 211
1e6feb95 212#endif // _WX_CTRLSUB_H_BASE_
6c8a980f 213