1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/ctrlsub.h (read: "wxConTRoL with SUBitems")
3 // Purpose: wxControlWithItems interface
4 // Author: Vadim Zeitlin
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_CTRLSUB_H_BASE_
13 #define _WX_CTRLSUB_H_BASE_
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "controlwithitems.h"
21 #include "wx/control.h" // base class
23 // ----------------------------------------------------------------------------
24 // wxItemContainer defines an interface which is implemented by all controls
25 // which have string subitems each of which may be selected.
27 // Examples: wxListBox, wxCheckListBox, wxChoice and wxComboBox (which
28 // implements an extended interface deriving from this one)
29 // ----------------------------------------------------------------------------
31 class WXDLLEXPORT wxItemContainer
34 wxItemContainer() { m_clientDataItemsType
= wxClientData_None
; }
35 virtual ~wxItemContainer();
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
; }
47 // only for rtti needs (separate name)
48 void AppendString( const wxString
& item
)
51 // append several items at once to the control
52 void Append(const wxArrayString
& strings
);
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
);
62 virtual void Clear() = 0;
63 virtual void Delete(int n
) = 0;
68 virtual int GetCount() const = 0;
69 bool IsEmpty() const { return GetCount() == 0; }
71 virtual wxString
GetString(int n
) const = 0;
72 wxArrayString
GetStrings() const;
73 virtual void SetString(int n
, const wxString
& s
) = 0;
74 virtual int FindString(const wxString
& s
) const = 0;
79 virtual void Select(int n
) = 0;
80 virtual int GetSelection() const = 0;
82 wxString
GetStringSelection() const;
88 void SetClientData(int n
, void* clientData
);
89 void* GetClientData(int n
) const;
91 void SetClientObject(int n
, wxClientData
* clientData
);
92 wxClientData
* GetClientObject(int n
) const;
94 bool HasClientObjectData() const
95 { return m_clientDataItemsType
== wxClientData_Object
; }
96 bool HasClientUntypedData() const
97 { return m_clientDataItemsType
== wxClientData_Void
; }
99 #if WXWIN_COMPATIBILITY_2_2
100 // compatibility - these functions are deprecated, use the new ones
102 int Number() const { return GetCount(); }
103 #endif // WXWIN_COMPATIBILITY_2_2
106 virtual int DoAppend(const wxString
& item
) = 0;
107 virtual int DoInsert(const wxString
& item
, int pos
) = 0;
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;
114 // the type of the client data for the items
115 wxClientDataType m_clientDataItemsType
;
118 // this macro must (unfortunately) be used in any class deriving from both
119 // wxItemContainer and wxControl because otherwise there is ambiguity when
120 // calling GetClientXXX() functions -- the compiler can't choose between the
122 #define wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST \
123 void SetClientData(void *data) \
124 { wxControl::SetClientData(data); } \
125 void *GetClientData() const \
126 { return wxControl::GetClientData(); } \
127 void SetClientObject(wxClientData *data) \
128 { wxControl::SetClientObject(data); } \
129 wxClientData *GetClientObject() const \
130 { return wxControl::GetClientObject(); } \
131 void SetClientData(int n, void* clientData) \
132 { wxItemContainer::SetClientData(n, clientData); } \
133 void* GetClientData(int n) const \
134 { return wxItemContainer::GetClientData(n); } \
135 void SetClientObject(int n, wxClientData* clientData) \
136 { wxItemContainer::SetClientObject(n, clientData); } \
137 wxClientData* GetClientObject(int n) const \
138 { return wxItemContainer::GetClientObject(n); }
140 class WXDLLEXPORT wxControlWithItems
: public wxControl
, public wxItemContainer
143 wxControlWithItems() { }
144 virtual ~wxControlWithItems();
146 // we have to redefine these functions here to avoid ambiguities in classes
147 // deriving from us which would arise otherwise because both base classses
148 // have the methods with the same names - hopefully, a smart compiler can
149 // optimize away these simple inline wrappers so we don't suffer much from
151 wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST
153 // usually the controls like list/combo boxes have their own background
155 virtual bool ShouldInheritColours() const { return false; }
158 // we can't compute our best size before the items are added to the control
159 // which is done after calling SetInitialBestSize() (it is called from the
160 // base class ctor and the items are added in the derived class ctor), so
161 // don't do anything at all here as our size will be changed later anyhow
163 // of course, all derived classes *must* call SetBestSize() from their
164 // ctors for this to work!
165 virtual void SetInitialBestSize(const wxSize
& WXUNUSED(size
)) { }
168 DECLARE_NO_COPY_CLASS(wxControlWithItems
)
171 #endif // wxUSE_CONTROLS
173 #endif // _WX_CTRLSUB_H_BASE_