]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/rearrangectrl.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/rearrangectrl.h
3 // Purpose: interface of wxRearrangeList
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 @class wxRearrangeList
14 A listbox-like control allowing the user to rearrange the items and to
15 enable or disable them.
17 This class allows to change the order of the items shown in it as well as
18 to check or uncheck them individually. The data structure used to allow
19 this is the order array which contains the items indices indexed by their
20 position with an added twist that the unchecked items are represented by
21 the bitwise complement of the corresponding index (for any architecture
22 using two's complement for negative numbers representation (i.e. just about
23 any at all) this means that a checked item N is represented by -N-1 in
24 unchecked state). In practice this means that you must apply the C bitwise
25 complement operator when constructing the order array, e.g.
28 order.push_back(0); // checked item #0
29 order.push_back(~1); // unchecked item #1
32 So, for example, the array order [1 -3 0] used in conjunction with the
33 items array ["first", "second", "third"] means that the items order is
34 "second", "third", "first" and the "third" item is unchecked while the
35 other two are checked.
37 This convention is used both for the order argument of the control ctor or
38 Create() and for the array returned from GetCurrentOrder().
40 Usually this control will be used together with other controls allowing to
41 move the items around in it interactively. The simplest possible solution
42 is to use wxRearrangeCtrl which combines it with two standard buttons to
43 move the current item up or down.
50 class wxRearrangeList
: public wxCheckListBox
56 Create() must be called later to effectively create the control.
61 Constructor really creating the control.
63 Please see Create() for the parameters description.
65 wxRearrangeList(wxWindow
*parent
,
69 const wxArrayInt
& order
,
70 const wxArrayString
& items
,
72 const wxValidator
& validator
= wxDefaultValidator
,
73 const wxString
& name
= wxRearrangeListNameStr
);
76 Effectively creates the window for an object created using the default
79 This function is very similar to wxCheckListBox::Create() except that
80 it has an additional parameter specifying the initial order of the
81 items. Please see the class documentation for the explanation of the
82 conventions used by the @a order argument.
85 The parent window, must be non-@NULL.
87 The window identifier.
89 The initial window position.
91 The initial window size.
93 Array specifying the initial order of the items in @a items array.
95 The items to display in the list.
97 The control style, there are no special styles for this class but
98 the base class styles can be used here.
100 Optional window validator.
102 Optional window name.
104 bool Create(wxWindow
*parent
,
108 const wxArrayInt
& order
,
109 const wxArrayString
& items
,
111 const wxValidator
& validator
= wxDefaultValidator
,
112 const wxString
& name
= wxRearrangeListNameStr
);
116 Return the current order of the items.
118 The order may be different from the one passed to the constructor if
119 MoveCurrentUp() or MoveCurrentDown() were called.
121 const wxArrayInt
& GetCurrentOrder() const;
124 Return @true if the currently selected item can be moved up.
126 This function is useful for EVT_UPDATE_UI handler for the standard "Up"
127 button often used together with this control and wxRearrangeCtrl uses
131 @true if the currently selected item can be moved up in the
132 listbox, @false if there is no selection or the current item is the
135 @see CanMoveCurrentDown()
137 bool CanMoveCurrentUp() const;
140 Return @true if the currently selected item can be moved down.
142 @see CanMoveCurrentUp()
144 bool CanMoveCurrentDown() const;
147 Move the currently selected item one position above.
149 This method is useful to implement the standard "Up" button behaviour
150 and wxRearrangeCtrl uses it for this.
153 @true if the item was moved or @false if this couldn't be done.
155 @see MoveCurrentDown()
157 bool MoveCurrentUp();
160 Move the currently selected item one position below.
164 bool MoveCurrentDown();
169 @class wxRearrangeCtrl
171 A composite control containing a wxRearrangeList and the buttons allowing
172 to move the items in it.
174 This control is in fact a panel containing the wxRearrangeList control and
175 the "Up" and "Down" buttons to move the currently selected item up or down.
176 It is used as the main part of a wxRearrangeDialog.
183 class wxRearrangeCtrl
189 Create() must be called later to effectively create the control.
194 Constructor really creating the control.
196 Please see Create() for the parameters description.
198 wxRearrangeCtrl(wxWindow
*parent
,
202 const wxArrayInt
& order
,
203 const wxArrayString
& items
,
205 const wxValidator
& validator
= wxDefaultValidator
,
206 const wxString
& name
= wxRearrangeListNameStr
);
209 Effectively creates the window for an object created using the default
212 The parameters of this method are the same as for
213 wxRearrangeList::Create().
215 bool Create(wxWindow
*parent
,
219 const wxArrayInt
& order
,
220 const wxArrayString
& items
,
222 const wxValidator
& validator
= wxDefaultValidator
,
223 const wxString
& name
= wxRearrangeListNameStr
);
226 Return the listbox which is the main part of this control.
228 wxRearrangeList
*GetList() const;
232 @class wxRearrangeDialog
234 A dialog allowing the user to rearrange the specified items.
236 This dialog can be used to allow the user to modify the order of the items
237 and to enable or disable them individually. For example:
240 items.push_back("meat");
241 items.push_back("fish");
242 items.push_back("fruits");
243 items.push_back("beer");
250 wxRearrangeDialog dlg(NULL,
251 "You can also uncheck the items you don't like "
253 "Sort the items in order of preference",
255 if ( dlg.ShowModal() == wxID_OK ) {
256 order = dlg.GetOrder();
257 for ( size_t n = 0; n < order.size(); n++ ) {
258 if ( order[n] >= 0 ) {
259 wxLogMessage("Your most preferred item is \"%s\"",
272 class wxRearrangeDialog
278 Create() must be called later to effectively create the control.
283 Constructor creating the dialog.
285 Please see Create() for the parameters description.
287 wxRearrangeDialog(wxWindow
*parent
,
288 const wxString
& message
,
289 const wxString
& title
,
290 const wxArrayInt
& order
,
291 const wxArrayString
& items
,
292 const wxPoint
& pos
= wxDefaultPosition
,
293 const wxString
& name
= wxRearrangeDialogNameStr
);
296 Effectively creates the dialog for an object created using the default
300 The dialog parent, possibly @NULL.
302 The message shown inside the dialog itself, above the items list.
304 The title of the dialog.
306 The initial order of the items in the convention used by
309 The items to show in the dialog.
311 Optional dialog position.
313 Optional dialog name.
315 @true if the dialog was successfully created or @false if creation
318 bool Create(wxWindow
*parent
,
319 const wxString
& message
,
320 const wxString
& title
,
321 const wxArrayInt
& order
,
322 const wxArrayString
& items
,
323 const wxPoint
& pos
= wxDefaultPosition
,
324 const wxString
& name
= wxRearrangeDialogNameStr
);
327 Customize the dialog by adding extra controls to it.
329 This function adds the given @a win to the dialog, putting it just
330 below the part occupied by wxRearrangeCtrl. It must be called after
331 creating the dialog and you will typically need to process the events
332 generated by the extra controls for them to do something useful.
336 class MyRearrangeDialog : public wxRearrangeDialog
339 MyRearrangeDialog(wxWindow *parent, ...)
340 : wxRearrangeDialog(parent, ...)
342 wxPanel *panel = new wxPanel(this);
343 wxSizer *sizer = new wxBoxSizer(wxHORIZONTAL);
344 sizer->Add(new wxStaticText(panel, wxID_ANY,
345 "Column width in pixels:"));
346 sizer->Add(new wxTextCtrl(panel, wxID_ANY, ""));
347 panel->SetSizer(sizer);
348 AddExtraControls(panel);
351 ... code to update the text control with the currently selected
352 item width and to react to its changes omitted ...
356 See also the complete example of a custom rearrange dialog in the
360 The window containing the extra controls. It must have this dialog
363 void AddExtraControls(wxWindow
*win
);
366 Return the list control used by the dialog.
368 @see wxRearrangeCtrl::GetList()
370 wxRearrangeList
*GetList() const;
373 Return the array describing the order of items after it was modified by
376 Please notice that the array will contain negative items if any items
377 were unchecked. See wxRearrangeList for more information about the
378 convention used for this array.
380 wxArrayInt
GetOrder() const;