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