1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxListCtrl sample
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // Define a new application type
13 class MyApp
: public wxApp
18 virtual bool OnInit();
21 DECLARE_NO_COPY_CLASS(MyApp
)
24 class MyListCtrl
: public wxListCtrl
27 MyListCtrl(wxWindow
*parent
,
32 : wxListCtrl(parent
, id
, pos
, size
, style
),
33 m_attr(*wxBLUE
, *wxLIGHT_GREY
, wxNullFont
)
37 // add one item to the listctrl in report mode
38 void InsertItemInReportView(int i
);
40 void OnColClick(wxListEvent
& event
);
41 void OnColRightClick(wxListEvent
& event
);
42 void OnColBeginDrag(wxListEvent
& event
);
43 void OnColDragging(wxListEvent
& event
);
44 void OnColEndDrag(wxListEvent
& event
);
45 void OnBeginDrag(wxListEvent
& event
);
46 void OnBeginRDrag(wxListEvent
& event
);
47 void OnBeginLabelEdit(wxListEvent
& event
);
48 void OnEndLabelEdit(wxListEvent
& event
);
49 void OnDeleteItem(wxListEvent
& event
);
50 void OnDeleteAllItems(wxListEvent
& event
);
51 void OnGetInfo(wxListEvent
& event
);
52 void OnSetInfo(wxListEvent
& event
);
53 void OnSelected(wxListEvent
& event
);
54 void OnDeselected(wxListEvent
& event
);
55 void OnListKeyDown(wxListEvent
& event
);
56 void OnActivated(wxListEvent
& event
);
57 void OnFocused(wxListEvent
& event
);
58 void OnCacheHint(wxListEvent
& event
);
60 void OnChar(wxKeyEvent
& event
);
63 void SetColumnImage(int col
, int image
);
65 void LogEvent(const wxListEvent
& event
, const wxChar
*eventName
);
66 void LogColEvent(const wxListEvent
& event
, const wxChar
*eventName
);
68 virtual wxString
OnGetItemText(long item
, long column
) const;
69 virtual int OnGetItemImage(long item
) const;
70 virtual wxListItemAttr
*OnGetItemAttr(long item
) const;
72 wxListItemAttr m_attr
;
74 DECLARE_NO_COPY_CLASS(MyListCtrl
)
78 // Define a new frame type
79 class MyFrame
: public wxFrame
82 MyFrame(const wxChar
*title
, int x
, int y
, int w
, int h
);
88 void OnSize(wxSizeEvent
& event
);
90 void OnQuit(wxCommandEvent
& event
);
91 void OnAbout(wxCommandEvent
& event
);
92 void OnListView(wxCommandEvent
& event
);
93 void OnReportView(wxCommandEvent
& event
);
94 void OnIconView(wxCommandEvent
& event
);
95 void OnIconTextView(wxCommandEvent
& event
);
96 void OnSmallIconView(wxCommandEvent
& event
);
97 void OnSmallIconTextView(wxCommandEvent
& event
);
98 void OnVirtualView(wxCommandEvent
& event
);
100 void OnFocusLast(wxCommandEvent
& event
);
101 void OnToggleFirstSel(wxCommandEvent
& event
);
102 void OnDeselectAll(wxCommandEvent
& event
);
103 void OnSelectAll(wxCommandEvent
& event
);
104 void OnAdd(wxCommandEvent
& event
);
105 void OnEdit(wxCommandEvent
& event
);
106 void OnDelete(wxCommandEvent
& event
);
107 void OnDeleteAll(wxCommandEvent
& event
);
108 void OnSort(wxCommandEvent
& event
);
109 void OnSetFgColour(wxCommandEvent
& event
);
110 void OnSetBgColour(wxCommandEvent
& event
);
111 void OnToggleMultiSel(wxCommandEvent
& event
);
112 void OnShowColInfo(wxCommandEvent
& event
);
113 void OnShowSelInfo(wxCommandEvent
& event
);
114 void OnFreeze(wxCommandEvent
& event
);
115 void OnThaw(wxCommandEvent
& event
);
117 void OnUpdateShowColInfo(wxUpdateUIEvent
& event
);
118 void OnUpdateToggleMultiSel(wxUpdateUIEvent
& event
);
120 wxImageList
*m_imageListNormal
;
121 wxImageList
*m_imageListSmall
;
124 MyListCtrl
*m_listCtrl
;
125 wxTextCtrl
*m_logWindow
;
128 // recreate the list control with the new flags
129 void RecreateList(long flags
, bool withText
= TRUE
);
131 // fill the control with items depending on the view
132 void InitWithListItems();
133 void InitWithReportItems();
134 void InitWithIconItems(bool withText
, bool sameIcon
= FALSE
);
135 void InitWithVirtualItems();
137 // return true if the control is not in virtual view, give an error message
138 // and return false if it is
139 bool CheckNonVirtual() const;
144 DECLARE_NO_COPY_CLASS(MyFrame
)
145 DECLARE_EVENT_TABLE()
149 // IDs for the menu commands
158 LIST_SMALL_ICON_VIEW
,
159 LIST_SMALL_ICON_TEXT_VIEW
,
172 LIST_TOGGLE_MULTI_SEL
,