compatibility/compilation fix
[wxWidgets.git] / include / wx / listctrl.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/listctrl.h
3 // Purpose: wxListCtrl class
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 04.12.99
7 // RCS-ID: $Id$
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_LISTCTRL_H_BASE_
13 #define _WX_LISTCTRL_H_BASE_
14
15 #ifdef __GNUG__
16 #pragma interface "listctrlbase.h"
17 #endif
18
19 // ----------------------------------------------------------------------------
20 // types
21 // ----------------------------------------------------------------------------
22
23 // type of compare function for wxListCtrl sort operation
24 typedef int (wxCALLBACK *wxListCtrlCompare)(long item1, long item2, long sortData);
25
26 // ----------------------------------------------------------------------------
27 // wxListCtrl constants
28 // ----------------------------------------------------------------------------
29
30 // Mask flags to tell app/GUI what fields of wxListItem are valid
31 #define wxLIST_MASK_STATE 0x0001
32 #define wxLIST_MASK_TEXT 0x0002
33 #define wxLIST_MASK_IMAGE 0x0004
34 #define wxLIST_MASK_DATA 0x0008
35 #define wxLIST_SET_ITEM 0x0010
36 #define wxLIST_MASK_WIDTH 0x0020
37 #define wxLIST_MASK_FORMAT 0x0040
38
39 // State flags for indicating the state of an item
40 #define wxLIST_STATE_DONTCARE 0x0000
41 #define wxLIST_STATE_DROPHILITED 0x0001 // MSW only
42 #define wxLIST_STATE_FOCUSED 0x0002
43 #define wxLIST_STATE_SELECTED 0x0004
44 #define wxLIST_STATE_CUT 0x0008 // MSW only
45
46 // Hit test flags, used in HitTest
47 #define wxLIST_HITTEST_ABOVE 0x0001 // Above the client area.
48 #define wxLIST_HITTEST_BELOW 0x0002 // Below the client area.
49 #define wxLIST_HITTEST_NOWHERE 0x0004 // In the client area but below the last item.
50 #define wxLIST_HITTEST_ONITEMICON 0x0020 // On the bitmap associated with an item.
51 #define wxLIST_HITTEST_ONITEMLABEL 0x0080 // On the label (string) associated with an item.
52 #define wxLIST_HITTEST_ONITEMRIGHT 0x0100 // In the area to the right of an item.
53 #define wxLIST_HITTEST_ONITEMSTATEICON 0x0200 // On the state icon for a tree view item that is in a user-defined state.
54 #define wxLIST_HITTEST_TOLEFT 0x0400 // To the left of the client area.
55 #define wxLIST_HITTEST_TORIGHT 0x0800 // To the right of the client area.
56
57 #define wxLIST_HITTEST_ONITEM (wxLIST_HITTEST_ONITEMICON | wxLIST_HITTEST_ONITEMLABEL | wxLIST_HITTEST_ONITEMSTATEICON)
58
59 // Flags for GetNextItem (MSW only except wxLIST_NEXT_ALL)
60 enum
61 {
62 wxLIST_NEXT_ABOVE, // Searches for an item above the specified item
63 wxLIST_NEXT_ALL, // Searches for subsequent item by index
64 wxLIST_NEXT_BELOW, // Searches for an item below the specified item
65 wxLIST_NEXT_LEFT, // Searches for an item to the left of the specified item
66 wxLIST_NEXT_RIGHT // Searches for an item to the right of the specified item
67 };
68
69 // Alignment flags for Arrange (MSW only except wxLIST_ALIGN_LEFT)
70 enum
71 {
72 wxLIST_ALIGN_DEFAULT,
73 wxLIST_ALIGN_LEFT,
74 wxLIST_ALIGN_TOP,
75 wxLIST_ALIGN_SNAP_TO_GRID
76 };
77
78 // Column format (MSW only except wxLIST_FORMAT_LEFT)
79 enum wxListColumnFormat
80 {
81 wxLIST_FORMAT_LEFT,
82 wxLIST_FORMAT_RIGHT,
83 wxLIST_FORMAT_CENTRE,
84 wxLIST_FORMAT_CENTER = wxLIST_FORMAT_CENTRE
85 };
86
87 // Autosize values for SetColumnWidth
88 enum
89 {
90 wxLIST_AUTOSIZE = -1,
91 wxLIST_AUTOSIZE_USEHEADER = -2 // partly supported by generic version
92 };
93
94 // Flag values for GetItemRect
95 enum
96 {
97 wxLIST_RECT_BOUNDS,
98 wxLIST_RECT_ICON,
99 wxLIST_RECT_LABEL
100 };
101
102 // Flag values for FindItem (MSW only)
103 enum
104 {
105 wxLIST_FIND_UP,
106 wxLIST_FIND_DOWN,
107 wxLIST_FIND_LEFT,
108 wxLIST_FIND_RIGHT
109 };
110
111 // ----------------------------------------------------------------------------
112 // wxListItemAttr: a structure containing the visual attributes of an item
113 // ----------------------------------------------------------------------------
114
115 class WXDLLEXPORT wxListItemAttr
116 {
117 public:
118 // ctors
119 wxListItemAttr() { }
120 wxListItemAttr(const wxColour& colText,
121 const wxColour& colBack,
122 const wxFont& font)
123 : m_colText(colText), m_colBack(colBack), m_font(font) { }
124
125 // setters
126 void SetTextColour(const wxColour& colText) { m_colText = colText; }
127 void SetBackgroundColour(const wxColour& colBack) { m_colBack = colBack; }
128 void SetFont(const wxFont& font) { m_font = font; }
129
130 // accessors
131 bool HasTextColour() const { return m_colText.Ok(); }
132 bool HasBackgroundColour() const { return m_colBack.Ok(); }
133 bool HasFont() const { return m_font.Ok(); }
134
135 const wxColour& GetTextColour() const { return m_colText; }
136 const wxColour& GetBackgroundColour() const { return m_colBack; }
137 const wxFont& GetFont() const { return m_font; }
138
139 private:
140 wxColour m_colText,
141 m_colBack;
142 wxFont m_font;
143 };
144
145 // ----------------------------------------------------------------------------
146 // wxListItem: the item or column info, used to exchange data with wxListCtrl
147 // ----------------------------------------------------------------------------
148
149 class WXDLLEXPORT wxListItem : public wxObject
150 {
151 public:
152 wxListItem();
153 ~wxListItem() { delete m_attr; }
154
155 // resetting
156 void Clear();
157 void ClearAttributes();
158
159 // setters
160 void SetMask(long mask) { m_mask = mask; }
161 void SetId(long id) { m_itemId = id; }
162 void SetColumn(int col) { m_col = col; }
163 void SetState(long state) { m_state = state; m_stateMask |= state; }
164 void SetStateMask(long stateMask) { m_stateMask = stateMask; }
165 void SetText(const wxString& text) { m_text = text; }
166 void SetImage(int image) { m_image = image; }
167 void SetData(long data) { m_data = data; }
168 void SetData(void *data) { m_data = (long)data; }
169
170 void SetWidth(int width) { m_width = width; }
171 void SetAlign(wxListColumnFormat align) { m_format = align; }
172
173 void SetTextColour(const wxColour& colText)
174 { Attributes().SetTextColour(colText); }
175 void SetBackgroundColour(const wxColour& colBack)
176 { Attributes().SetBackgroundColour(colBack); }
177 void SetFont(const wxFont& font)
178 { Attributes().SetFont(font); }
179
180 // accessors
181 long GetMask() const { return m_mask; }
182 long GetId() const { return m_itemId; }
183 int GetColumn() const { return m_col; }
184 long GetState() const { return m_state & m_stateMask; }
185 const wxString& GetText() const { return m_text; }
186 int GetImage() const { return m_image; }
187 long GetData() const { return m_data; }
188
189 int GetWidth() const { return m_width; }
190 wxListColumnFormat GetAlign() const { return (wxListColumnFormat)m_format; }
191
192 wxListItemAttr *GetAttributes() const { return m_attr; }
193 bool HasAttributes() const { return m_attr != NULL; }
194
195 wxColour GetTextColour() const
196 { return HasAttributes() ? m_attr->GetTextColour() : wxNullColour; }
197 wxColour GetBackgroundColour() const
198 { return HasAttributes() ? m_attr->GetBackgroundColour()
199 : wxNullColour; }
200 wxFont GetFont() const
201 { return HasAttributes() ? m_attr->GetFont() : wxNullFont; }
202
203 // this conversion is necessary to make old code using GetItem() to
204 // compile
205 operator long() const { return m_itemId; }
206
207 // these members are public for compatibility
208
209 long m_mask; // Indicates what fields are valid
210 long m_itemId; // The zero-based item position
211 int m_col; // Zero-based column, if in report mode
212 long m_state; // The state of the item
213 long m_stateMask;// Which flags of m_state are valid (uses same flags)
214 wxString m_text; // The label/header text
215 int m_image; // The zero-based index into an image list
216 long m_data; // App-defined data
217
218 // For columns only
219 int m_format; // left, right, centre
220 int m_width; // width of column
221
222 protected:
223 // creates m_attr if we don't have it yet
224 wxListItemAttr& Attributes()
225 {
226 if ( !m_attr )
227 m_attr = new wxListItemAttr;
228
229 return *m_attr;
230 }
231
232 wxListItemAttr *m_attr; // optional pointer to the items style
233
234 private:
235 DECLARE_DYNAMIC_CLASS(wxListItem)
236 };
237
238 // ----------------------------------------------------------------------------
239 // include the wxListCtrl class declaration
240 // ----------------------------------------------------------------------------
241
242 #if defined(__WXMSW__)
243 #ifdef __WIN16__
244 #include "wx/generic/listctrl.h"
245 #else
246 #include "wx/msw/listctrl.h"
247 #endif
248 #elif defined(__WXMOTIF__)
249 #include "wx/generic/listctrl.h"
250 #elif defined(__WXGTK__)
251 #include "wx/generic/listctrl.h"
252 #elif defined(__WXQT__)
253 #include "wx/generic/listctrl.h"
254 #elif defined(__WXMAC__)
255 #include "wx/generic/listctrl.h"
256 #elif defined(__WXPM__)
257 #include "wx/generic/listctrl.h"
258 #elif defined(__WXSTUBS__)
259 #include "wx/generic/listctrl.h"
260 #endif
261
262 // ----------------------------------------------------------------------------
263 // wxListEvent - the event class for the wxListCtrl notifications
264 // ----------------------------------------------------------------------------
265
266 class WXDLLEXPORT wxListEvent : public wxNotifyEvent
267 {
268 public:
269 wxListEvent(wxEventType commandType = wxEVT_NULL, int id = 0);
270
271 int m_code;
272 long m_itemIndex;
273 long m_oldItemIndex;
274 int m_col;
275 bool m_cancelled;
276 wxPoint m_pointDrag;
277
278 wxListItem m_item;
279
280 int GetCode() const { return m_code; }
281 long GetIndex() const { return m_itemIndex; }
282 long GetOldIndex() const { return m_oldItemIndex; }
283 long GetOldItem() const { return m_oldItemIndex; }
284 int GetColumn() const { return m_col; }
285 bool Cancelled() const { return m_cancelled; }
286 wxPoint GetPoint() const { return m_pointDrag; }
287 const wxString& GetLabel() const { return m_item.m_text; }
288 const wxString& GetText() const { return m_item.m_text; }
289 int GetImage() const { return m_item.m_image; }
290 long GetData() const { return m_item.m_data; }
291 long GetMask() const { return m_item.m_mask; }
292 const wxListItem& GetItem() const { return m_item; }
293
294 void CopyObject(wxObject& object_dest) const;
295
296 private:
297 DECLARE_DYNAMIC_CLASS(wxListEvent)
298 };
299
300 typedef void (wxEvtHandler::*wxListEventFunction)(wxListEvent&);
301
302 #define EVT_LIST_BEGIN_DRAG(id, fn) { wxEVT_COMMAND_LIST_BEGIN_DRAG, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxListEventFunction) & fn, NULL },
303 #define EVT_LIST_BEGIN_RDRAG(id, fn) { wxEVT_COMMAND_LIST_BEGIN_RDRAG, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxListEventFunction) & fn, NULL },
304 #define EVT_LIST_BEGIN_LABEL_EDIT(id, fn) { wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxListEventFunction) & fn, NULL },
305 #define EVT_LIST_END_LABEL_EDIT(id, fn) { wxEVT_COMMAND_LIST_END_LABEL_EDIT, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxListEventFunction) & fn, NULL },
306 #define EVT_LIST_DELETE_ITEM(id, fn) { wxEVT_COMMAND_LIST_DELETE_ITEM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxListEventFunction) & fn, NULL },
307 #define EVT_LIST_DELETE_ALL_ITEMS(id, fn) { wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxListEventFunction) & fn, NULL },
308 #define EVT_LIST_GET_INFO(id, fn) { wxEVT_COMMAND_LIST_GET_INFO, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxListEventFunction) & fn, NULL },
309 #define EVT_LIST_SET_INFO(id, fn) { wxEVT_COMMAND_LIST_SET_INFO, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxListEventFunction) & fn, NULL },
310 #define EVT_LIST_ITEM_SELECTED(id, fn) { wxEVT_COMMAND_LIST_ITEM_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxListEventFunction) & fn, NULL },
311 #define EVT_LIST_ITEM_DESELECTED(id, fn) { wxEVT_COMMAND_LIST_ITEM_DESELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxListEventFunction) & fn, NULL },
312 #define EVT_LIST_KEY_DOWN(id, fn) { wxEVT_COMMAND_LIST_KEY_DOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxListEventFunction) & fn, NULL },
313 #define EVT_LIST_INSERT_ITEM(id, fn) { wxEVT_COMMAND_LIST_INSERT_ITEM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxListEventFunction) & fn, NULL },
314 #define EVT_LIST_COL_CLICK(id, fn) { wxEVT_COMMAND_LIST_COL_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxListEventFunction) & fn, NULL },
315 #define EVT_LIST_ITEM_RIGHT_CLICK(id, fn) { wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxListEventFunction) & fn, (wxObject *) NULL },
316 #define EVT_LIST_ITEM_MIDDLE_CLICK(id, fn) { wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxListEventFunction) & fn, (wxObject *) NULL },
317 #define EVT_LIST_ITEM_ACTIVATED(id, fn) { wxEVT_COMMAND_LIST_ITEM_ACTIVATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxListEventFunction) & fn, (wxObject *) NULL },
318
319 #endif
320 // _WX_LISTCTRL_H_BASE_