]> git.saurik.com Git - wxWidgets.git/blob - contrib/include/wx/gizmos/editlbox.h
Applied [ 594925 ] Implement wxArtProvider and XRC together
[wxWidgets.git] / contrib / include / wx / gizmos / editlbox.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: editlbox.h
3 // Purpose: ListBox with editable items
4 // Author: Vaclav Slavik
5 // RCS-ID: $Id$
6 // Copyright: (c) Vaclav Slavik
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10
11 #ifndef __WX_EDITLBOX_H__
12 #define __WX_EDITLBOX_H__
13
14 #ifdef __GNUG__
15 #pragma interface "editlbox.h"
16 #endif
17
18 #include "wx/panel.h"
19
20 #ifdef GIZMOISDLL
21 #define GIZMODLLEXPORT WXDLLEXPORT
22 #else
23 #define GIZMODLLEXPORT
24 #endif
25
26
27 class WXDLLEXPORT wxBitmapButton;
28 class WXDLLEXPORT wxListCtrl;
29 class WXDLLEXPORT wxListEvent;
30
31 #define wxEL_ALLOW_NEW 0x0100
32 #define wxEL_ALLOW_EDIT 0x0200
33 #define wxEL_ALLOW_DELETE 0x0400
34
35 // This class provides a composite control that lets the
36 // user easily enter list of strings
37
38 class GIZMODLLEXPORT wxEditableListBox : public wxPanel
39 {
40 DECLARE_CLASS(wxEditableListBox);
41
42 public:
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"));
49
50 void SetStrings(const wxArrayString& strings);
51 void GetStrings(wxArrayString& strings);
52
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; }
59
60 protected:
61 wxBitmapButton *m_bDel, *m_bNew, *m_bUp, *m_bDown, *m_bEdit;
62 wxListCtrl *m_listCtrl;
63 int m_selection;
64 long m_style;
65
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);
73
74 DECLARE_EVENT_TABLE()
75 };
76
77 #endif