1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxListCtrl class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_LISTBASE_H_BASE_
13 #define _WX_LISTBASE_H_BASE_
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 // #pragma interface "listctrlbase.h"
21 #include "wx/colour.h"
23 #include "wx/gdicmn.h"
27 // ----------------------------------------------------------------------------
29 // ----------------------------------------------------------------------------
31 // type of compare function for wxListCtrl sort operation
32 typedef int (wxCALLBACK
*wxListCtrlCompare
)(long item1
, long item2
, long sortData
);
34 // ----------------------------------------------------------------------------
35 // wxListCtrl constants
36 // ----------------------------------------------------------------------------
39 #define wxLC_VRULES 0x0001
40 #define wxLC_HRULES 0x0002
42 #define wxLC_ICON 0x0004
43 #define wxLC_SMALL_ICON 0x0008
44 #define wxLC_LIST 0x0010
45 #define wxLC_REPORT 0x0020
47 #define wxLC_ALIGN_TOP 0x0040
48 #define wxLC_ALIGN_LEFT 0x0080
49 #define wxLC_AUTOARRANGE 0x0100
50 #define wxLC_VIRTUAL 0x0200
51 #define wxLC_EDIT_LABELS 0x0400
52 #define wxLC_NO_HEADER 0x0800
53 #define wxLC_NO_SORT_HEADER 0x1000
54 #define wxLC_SINGLE_SEL 0x2000
55 #define wxLC_SORT_ASCENDING 0x4000
56 #define wxLC_SORT_DESCENDING 0x8000
58 #define wxLC_MASK_TYPE (wxLC_ICON | wxLC_SMALL_ICON | wxLC_LIST | wxLC_REPORT)
59 #define wxLC_MASK_ALIGN (wxLC_ALIGN_TOP | wxLC_ALIGN_LEFT)
60 #define wxLC_MASK_SORT (wxLC_SORT_ASCENDING | wxLC_SORT_DESCENDING)
62 // for compatibility only
63 #define wxLC_USER_TEXT wxLC_VIRTUAL
66 // (a) too much detail
67 // (b) not enough style flags
68 // (c) not implemented anyhow in the generic version
70 // #define wxLC_NO_SCROLL
71 // #define wxLC_NO_LABEL_WRAP
72 // #define wxLC_OWNERDRAW_FIXED
73 // #define wxLC_SHOW_SEL_ALWAYS
75 // Mask flags to tell app/GUI what fields of wxListItem are valid
76 #define wxLIST_MASK_STATE 0x0001
77 #define wxLIST_MASK_TEXT 0x0002
78 #define wxLIST_MASK_IMAGE 0x0004
79 #define wxLIST_MASK_DATA 0x0008
80 #define wxLIST_SET_ITEM 0x0010
81 #define wxLIST_MASK_WIDTH 0x0020
82 #define wxLIST_MASK_FORMAT 0x0040
84 // State flags for indicating the state of an item
85 #define wxLIST_STATE_DONTCARE 0x0000
86 #define wxLIST_STATE_DROPHILITED 0x0001 // MSW only
87 #define wxLIST_STATE_FOCUSED 0x0002
88 #define wxLIST_STATE_SELECTED 0x0004
89 #define wxLIST_STATE_CUT 0x0008 // MSW only
90 #define wxLIST_STATE_DISABLED 0x0010 // OS2 only
91 #define wxLIST_STATE_FILTERED 0x0020 // OS2 only
92 #define wxLIST_STATE_INUSE 0x0040 // OS2 only
93 #define wxLIST_STATE_PICKED 0x0080 // OS2 only
94 #define wxLIST_STATE_SOURCE 0x0100 // OS2 only
96 // Hit test flags, used in HitTest
97 #define wxLIST_HITTEST_ABOVE 0x0001 // Above the client area.
98 #define wxLIST_HITTEST_BELOW 0x0002 // Below the client area.
99 #define wxLIST_HITTEST_NOWHERE 0x0004 // In the client area but below the last item.
100 #define wxLIST_HITTEST_ONITEMICON 0x0020 // On the bitmap associated with an item.
101 #define wxLIST_HITTEST_ONITEMLABEL 0x0080 // On the label (string) associated with an item.
102 #define wxLIST_HITTEST_ONITEMRIGHT 0x0100 // In the area to the right of an item.
103 #define wxLIST_HITTEST_ONITEMSTATEICON 0x0200 // On the state icon for a tree view item that is in a user-defined state.
104 #define wxLIST_HITTEST_TOLEFT 0x0400 // To the left of the client area.
105 #define wxLIST_HITTEST_TORIGHT 0x0800 // To the right of the client area.
107 #define wxLIST_HITTEST_ONITEM (wxLIST_HITTEST_ONITEMICON | wxLIST_HITTEST_ONITEMLABEL | wxLIST_HITTEST_ONITEMSTATEICON)
109 // Flags for GetNextItem (MSW only except wxLIST_NEXT_ALL)
112 wxLIST_NEXT_ABOVE
, // Searches for an item above the specified item
113 wxLIST_NEXT_ALL
, // Searches for subsequent item by index
114 wxLIST_NEXT_BELOW
, // Searches for an item below the specified item
115 wxLIST_NEXT_LEFT
, // Searches for an item to the left of the specified item
116 wxLIST_NEXT_RIGHT
// Searches for an item to the right of the specified item
119 // Alignment flags for Arrange (MSW only except wxLIST_ALIGN_LEFT)
122 wxLIST_ALIGN_DEFAULT
,
125 wxLIST_ALIGN_SNAP_TO_GRID
128 // Column format (MSW only except wxLIST_FORMAT_LEFT)
129 enum wxListColumnFormat
133 wxLIST_FORMAT_CENTRE
,
134 wxLIST_FORMAT_CENTER
= wxLIST_FORMAT_CENTRE
137 // Autosize values for SetColumnWidth
140 wxLIST_AUTOSIZE
= -1,
141 wxLIST_AUTOSIZE_USEHEADER
= -2 // partly supported by generic version
144 // Flag values for GetItemRect
152 // Flag values for FindItem (MSW only)
161 // ----------------------------------------------------------------------------
162 // wxListItemAttr: a structure containing the visual attributes of an item
163 // ----------------------------------------------------------------------------
165 class WXDLLEXPORT wxListItemAttr
170 wxListItemAttr(const wxColour
& colText
,
171 const wxColour
& colBack
,
173 : m_colText(colText
), m_colBack(colBack
), m_font(font
) { }
176 void SetTextColour(const wxColour
& colText
) { m_colText
= colText
; }
177 void SetBackgroundColour(const wxColour
& colBack
) { m_colBack
= colBack
; }
178 void SetFont(const wxFont
& font
) { m_font
= font
; }
181 bool HasTextColour() const { return m_colText
.Ok(); }
182 bool HasBackgroundColour() const { return m_colBack
.Ok(); }
183 bool HasFont() const { return m_font
.Ok(); }
185 const wxColour
& GetTextColour() const { return m_colText
; }
186 const wxColour
& GetBackgroundColour() const { return m_colBack
; }
187 const wxFont
& GetFont() const { return m_font
; }
195 // ----------------------------------------------------------------------------
196 // wxListItem: the item or column info, used to exchange data with wxListCtrl
197 // ----------------------------------------------------------------------------
199 class WXDLLEXPORT wxListItem
: public wxObject
202 wxListItem() { Init(); m_attr
= NULL
; }
203 wxListItem(const wxListItem
& item
)
206 m_itemId(item
.m_itemId
),
208 m_state(item
.m_state
),
209 m_stateMask(item
.m_stateMask
),
211 m_image(item
.m_image
),
213 m_format(item
.m_format
),
214 m_width(item
.m_width
),
217 // copy list item attributes
218 if( item
.HasAttributes() )
219 m_attr
= new wxListItemAttr(*item
.GetAttributes());
221 virtual ~wxListItem() { delete m_attr
; }
224 void Clear() { Init(); m_text
.clear(); ClearAttributes(); }
225 void ClearAttributes() { if ( m_attr
) { delete m_attr
; m_attr
= NULL
; } }
228 void SetMask(long mask
)
232 void SetColumn(int col
)
234 void SetState(long state
)
235 { m_mask
|= wxLIST_MASK_STATE
; m_state
= state
; m_stateMask
|= state
; }
236 void SetStateMask(long stateMask
)
237 { m_stateMask
= stateMask
; }
238 void SetText(const wxString
& text
)
239 { m_mask
|= wxLIST_MASK_TEXT
; m_text
= text
; }
240 void SetImage(int image
)
241 { m_mask
|= wxLIST_MASK_IMAGE
; m_image
= image
; }
242 void SetData(long data
)
243 { m_mask
|= wxLIST_MASK_DATA
; m_data
= data
; }
244 void SetData(void *data
)
245 { m_mask
|= wxLIST_MASK_DATA
; m_data
= (long)data
; }
247 void SetWidth(int width
)
248 { m_mask
|= wxLIST_MASK_WIDTH
; m_width
= width
; }
249 void SetAlign(wxListColumnFormat align
)
250 { m_mask
|= wxLIST_MASK_FORMAT
; m_format
= align
; }
252 void SetTextColour(const wxColour
& colText
)
253 { Attributes().SetTextColour(colText
); }
254 void SetBackgroundColour(const wxColour
& colBack
)
255 { Attributes().SetBackgroundColour(colBack
); }
256 void SetFont(const wxFont
& font
)
257 { Attributes().SetFont(font
); }
260 long GetMask() const { return m_mask
; }
261 long GetId() const { return m_itemId
; }
262 int GetColumn() const { return m_col
; }
263 long GetState() const { return m_state
& m_stateMask
; }
264 const wxString
& GetText() const { return m_text
; }
265 int GetImage() const { return m_image
; }
266 long GetData() const { return m_data
; }
268 int GetWidth() const { return m_width
; }
269 wxListColumnFormat
GetAlign() const { return (wxListColumnFormat
)m_format
; }
271 wxListItemAttr
*GetAttributes() const { return m_attr
; }
272 bool HasAttributes() const { return m_attr
!= NULL
; }
274 wxColour
GetTextColour() const
275 { return HasAttributes() ? m_attr
->GetTextColour() : wxNullColour
; }
276 wxColour
GetBackgroundColour() const
277 { return HasAttributes() ? m_attr
->GetBackgroundColour()
279 wxFont
GetFont() const
280 { return HasAttributes() ? m_attr
->GetFont() : wxNullFont
; }
282 // this conversion is necessary to make old code using GetItem() to
284 operator long() const { return m_itemId
; }
286 // these members are public for compatibility
288 long m_mask
; // Indicates what fields are valid
289 long m_itemId
; // The zero-based item position
290 int m_col
; // Zero-based column, if in report mode
291 long m_state
; // The state of the item
292 long m_stateMask
;// Which flags of m_state are valid (uses same flags)
293 wxString m_text
; // The label/header text
294 int m_image
; // The zero-based index into an image list
295 long m_data
; // App-defined data
298 int m_format
; // left, right, centre
299 int m_width
; // width of column
302 int m_miniImage
; // handle to the mini image for OS/2
306 // creates m_attr if we don't have it yet
307 wxListItemAttr
& Attributes()
310 m_attr
= new wxListItemAttr
;
325 m_format
= wxLIST_FORMAT_CENTRE
;
329 wxListItemAttr
*m_attr
; // optional pointer to the items style
332 // VZ: this is strange, we have a copy ctor but not operator=(), why?
333 wxListItem
& operator=(const wxListItem
& item
);
335 DECLARE_DYNAMIC_CLASS(wxListItem
)
338 // ----------------------------------------------------------------------------
339 // wxListEvent - the event class for the wxListCtrl notifications
340 // ----------------------------------------------------------------------------
342 class WXDLLEXPORT wxListEvent
: public wxNotifyEvent
345 wxListEvent(wxEventType commandType
= wxEVT_NULL
, int winid
= 0)
346 : wxNotifyEvent(commandType
, winid
)
353 , m_editCancelled(false)
356 wxListEvent(const wxListEvent
& event
)
357 : wxNotifyEvent(event
)
358 , m_code(event
.m_code
)
359 , m_oldItemIndex(event
.m_oldItemIndex
)
360 , m_itemIndex(event
.m_itemIndex
)
362 , m_pointDrag(event
.m_pointDrag
)
363 , m_item(event
.m_item
)
364 , m_editCancelled(event
.m_editCancelled
)
367 int GetKeyCode() const { return m_code
; }
368 long GetIndex() const { return m_itemIndex
; }
369 int GetColumn() const { return m_col
; }
370 wxPoint
GetPoint() const { return m_pointDrag
; }
371 const wxString
& GetLabel() const { return m_item
.m_text
; }
372 const wxString
& GetText() const { return m_item
.m_text
; }
373 int GetImage() const { return m_item
.m_image
; }
374 long GetData() const { return m_item
.m_data
; }
375 long GetMask() const { return m_item
.m_mask
; }
376 const wxListItem
& GetItem() const { return m_item
; }
378 // for wxEVT_COMMAND_LIST_CACHE_HINT only
379 long GetCacheFrom() const { return m_oldItemIndex
; }
380 long GetCacheTo() const { return m_itemIndex
; }
382 // was label editing canceled? (for wxEVT_COMMAND_LIST_END_LABEL_EDIT only)
383 bool IsEditCancelled() const { return m_editCancelled
; }
384 void SetEditCanceled(bool editCancelled
) { m_editCancelled
= editCancelled
; }
386 #if WXWIN_COMPATIBILITY_2_2
387 // these methods don't do anything at all
388 long GetOldIndex() const { return 0; }
389 long GetOldItem() const { return 0; }
391 // this one is superseded by GetKeyCode()
392 int GetCode() const { return GetKeyCode(); }
393 #endif // WXWIN_COMPATIBILITY_2_2
395 virtual wxEvent
*Clone() const { return new wxListEvent(*this); }
397 //protected: -- not for backwards compatibility
399 long m_oldItemIndex
; // only for wxEVT_COMMAND_LIST_CACHE_HINT
407 bool m_editCancelled
;
410 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxListEvent
)
413 // ----------------------------------------------------------------------------
414 // wxListCtrl event macros
415 // ----------------------------------------------------------------------------
417 BEGIN_DECLARE_EVENT_TYPES()
418 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_DRAG
, 700)
419 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_RDRAG
, 701)
420 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, 702)
421 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_END_LABEL_EDIT
, 703)
422 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ITEM
, 704)
423 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, 705)
424 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_GET_INFO
, 706)
425 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_SET_INFO
, 707)
426 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_SELECTED
, 708)
427 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_DESELECTED
, 709)
428 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_KEY_DOWN
, 710)
429 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_INSERT_ITEM
, 711)
430 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_CLICK
, 712)
431 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, 713)
432 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
, 714)
433 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
, 715)
434 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_CACHE_HINT
, 716)
435 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
, 717)
436 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
, 718)
437 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_DRAGGING
, 719)
438 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_COL_END_DRAG
, 720)
439 DECLARE_EVENT_TYPE(wxEVT_COMMAND_LIST_ITEM_FOCUSED
, 721)
440 END_DECLARE_EVENT_TYPES()
442 typedef void (wxEvtHandler::*wxListEventFunction
)(wxListEvent
&);
444 #define EVT_LIST_BEGIN_DRAG(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_BEGIN_DRAG, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), NULL ),
445 #define EVT_LIST_BEGIN_RDRAG(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_BEGIN_RDRAG, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), NULL ),
446 #define EVT_LIST_BEGIN_LABEL_EDIT(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), NULL ),
447 #define EVT_LIST_END_LABEL_EDIT(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_END_LABEL_EDIT, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), NULL ),
448 #define EVT_LIST_DELETE_ITEM(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_DELETE_ITEM, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), NULL ),
449 #define EVT_LIST_DELETE_ALL_ITEMS(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), NULL ),
450 #define EVT_LIST_GET_INFO(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_GET_INFO, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), NULL ),
451 #define EVT_LIST_SET_INFO(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_SET_INFO, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), NULL ),
452 #define EVT_LIST_KEY_DOWN(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_KEY_DOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), NULL ),
453 #define EVT_LIST_INSERT_ITEM(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_INSERT_ITEM, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), NULL ),
455 #define EVT_LIST_COL_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_COL_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), NULL ),
456 #define EVT_LIST_COL_RIGHT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_COL_RIGHT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), NULL ),
457 #define EVT_LIST_COL_BEGIN_DRAG(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_COL_BEGIN_DRAG, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), NULL ),
458 #define EVT_LIST_COL_DRAGGING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_COL_DRAGGING, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), NULL ),
459 #define EVT_LIST_COL_END_DRAG(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_COL_END_DRAG, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), NULL ),
461 #define EVT_LIST_ITEM_SELECTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_ITEM_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), NULL ),
462 #define EVT_LIST_ITEM_DESELECTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_ITEM_DESELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), NULL ),
463 #define EVT_LIST_ITEM_RIGHT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), (wxObject *) NULL ),
464 #define EVT_LIST_ITEM_MIDDLE_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), (wxObject *) NULL ),
465 #define EVT_LIST_ITEM_ACTIVATED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_ITEM_ACTIVATED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), (wxObject *) NULL ),
466 #define EVT_LIST_ITEM_FOCUSED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_ITEM_FOCUSED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), (wxObject *) NULL ),
468 #define EVT_LIST_CACHE_HINT(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_LIST_CACHE_HINT, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxListEventFunction, & fn ), (wxObject *) NULL ),
470 #endif // wxUSE_LISTCTRL
473 // _WX_LISTCTRL_H_BASE_