]> git.saurik.com Git - wxWidgets.git/blob - samples/listctrl/listtest.h
added EVT_LIST_COMMAND_CACHE_HINT, implemented it for MSW and test in the sample...
[wxWidgets.git] / samples / listctrl / listtest.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: listctrl.h
3 // Purpose: wxListCtrl sample
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 // Define a new application type
13 class MyApp: public wxApp
14 {
15 public:
16 virtual bool OnInit();
17 };
18
19 class MyListCtrl: public wxListCtrl
20 {
21 public:
22 MyListCtrl(wxWindow *parent,
23 const wxWindowID id,
24 const wxPoint& pos,
25 const wxSize& size,
26 long style)
27 : wxListCtrl(parent, id, pos, size, style),
28 m_attr(*wxCYAN, *wxLIGHT_GREY, wxNullFont)
29 {
30 }
31
32 // add one item to the listctrl in report mode
33 void InsertItemInReportView(int i);
34
35 void OnColClick(wxListEvent& event);
36 void OnBeginDrag(wxListEvent& event);
37 void OnBeginRDrag(wxListEvent& event);
38 void OnBeginLabelEdit(wxListEvent& event);
39 void OnEndLabelEdit(wxListEvent& event);
40 void OnDeleteItem(wxListEvent& event);
41 void OnDeleteAllItems(wxListEvent& event);
42 void OnGetInfo(wxListEvent& event);
43 void OnSetInfo(wxListEvent& event);
44 void OnSelected(wxListEvent& event);
45 void OnDeselected(wxListEvent& event);
46 void OnListKeyDown(wxListEvent& event);
47 void OnActivated(wxListEvent& event);
48 void OnCacheHint(wxListEvent& event);
49
50 void OnChar(wxKeyEvent& event);
51
52 private:
53 void LogEvent(const wxListEvent& event, const wxChar *eventName);
54
55 virtual wxString OnGetItemText(long item, long column) const;
56 virtual int OnGetItemImage(long item) const;
57 virtual wxListItemAttr *OnGetItemAttr(long item) const;
58
59 wxListItemAttr m_attr;
60
61 DECLARE_EVENT_TABLE()
62 };
63
64 // Define a new frame type
65 class MyFrame: public wxFrame
66 {
67 public:
68 MyListCtrl *m_listCtrl;
69 wxTextCtrl *m_logWindow;
70
71 MyFrame(const wxChar *title, int x, int y, int w, int h);
72 ~MyFrame();
73
74 public:
75 void OnSize(wxSizeEvent& event);
76
77 void OnQuit(wxCommandEvent& event);
78 void OnAbout(wxCommandEvent& event);
79 void OnListView(wxCommandEvent& event);
80 void OnReportView(wxCommandEvent& event);
81 void OnIconView(wxCommandEvent& event);
82 void OnIconTextView(wxCommandEvent& event);
83 void OnSmallIconView(wxCommandEvent& event);
84 void OnSmallIconTextView(wxCommandEvent& event);
85 void OnVirtualView(wxCommandEvent& event);
86
87 void OnToggleFirstSel(wxCommandEvent& event);
88 void OnDeselectAll(wxCommandEvent& event);
89 void OnSelectAll(wxCommandEvent& event);
90 void OnAdd(wxCommandEvent& event);
91 void OnDelete(wxCommandEvent& event);
92 void OnDeleteAll(wxCommandEvent& event);
93 void OnSort(wxCommandEvent& event);
94 void OnSetFgColour(wxCommandEvent& event);
95 void OnSetBgColour(wxCommandEvent& event);
96 void OnToggleMultiSel(wxCommandEvent& event);
97 void OnShowColInfo(wxCommandEvent& event);
98 void OnShowSelInfo(wxCommandEvent& event);
99
100 void OnUpdateShowColInfo(wxUpdateUIEvent& event);
101
102 wxImageList *m_imageListNormal;
103 wxImageList *m_imageListSmall;
104
105 private:
106 // recreate the list control with the new flags
107 void RecreateList(long flags, bool withText = TRUE);
108
109 // fill the control with items depending on the view
110 void InitWithListItems();
111 void InitWithReportItems();
112 void InitWithIconItems(bool withText, bool sameIcon = FALSE);
113 void InitWithVirtualItems();
114
115 wxLog *m_logOld;
116
117 DECLARE_EVENT_TABLE()
118 };
119
120
121 // IDs for the menu commands
122 enum
123 {
124 LIST_ABOUT,
125 LIST_QUIT,
126
127 LIST_LIST_VIEW,
128 LIST_ICON_VIEW,
129 LIST_ICON_TEXT_VIEW,
130 LIST_SMALL_ICON_VIEW,
131 LIST_SMALL_ICON_TEXT_VIEW,
132 LIST_REPORT_VIEW,
133 LIST_VIRTUAL_VIEW,
134
135 LIST_DESELECT_ALL,
136 LIST_SELECT_ALL,
137 LIST_DELETE_ALL,
138 LIST_DELETE,
139 LIST_ADD,
140 LIST_SORT,
141 LIST_SET_FG_COL,
142 LIST_SET_BG_COL,
143 LIST_TOGGLE_MULTI_SEL,
144 LIST_TOGGLE_FIRST,
145 LIST_SHOW_COL_INFO,
146 LIST_SHOW_SEL_INFO,
147
148 LIST_CTRL = 1000
149 };
150