1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/rearrangectrl.cpp
3 // Purpose: implementation of classes in wx/rearrangectrl.h
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // for compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
27 #include "wx/button.h"
31 #include "wx/rearrangectrl.h"
33 // ============================================================================
34 // wxRearrangeList implementation
35 // ============================================================================
38 WXDLLIMPEXP_DATA_CORE(const char) wxRearrangeListNameStr
[] = "wxRearrangeList";
40 BEGIN_EVENT_TABLE(wxRearrangeList
, wxCheckListBox
)
41 EVT_CHECKLISTBOX(wxID_ANY
, wxRearrangeList::OnCheck
)
44 bool wxRearrangeList::Create(wxWindow
*parent
,
48 const wxArrayInt
& order
,
49 const wxArrayString
& items
,
51 const wxValidator
& validator
,
54 // construct the array of items in the order in which they should appear in
56 const size_t count
= items
.size();
57 wxCHECK_MSG( order
.size() == count
, false, "arrays not in sync" );
59 wxArrayString itemsInOrder
;
60 itemsInOrder
.reserve(count
);
62 for ( n
= 0; n
< count
; n
++ )
67 itemsInOrder
.push_back(items
[idx
]);
70 // do create the real control
71 if ( !wxCheckListBox::Create(parent
, id
, pos
, size
, itemsInOrder
,
72 style
, validator
, name
) )
75 // and now check all the items which should be initially checked
76 for ( n
= 0; n
< count
; n
++ )
87 bool wxRearrangeList::CanMoveCurrentUp() const
89 const int sel
= GetSelection();
90 return sel
!= wxNOT_FOUND
&& sel
!= 0;
93 bool wxRearrangeList::CanMoveCurrentDown() const
95 const int sel
= GetSelection();
96 return sel
!= wxNOT_FOUND
&& static_cast<unsigned>(sel
) != GetCount() - 1;
99 bool wxRearrangeList::MoveCurrentUp()
101 const int sel
= GetSelection();
102 if ( sel
== wxNOT_FOUND
|| sel
== 0 )
106 SetSelection(sel
- 1);
111 bool wxRearrangeList::MoveCurrentDown()
113 const int sel
= GetSelection();
114 if ( sel
== wxNOT_FOUND
|| static_cast<unsigned>(sel
) == GetCount() - 1 )
118 SetSelection(sel
+ 1);
123 void wxRearrangeList::Swap(int pos1
, int pos2
)
125 wxSwap(m_order
[pos1
], m_order
[pos2
]);
127 const wxString stringTmp
= GetString(pos1
);
128 const bool checkedTmp
= IsChecked(pos1
);
130 SetString(pos1
, GetString(pos2
));
131 Check(pos1
, IsChecked(pos2
));
133 SetString(pos2
, stringTmp
);
134 Check(pos2
, checkedTmp
);
137 void wxRearrangeList::OnCheck(wxCommandEvent
& event
)
139 // update the internal state to match the new item state
140 const int n
= event
.GetInt();
142 m_order
[n
] = ~m_order
[n
];
144 wxASSERT_MSG( (m_order
[n
] >= 0) == IsChecked(n
),
145 "discrepancy between internal state and GUI" );
148 // ============================================================================
149 // wxRearrangeCtrl implementation
150 // ============================================================================
152 BEGIN_EVENT_TABLE(wxRearrangeCtrl
, wxPanel
)
153 EVT_UPDATE_UI(wxID_UP
, wxRearrangeCtrl::OnUpdateButtonUI
)
154 EVT_UPDATE_UI(wxID_DOWN
, wxRearrangeCtrl::OnUpdateButtonUI
)
156 EVT_BUTTON(wxID_UP
, wxRearrangeCtrl::OnButton
)
157 EVT_BUTTON(wxID_DOWN
, wxRearrangeCtrl::OnButton
)
160 void wxRearrangeCtrl::Init()
166 wxRearrangeCtrl::Create(wxWindow
*parent
,
170 const wxArrayInt
& order
,
171 const wxArrayString
& items
,
173 const wxValidator
& validator
,
174 const wxString
& name
)
176 // create all the windows
177 if ( !wxPanel::Create(parent
, id
, pos
, size
, wxTAB_TRAVERSAL
, name
) )
180 m_list
= new wxRearrangeList(this, wxID_ANY
,
181 wxDefaultPosition
, wxDefaultSize
,
184 wxButton
* const btnUp
= new wxButton(this, wxID_UP
);
185 wxButton
* const btnDown
= new wxButton(this, wxID_DOWN
);
187 // arrange them in a sizer
188 wxSizer
* const sizerBtns
= new wxBoxSizer(wxVERTICAL
);
189 sizerBtns
->Add(btnUp
, wxSizerFlags().Centre().Border(wxBOTTOM
));
190 sizerBtns
->Add(btnDown
, wxSizerFlags().Centre().Border(wxTOP
));
192 wxSizer
* const sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
193 sizerTop
->Add(m_list
, wxSizerFlags(1).Expand().Border(wxRIGHT
));
194 sizerTop
->Add(sizerBtns
, wxSizerFlags(0).Centre().Border(wxLEFT
));
202 void wxRearrangeCtrl::OnUpdateButtonUI(wxUpdateUIEvent
& event
)
204 event
.Enable( event
.GetId() == wxID_UP
? m_list
->CanMoveCurrentUp()
205 : m_list
->CanMoveCurrentDown() );
208 void wxRearrangeCtrl::OnButton(wxCommandEvent
& event
)
210 if ( event
.GetId() == wxID_UP
)
211 m_list
->MoveCurrentUp();
213 m_list
->MoveCurrentDown();
216 // ============================================================================
217 // wxRearrangeDialog implementation
218 // ============================================================================
221 WXDLLIMPEXP_DATA_CORE(const char) wxRearrangeDialogNameStr
[] = "wxRearrangeDlg";
223 wxRearrangeDialog::wxRearrangeDialog(wxWindow
*parent
,
224 const wxString
& message
,
225 const wxString
& title
,
226 const wxArrayInt
& order
,
227 const wxArrayString
& items
,
229 const wxString
& name
)
230 : wxDialog(parent
, wxID_ANY
, title
,
232 wxDEFAULT_DIALOG_STYLE
| wxRESIZE_BORDER
,
235 m_ctrl
= new wxRearrangeCtrl(this, wxID_ANY
, wxDefaultPosition
, wxDefaultSize
,
238 wxSizer
* const sizerTop
= new wxBoxSizer(wxVERTICAL
);
239 sizerTop
->Add(new wxStaticText(this, wxID_ANY
, message
),
240 wxSizerFlags().DoubleBorder());
241 sizerTop
->Add(m_ctrl
,
242 wxSizerFlags(1).Expand().Border());
243 sizerTop
->Add(CreateSeparatedButtonSizer(wxOK
| wxCANCEL
),
244 wxSizerFlags().Expand().Border());
245 SetSizerAndFit(sizerTop
);