]>
git.saurik.com Git - wxWidgets.git/blob - interface/editlbox.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxEditableListBox
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxEditableListBox
13 An editable listbox is composite control that lets the user easily enter,
14 delete and reorder a list of strings.
17 @style{wxEL_ALLOW_NEW}:
18 Allows the user to enter new strings.
19 @style{wxEL_ALLOW_EDIT}:
20 Allows the user to edit existing strings.
21 @style{wxEL_ALLOW_DELETE}:
22 Allows the user to delete existing strings.
23 @style{wxEL_NO_REORDER}:
24 Does not allow the user to reorder the strings.
25 @style{wxEL_DEFAULT_STYLE}:
26 Default style: wxEL_ALLOW_NEW|wxEL_ALLOW_EDIT|wxEL_ALLOW_DELETE.
34 class wxEditableListBox
: public wxPanel
43 Constructor, creating and showing a list box.
46 Parent window. Must not be @NULL.
48 Window identifier. The value wxID_ANY indicates a default value.
50 The text shown just before the list control.
54 Window size. If wxDefaultSize is specified then the window is sized
57 Window style. See wxEditableListBox.
63 wxEditableListBox(wxWindow
* parent
, wxWindowID id
,
64 const wxString
& label
,
65 const wxPoint
& pos
= wxDefaultPosition
,
66 const wxSize
& size
= wxDefaultSize
,
67 long style
= wxEL_DEFAULT_STYLE
,
68 const wxString
& name
= "editableListBox");
71 Destructor, destroying the list box.
76 Creates the editable listbox for two-step construction.
77 See wxEditableListBox() for further details.
79 bool Create(wxWindow
* parent
, wxWindowID id
,
80 const wxString
& label
,
81 const wxPoint
& pos
= wxDefaultPosition
,
82 const wxSize
& size
= wxDefaultSize
,
83 long style
= wxEL_DEFAULT_STYLE
,
84 const wxString
& name
= "editableListBox");
87 Replaces current contents with given strings.
89 void SetStrings(const wxArrayString
& strings
);
93 Returns in the given array the current contents of the control
94 (the array will be erased before control's contents are appended).
96 void GetSelections(wxArrayString
& strings
) const;