]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
2ee3ee1b | 2 | // Name: wx/msw/listbox.h |
2bda0e17 KB |
3 | // Purpose: wxListBox class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_LISTBOX_H_ |
13 | #define _WX_LISTBOX_H_ | |
2bda0e17 | 14 | |
1e6feb95 VZ |
15 | #if wxUSE_LISTBOX |
16 | ||
2ee3ee1b VZ |
17 | // ---------------------------------------------------------------------------- |
18 | // simple types | |
19 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 20 | |
47d67540 | 21 | #if wxUSE_OWNER_DRAWN |
2bda0e17 KB |
22 | class WXDLLEXPORT wxOwnerDrawn; |
23 | ||
24 | // define the array of list box items | |
ace954f1 | 25 | #include "wx/dynarray.h" |
184b5d99 | 26 | |
d5d29b8a | 27 | WX_DEFINE_EXPORTED_ARRAY_PTR(wxOwnerDrawn *, wxListBoxItemsArray); |
2ee3ee1b | 28 | #endif // wxUSE_OWNER_DRAWN |
2bda0e17 | 29 | |
7f17c6db | 30 | // forward decl for GetSelections() |
446e5259 | 31 | class WXDLLIMPEXP_BASE wxArrayInt; |
7f17c6db | 32 | |
2ee3ee1b VZ |
33 | // ---------------------------------------------------------------------------- |
34 | // List box control | |
35 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 36 | |
2ee3ee1b | 37 | class WXDLLEXPORT wxListBox : public wxListBoxBase |
2bda0e17 | 38 | { |
bfc6fde4 | 39 | public: |
2ee3ee1b | 40 | // ctors and such |
bfc6fde4 VZ |
41 | wxListBox(); |
42 | wxListBox(wxWindow *parent, wxWindowID id, | |
43 | const wxPoint& pos = wxDefaultPosition, | |
44 | const wxSize& size = wxDefaultSize, | |
45 | int n = 0, const wxString choices[] = NULL, | |
46 | long style = 0, | |
47 | const wxValidator& validator = wxDefaultValidator, | |
6463b9f5 JS |
48 | const wxString& name = wxListBoxNameStr) |
49 | { | |
50 | Create(parent, id, pos, size, n, choices, style, validator, name); | |
51 | } | |
584ad2a3 MB |
52 | wxListBox(wxWindow *parent, wxWindowID id, |
53 | const wxPoint& pos, | |
54 | const wxSize& size, | |
55 | const wxArrayString& choices, | |
56 | long style = 0, | |
57 | const wxValidator& validator = wxDefaultValidator, | |
58 | const wxString& name = wxListBoxNameStr) | |
59 | { | |
60 | Create(parent, id, pos, size, choices, style, validator, name); | |
61 | } | |
bfc6fde4 VZ |
62 | |
63 | bool Create(wxWindow *parent, wxWindowID id, | |
2ee3ee1b VZ |
64 | const wxPoint& pos = wxDefaultPosition, |
65 | const wxSize& size = wxDefaultSize, | |
66 | int n = 0, const wxString choices[] = NULL, | |
67 | long style = 0, | |
68 | const wxValidator& validator = wxDefaultValidator, | |
69 | const wxString& name = wxListBoxNameStr); | |
584ad2a3 MB |
70 | bool Create(wxWindow *parent, wxWindowID id, |
71 | const wxPoint& pos, | |
72 | const wxSize& size, | |
73 | const wxArrayString& choices, | |
74 | long style = 0, | |
75 | const wxValidator& validator = wxDefaultValidator, | |
76 | const wxString& name = wxListBoxNameStr); | |
bfc6fde4 | 77 | |
2ee3ee1b | 78 | virtual ~wxListBox(); |
bfc6fde4 | 79 | |
2ee3ee1b VZ |
80 | // implement base class pure virtuals |
81 | virtual void Clear(); | |
aa61d352 | 82 | virtual void Delete(unsigned int n); |
2ee3ee1b | 83 | |
aa61d352 VZ |
84 | virtual unsigned int GetCount() const; |
85 | virtual wxString GetString(unsigned int n) const; | |
86 | virtual void SetString(unsigned int n, const wxString& s); | |
853dcc57 | 87 | virtual int FindString(const wxString& s, bool bCase = false) const; |
2ee3ee1b VZ |
88 | |
89 | virtual bool IsSelected(int n) const; | |
2ee3ee1b VZ |
90 | virtual int GetSelection() const; |
91 | virtual int GetSelections(wxArrayInt& aSelections) const; | |
92 | ||
2ee3ee1b | 93 | // wxCheckListBox support |
47d67540 | 94 | #if wxUSE_OWNER_DRAWN |
bfc6fde4 VZ |
95 | bool MSWOnMeasure(WXMEASUREITEMSTRUCT *item); |
96 | bool MSWOnDraw(WXDRAWITEMSTRUCT *item); | |
2bda0e17 | 97 | |
bfc6fde4 | 98 | // plug-in for derived classes |
2b5f62a0 | 99 | virtual wxOwnerDrawn *CreateLboxItem(size_t n); |
2bda0e17 | 100 | |
bfc6fde4 VZ |
101 | // allows to get the item and use SetXXX functions to set it's appearance |
102 | wxOwnerDrawn *GetItem(size_t n) const { return m_aItems[n]; } | |
dd3c394a VZ |
103 | |
104 | // get the index of the given item | |
105 | int GetItemIndex(wxOwnerDrawn *item) const { return m_aItems.Index(item); } | |
bfc6fde4 | 106 | #endif // wxUSE_OWNER_DRAWN |
2bda0e17 | 107 | |
fca418ae VZ |
108 | // Windows-specific code to update the horizontal extent of the listbox, if |
109 | // necessary. If s is non-empty, the horizontal extent is increased to the | |
110 | // length of this string if it's currently too short, otherwise the maximum | |
111 | // extent of all strings is used. In any case calls InvalidateBestSize() | |
bfc6fde4 | 112 | virtual void SetHorizontalExtent(const wxString& s = wxEmptyString); |
2bda0e17 | 113 | |
2ee3ee1b | 114 | // Windows callbacks |
2ee3ee1b | 115 | bool MSWCommand(WXUINT param, WXWORD id); |
6f02a879 VZ |
116 | WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const; |
117 | ||
118 | // under XP when using "transition effect for menus and tooltips" if we | |
119 | // return true for WM_PRINTCLIENT here then it causes noticable slowdown | |
120 | virtual bool MSWShouldPropagatePrintChild() | |
121 | { | |
122 | return false; | |
123 | } | |
2bda0e17 | 124 | |
7a69cd96 VZ |
125 | virtual wxVisualAttributes GetDefaultAttributes() const |
126 | { | |
127 | return GetClassDefaultAttributes(GetWindowVariant()); | |
128 | } | |
129 | ||
130 | static wxVisualAttributes | |
131 | GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL) | |
132 | { | |
133 | return GetCompositeControlsDefaultAttributes(variant); | |
134 | } | |
2bda0e17 | 135 | |
bfc6fde4 | 136 | protected: |
6f02a879 VZ |
137 | virtual void DoSetSelection(int n, bool select); |
138 | virtual int DoAppend(const wxString& item); | |
aa61d352 | 139 | virtual void DoInsertItems(const wxArrayString& items, unsigned int pos); |
6f02a879 VZ |
140 | virtual void DoSetItems(const wxArrayString& items, void **clientData); |
141 | virtual void DoSetFirstItem(int n); | |
aa61d352 VZ |
142 | virtual void DoSetItemClientData(unsigned int n, void* clientData); |
143 | virtual void* DoGetItemClientData(unsigned int n) const; | |
144 | virtual void DoSetItemClientObject(unsigned int n, wxClientData* clientData); | |
145 | virtual wxClientData* DoGetItemClientObject(unsigned int n) const; | |
c00fed0e | 146 | virtual int DoListHitTest(const wxPoint& point) const; |
7a69cd96 | 147 | |
8ee9d618 VZ |
148 | // free memory (common part of Clear() and dtor) |
149 | void Free(); | |
150 | ||
aa61d352 | 151 | unsigned int m_noItems; |
bfc6fde4 | 152 | int m_selected; |
2bda0e17 | 153 | |
f68586e5 | 154 | virtual wxSize DoGetBestSize() const; |
b908d224 | 155 | |
47d67540 | 156 | #if wxUSE_OWNER_DRAWN |
bfc6fde4 VZ |
157 | // control items |
158 | wxListBoxItemsArray m_aItems; | |
2bda0e17 | 159 | #endif |
2ee3ee1b VZ |
160 | |
161 | private: | |
fc7a2a60 | 162 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxListBox) |
2bda0e17 KB |
163 | }; |
164 | ||
1e6feb95 VZ |
165 | #endif // wxUSE_LISTBOX |
166 | ||
2bda0e17 | 167 | #endif |
bbcdf8bc | 168 | // _WX_LISTBOX_H_ |