]>
Commit | Line | Data |
---|---|---|
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 OnFocusLast(wxCommandEvent& event); | |
88 | void OnToggleFirstSel(wxCommandEvent& event); | |
89 | void OnDeselectAll(wxCommandEvent& event); | |
90 | void OnSelectAll(wxCommandEvent& event); | |
91 | void OnAdd(wxCommandEvent& event); | |
92 | void OnDelete(wxCommandEvent& event); | |
93 | void OnDeleteAll(wxCommandEvent& event); | |
94 | void OnSort(wxCommandEvent& event); | |
95 | void OnSetFgColour(wxCommandEvent& event); | |
96 | void OnSetBgColour(wxCommandEvent& event); | |
97 | void OnToggleMultiSel(wxCommandEvent& event); | |
98 | void OnShowColInfo(wxCommandEvent& event); | |
99 | void OnShowSelInfo(wxCommandEvent& event); | |
100 | ||
101 | void OnUpdateShowColInfo(wxUpdateUIEvent& event); | |
102 | ||
103 | wxImageList *m_imageListNormal; | |
104 | wxImageList *m_imageListSmall; | |
105 | ||
106 | private: | |
107 | // recreate the list control with the new flags | |
108 | void RecreateList(long flags, bool withText = TRUE); | |
109 | ||
110 | // fill the control with items depending on the view | |
111 | void InitWithListItems(); | |
112 | void InitWithReportItems(); | |
113 | void InitWithIconItems(bool withText, bool sameIcon = FALSE); | |
114 | void InitWithVirtualItems(); | |
115 | ||
116 | wxLog *m_logOld; | |
117 | ||
118 | DECLARE_EVENT_TABLE() | |
119 | }; | |
120 | ||
121 | ||
122 | // IDs for the menu commands | |
123 | enum | |
124 | { | |
125 | LIST_ABOUT, | |
126 | LIST_QUIT, | |
127 | ||
128 | LIST_LIST_VIEW, | |
129 | LIST_ICON_VIEW, | |
130 | LIST_ICON_TEXT_VIEW, | |
131 | LIST_SMALL_ICON_VIEW, | |
132 | LIST_SMALL_ICON_TEXT_VIEW, | |
133 | LIST_REPORT_VIEW, | |
134 | LIST_VIRTUAL_VIEW, | |
135 | ||
136 | LIST_DESELECT_ALL, | |
137 | LIST_SELECT_ALL, | |
138 | LIST_DELETE_ALL, | |
139 | LIST_DELETE, | |
140 | LIST_ADD, | |
141 | LIST_SORT, | |
142 | LIST_SET_FG_COL, | |
143 | LIST_SET_BG_COL, | |
144 | LIST_TOGGLE_MULTI_SEL, | |
145 | LIST_TOGGLE_FIRST, | |
146 | LIST_SHOW_COL_INFO, | |
147 | LIST_SHOW_SEL_INFO, | |
148 | LIST_FOCUS_LAST, | |
149 | ||
150 | LIST_CTRL = 1000 | |
151 | }; | |
152 |