1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: ListBox with editable items
4 // Author: Vaclav Slavik
6 // Copyright: (c) Vaclav Slavik
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __WX_EDITLBOX_H__
12 #define __WX_EDITLBOX_H__
15 #pragma interface "editlbox.h"
21 #define GIZMODLLEXPORT WXDLLEXPORT
23 #define GIZMODLLEXPORT
27 class WXDLLEXPORT wxBitmapButton
;
28 class WXDLLEXPORT wxListCtrl
;
29 class WXDLLEXPORT wxListEvent
;
31 #define wxEL_ALLOW_NEW 0x0100
32 #define wxEL_ALLOW_EDIT 0x0200
33 #define wxEL_ALLOW_DELETE 0x0400
35 // This class provides a composite control that lets the
36 // user easily enter list of strings
38 class GIZMODLLEXPORT wxEditableListBox
: public wxPanel
40 DECLARE_CLASS(wxEditableListBox
);
43 wxEditableListBox(wxWindow
*parent
, wxWindowID id
,
44 const wxString
& label
,
45 const wxPoint
& pos
= wxDefaultPosition
,
46 const wxSize
& size
= wxDefaultSize
,
47 long style
= wxEL_ALLOW_NEW
| wxEL_ALLOW_EDIT
| wxEL_ALLOW_DELETE
,
48 const wxString
& name
= wxT("editableListBox"));
50 void SetStrings(const wxArrayString
& strings
);
51 void GetStrings(wxArrayString
& strings
);
53 wxListCtrl
* GetListCtrl() { return m_listCtrl
; }
54 wxBitmapButton
* GetDelButton() { return m_bDel
; }
55 wxBitmapButton
* GetNewButton() { return m_bNew
; }
56 wxBitmapButton
* GetUpButton() { return m_bUp
; }
57 wxBitmapButton
* GetDownButton() { return m_bDown
; }
58 wxBitmapButton
* GetEditButton() { return m_bEdit
; }
61 wxBitmapButton
*m_bDel
, *m_bNew
, *m_bUp
, *m_bDown
, *m_bEdit
;
62 wxListCtrl
*m_listCtrl
;
66 void OnItemSelected(wxListEvent
& event
);
67 void OnEndLabelEdit(wxListEvent
& event
);
68 void OnNewItem(wxCommandEvent
& event
);
69 void OnDelItem(wxCommandEvent
& event
);
70 void OnEditItem(wxCommandEvent
& event
);
71 void OnUpItem(wxCommandEvent
& event
);
72 void OnDownItem(wxCommandEvent
& event
);