1998-05-22 15:57:05 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: listctrl.h
|
|
|
|
// Purpose: wxListCtrl sample
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 04/01/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart and Markus Holzem
|
1999-07-23 19:41:45 -04:00
|
|
|
// Licence: wxWindows license
|
1998-05-22 15:57:05 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Define a new application type
|
|
|
|
class MyApp: public wxApp
|
1999-12-01 17:07:25 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual bool OnInit();
|
1998-05-22 15:57:05 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
class MyListCtrl: public wxListCtrl
|
|
|
|
{
|
|
|
|
public:
|
2001-07-11 12:22:12 -04:00
|
|
|
MyListCtrl(wxWindow *parent,
|
|
|
|
const wxWindowID id,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
long style)
|
|
|
|
: wxListCtrl(parent, id, pos, size, style),
|
|
|
|
m_attr(*wxCYAN, *wxLIGHT_GREY, wxNullFont)
|
1999-07-23 19:41:45 -04:00
|
|
|
{
|
|
|
|
}
|
1999-12-01 17:07:25 -05:00
|
|
|
|
2001-07-09 11:58:24 -04:00
|
|
|
// add one item to the listctrl in report mode
|
|
|
|
void InsertItemInReportView(int i);
|
|
|
|
|
1999-08-24 16:26:06 -04:00
|
|
|
void OnColClick(wxListEvent& event);
|
2001-08-31 21:01:51 -04:00
|
|
|
void OnColRightClick(wxListEvent& event);
|
|
|
|
void OnColBeginDrag(wxListEvent& event);
|
|
|
|
void OnColDragging(wxListEvent& event);
|
|
|
|
void OnColEndDrag(wxListEvent& event);
|
1999-07-23 19:41:45 -04:00
|
|
|
void OnBeginDrag(wxListEvent& event);
|
|
|
|
void OnBeginRDrag(wxListEvent& event);
|
|
|
|
void OnBeginLabelEdit(wxListEvent& event);
|
|
|
|
void OnEndLabelEdit(wxListEvent& event);
|
|
|
|
void OnDeleteItem(wxListEvent& event);
|
2000-02-06 08:51:01 -05:00
|
|
|
void OnDeleteAllItems(wxListEvent& event);
|
1999-07-23 19:41:45 -04:00
|
|
|
void OnGetInfo(wxListEvent& event);
|
|
|
|
void OnSetInfo(wxListEvent& event);
|
|
|
|
void OnSelected(wxListEvent& event);
|
|
|
|
void OnDeselected(wxListEvent& event);
|
|
|
|
void OnListKeyDown(wxListEvent& event);
|
|
|
|
void OnActivated(wxListEvent& event);
|
2001-07-19 20:25:09 -04:00
|
|
|
void OnCacheHint(wxListEvent& event);
|
1998-05-22 15:57:05 -04:00
|
|
|
|
1999-06-01 11:32:12 -04:00
|
|
|
void OnChar(wxKeyEvent& event);
|
|
|
|
|
2000-02-24 18:40:42 -05:00
|
|
|
private:
|
2001-09-02 19:47:42 -04:00
|
|
|
void SetColumnImage(int col, int image);
|
|
|
|
|
2000-02-24 18:40:42 -05:00
|
|
|
void LogEvent(const wxListEvent& event, const wxChar *eventName);
|
|
|
|
|
2001-07-04 21:27:38 -04:00
|
|
|
virtual wxString OnGetItemText(long item, long column) const;
|
|
|
|
virtual int OnGetItemImage(long item) const;
|
2001-07-11 12:22:12 -04:00
|
|
|
virtual wxListItemAttr *OnGetItemAttr(long item) const;
|
|
|
|
|
|
|
|
wxListItemAttr m_attr;
|
2001-07-04 21:27:38 -04:00
|
|
|
|
1999-07-23 19:41:45 -04:00
|
|
|
DECLARE_EVENT_TABLE()
|
1998-05-22 15:57:05 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// Define a new frame type
|
|
|
|
class MyFrame: public wxFrame
|
1999-07-23 19:41:45 -04:00
|
|
|
{
|
|
|
|
public:
|
1998-05-22 15:57:05 -04:00
|
|
|
MyListCtrl *m_listCtrl;
|
|
|
|
wxTextCtrl *m_logWindow;
|
|
|
|
|
2000-02-24 18:40:42 -05:00
|
|
|
MyFrame(const wxChar *title, int x, int y, int w, int h);
|
1999-07-23 19:41:45 -04:00
|
|
|
~MyFrame();
|
|
|
|
|
|
|
|
public:
|
2001-07-04 21:27:38 -04:00
|
|
|
void OnSize(wxSizeEvent& event);
|
|
|
|
|
1998-05-22 15:57:05 -04:00
|
|
|
void OnQuit(wxCommandEvent& event);
|
|
|
|
void OnAbout(wxCommandEvent& event);
|
|
|
|
void OnListView(wxCommandEvent& event);
|
|
|
|
void OnReportView(wxCommandEvent& event);
|
|
|
|
void OnIconView(wxCommandEvent& event);
|
|
|
|
void OnIconTextView(wxCommandEvent& event);
|
|
|
|
void OnSmallIconView(wxCommandEvent& event);
|
|
|
|
void OnSmallIconTextView(wxCommandEvent& event);
|
2001-07-04 21:27:38 -04:00
|
|
|
void OnVirtualView(wxCommandEvent& event);
|
|
|
|
|
2001-08-13 11:41:18 -04:00
|
|
|
void OnFocusLast(wxCommandEvent& event);
|
2000-03-13 12:20:39 -05:00
|
|
|
void OnToggleFirstSel(wxCommandEvent& event);
|
1998-08-23 16:06:24 -04:00
|
|
|
void OnDeselectAll(wxCommandEvent& event);
|
|
|
|
void OnSelectAll(wxCommandEvent& event);
|
2001-07-06 17:18:15 -04:00
|
|
|
void OnAdd(wxCommandEvent& event);
|
2001-06-23 18:24:33 -04:00
|
|
|
void OnDelete(wxCommandEvent& event);
|
1999-07-23 19:41:45 -04:00
|
|
|
void OnDeleteAll(wxCommandEvent& event);
|
1999-12-01 17:07:25 -05:00
|
|
|
void OnSort(wxCommandEvent& event);
|
2000-02-07 20:07:48 -05:00
|
|
|
void OnSetFgColour(wxCommandEvent& event);
|
|
|
|
void OnSetBgColour(wxCommandEvent& event);
|
2000-02-10 13:12:44 -05:00
|
|
|
void OnToggleMultiSel(wxCommandEvent& event);
|
2000-07-15 15:51:35 -04:00
|
|
|
void OnShowColInfo(wxCommandEvent& event);
|
2001-07-07 18:42:35 -04:00
|
|
|
void OnShowSelInfo(wxCommandEvent& event);
|
1999-07-23 19:41:45 -04:00
|
|
|
|
2001-07-04 21:27:38 -04:00
|
|
|
void OnUpdateShowColInfo(wxUpdateUIEvent& event);
|
1999-07-23 19:41:45 -04:00
|
|
|
|
2000-02-24 18:40:42 -05:00
|
|
|
wxImageList *m_imageListNormal;
|
|
|
|
wxImageList *m_imageListSmall;
|
|
|
|
|
|
|
|
private:
|
2001-07-07 12:52:27 -04:00
|
|
|
// recreate the list control with the new flags
|
|
|
|
void RecreateList(long flags, bool withText = TRUE);
|
|
|
|
|
|
|
|
// fill the control with items depending on the view
|
|
|
|
void InitWithListItems();
|
|
|
|
void InitWithReportItems();
|
|
|
|
void InitWithIconItems(bool withText, bool sameIcon = FALSE);
|
|
|
|
void InitWithVirtualItems();
|
|
|
|
|
2000-02-24 18:40:42 -05:00
|
|
|
wxLog *m_logOld;
|
|
|
|
|
1999-07-23 19:41:45 -04:00
|
|
|
DECLARE_EVENT_TABLE()
|
1998-05-22 15:57:05 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-07-04 21:27:38 -04:00
|
|
|
// IDs for the menu commands
|
1999-12-01 17:07:25 -05:00
|
|
|
enum
|
|
|
|
{
|
2001-07-06 17:18:15 -04:00
|
|
|
LIST_ABOUT,
|
2001-07-04 21:27:38 -04:00
|
|
|
LIST_QUIT,
|
2001-07-06 17:18:15 -04:00
|
|
|
|
2001-07-04 21:27:38 -04:00
|
|
|
LIST_LIST_VIEW,
|
|
|
|
LIST_ICON_VIEW,
|
|
|
|
LIST_ICON_TEXT_VIEW,
|
|
|
|
LIST_SMALL_ICON_VIEW,
|
|
|
|
LIST_SMALL_ICON_TEXT_VIEW,
|
2001-07-06 17:18:15 -04:00
|
|
|
LIST_REPORT_VIEW,
|
2001-07-04 21:27:38 -04:00
|
|
|
LIST_VIRTUAL_VIEW,
|
|
|
|
|
|
|
|
LIST_DESELECT_ALL,
|
|
|
|
LIST_SELECT_ALL,
|
|
|
|
LIST_DELETE_ALL,
|
2001-06-23 18:24:33 -04:00
|
|
|
LIST_DELETE,
|
2001-07-06 17:18:15 -04:00
|
|
|
LIST_ADD,
|
1999-12-01 17:07:25 -05:00
|
|
|
LIST_SORT,
|
2000-02-07 20:07:48 -05:00
|
|
|
LIST_SET_FG_COL,
|
|
|
|
LIST_SET_BG_COL,
|
2000-02-10 13:12:44 -05:00
|
|
|
LIST_TOGGLE_MULTI_SEL,
|
2000-03-13 12:20:39 -05:00
|
|
|
LIST_TOGGLE_FIRST,
|
2000-07-15 15:51:35 -04:00
|
|
|
LIST_SHOW_COL_INFO,
|
2001-07-07 18:42:35 -04:00
|
|
|
LIST_SHOW_SEL_INFO,
|
2001-08-13 11:41:18 -04:00
|
|
|
LIST_FOCUS_LAST,
|
1998-05-22 15:57:05 -04:00
|
|
|
|
1999-12-01 17:07:25 -05:00
|
|
|
LIST_CTRL = 1000
|
|
|
|
};
|
1998-05-22 15:57:05 -04:00
|
|
|
|