1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxListCtrl sample
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // not all ports have support for EVT_CONTEXT_MENU yet, don't define
13 // USE_CONTEXT_MENU for those which don't
14 #if defined(__WXMOTIF__) || defined(__WXPM__) || defined(__WXX11__) || defined(__WXMGL__)
15 #define USE_CONTEXT_MENU 0
17 #define USE_CONTEXT_MENU 1
20 // Define a new application type
21 class MyApp
: public wxApp
26 virtual bool OnInit();
29 DECLARE_NO_COPY_CLASS(MyApp
)
32 class MyListCtrl
: public wxListCtrl
35 MyListCtrl(wxWindow
*parent
,
40 : wxListCtrl(parent
, id
, pos
, size
, style
),
41 m_attr(*wxBLUE
, *wxLIGHT_GREY
, wxNullFont
)
48 // add one item to the listctrl in report mode
49 void InsertItemInReportView(int i
);
51 void OnColClick(wxListEvent
& event
);
52 void OnColRightClick(wxListEvent
& event
);
53 void OnColBeginDrag(wxListEvent
& event
);
54 void OnColDragging(wxListEvent
& event
);
55 void OnColEndDrag(wxListEvent
& event
);
56 void OnBeginDrag(wxListEvent
& event
);
57 void OnBeginRDrag(wxListEvent
& event
);
58 void OnBeginLabelEdit(wxListEvent
& event
);
59 void OnEndLabelEdit(wxListEvent
& event
);
60 void OnDeleteItem(wxListEvent
& event
);
61 void OnDeleteAllItems(wxListEvent
& event
);
62 #if WXWIN_COMPATIBILITY_2_4
63 void OnGetInfo(wxListEvent
& event
);
64 void OnSetInfo(wxListEvent
& event
);
66 void OnSelected(wxListEvent
& event
);
67 void OnDeselected(wxListEvent
& event
);
68 void OnListKeyDown(wxListEvent
& event
);
69 void OnActivated(wxListEvent
& event
);
70 void OnFocused(wxListEvent
& event
);
71 void OnCacheHint(wxListEvent
& event
);
73 void OnChar(wxKeyEvent
& event
);
75 void OnContextMenu(wxContextMenuEvent
& event
);
79 void SetColumnImage(int col
, int image
);
81 void LogEvent(const wxListEvent
& event
, const wxChar
*eventName
);
82 void LogColEvent(const wxListEvent
& event
, const wxChar
*eventName
);
84 virtual wxString
OnGetItemText(long item
, long column
) const;
85 virtual int OnGetItemColumnImage(long item
, long column
) const;
86 virtual wxListItemAttr
*OnGetItemAttr(long item
) const;
88 wxListItemAttr m_attr
;
90 DECLARE_NO_COPY_CLASS(MyListCtrl
)
94 // Define a new frame type
95 class MyFrame
: public wxFrame
98 MyFrame(const wxChar
*title
);
104 void OnSize(wxSizeEvent
& event
);
106 void OnQuit(wxCommandEvent
& event
);
107 void OnAbout(wxCommandEvent
& event
);
108 void OnListView(wxCommandEvent
& event
);
109 void OnReportView(wxCommandEvent
& event
);
110 void OnIconView(wxCommandEvent
& event
);
111 void OnIconTextView(wxCommandEvent
& event
);
112 void OnSmallIconView(wxCommandEvent
& event
);
113 void OnSmallIconTextView(wxCommandEvent
& event
);
114 void OnVirtualView(wxCommandEvent
& event
);
115 void OnSmallVirtualView(wxCommandEvent
& event
);
117 void OnFocusLast(wxCommandEvent
& event
);
118 void OnToggleFirstSel(wxCommandEvent
& event
);
119 void OnDeselectAll(wxCommandEvent
& event
);
120 void OnSelectAll(wxCommandEvent
& event
);
121 void OnAdd(wxCommandEvent
& event
);
122 void OnEdit(wxCommandEvent
& event
);
123 void OnDelete(wxCommandEvent
& event
);
124 void OnDeleteAll(wxCommandEvent
& event
);
125 void OnSort(wxCommandEvent
& event
);
126 void OnSetFgColour(wxCommandEvent
& event
);
127 void OnSetBgColour(wxCommandEvent
& event
);
128 void OnToggleMultiSel(wxCommandEvent
& event
);
129 void OnShowColInfo(wxCommandEvent
& event
);
130 void OnShowSelInfo(wxCommandEvent
& event
);
131 void OnFreeze(wxCommandEvent
& event
);
132 void OnThaw(wxCommandEvent
& event
);
133 void OnToggleLines(wxCommandEvent
& event
);
135 void OnUpdateShowColInfo(wxUpdateUIEvent
& event
);
136 void OnUpdateToggleMultiSel(wxUpdateUIEvent
& event
);
138 wxImageList
*m_imageListNormal
;
139 wxImageList
*m_imageListSmall
;
142 MyListCtrl
*m_listCtrl
;
143 wxTextCtrl
*m_logWindow
;
146 // recreate the list control with the new flags
147 void RecreateList(long flags
, bool withText
= true);
149 // fill the control with items depending on the view
150 void InitWithListItems();
151 void InitWithReportItems();
152 void InitWithIconItems(bool withText
, bool sameIcon
= false);
153 void InitWithVirtualItems();
155 // return true if the control is not in virtual view, give an error message
156 // and return false if it is
157 bool CheckNonVirtual() const;
164 DECLARE_NO_COPY_CLASS(MyFrame
)
165 DECLARE_EVENT_TABLE()
169 // IDs for the menu commands
172 LIST_ABOUT
= wxID_ABOUT
,
173 LIST_QUIT
= wxID_EXIT
,
175 LIST_LIST_VIEW
= wxID_HIGHEST
,
178 LIST_SMALL_ICON_VIEW
,
179 LIST_SMALL_ICON_TEXT_VIEW
,
182 LIST_SMALL_VIRTUAL_VIEW
,
193 LIST_TOGGLE_MULTI_SEL
,