// Modified by:
// Created: 04/01/98
// RCS-ID: $Id$
-// Copyright: (c) Julian Smart and Markus Holzem
+// Copyright: (c) Julian Smart
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
void SetColumnImage(int col, int image);
void LogEvent(const wxListEvent& event, const wxChar *eventName);
+ void LogColEvent(const wxListEvent& event, const wxChar *eventName);
virtual wxString OnGetItemText(long item, long column) const;
virtual int OnGetItemImage(long item) const;
class MyFrame: public wxFrame
{
public:
- MyListCtrl *m_listCtrl;
- wxTextCtrl *m_logWindow;
-
MyFrame(const wxChar *title, int x, int y, int w, int h);
~MyFrame();
-public:
+protected:
void OnSize(wxSizeEvent& event);
void OnQuit(wxCommandEvent& event);
void OnDeselectAll(wxCommandEvent& event);
void OnSelectAll(wxCommandEvent& event);
void OnAdd(wxCommandEvent& event);
+ void OnEdit(wxCommandEvent& event);
void OnDelete(wxCommandEvent& event);
void OnDeleteAll(wxCommandEvent& event);
void OnSort(wxCommandEvent& event);
wxImageList *m_imageListNormal;
wxImageList *m_imageListSmall;
+ wxPanel *m_panel;
+ MyListCtrl *m_listCtrl;
+ wxTextCtrl *m_logWindow;
+
private:
// recreate the list control with the new flags
void RecreateList(long flags, bool withText = TRUE);
LIST_DELETE_ALL,
LIST_DELETE,
LIST_ADD,
+ LIST_EDIT,
LIST_SORT,
LIST_SET_FG_COL,
LIST_SET_BG_COL,