]>
git.saurik.com Git - wxWidgets.git/blob - contrib/src/gizmos/editlbox.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: ListBox with editable items
4 // Author: Vaclav Slavik
6 // Copyright: (c) Vaclav Slavik
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "editlbox.h"
14 // For compilers that support precompilation, includes "wx/wx.h".
15 #include "wx/wxprec.h"
21 // for all others, include the necessary headers (this file is usually all you
22 // need because it includes almost all "standard" wxWidgets headers)
27 #include "wx/gizmos/editlbox.h"
29 #include "wx/listctrl.h"
34 // list control with auto-resizable column:
35 class CleverListCtrl
: public wxListCtrl
38 CleverListCtrl(wxWindow
*parent
,
39 wxWindowID id
= wxID_ANY
,
40 const wxPoint
&pos
= wxDefaultPosition
,
41 const wxSize
&size
= wxDefaultSize
,
42 long style
= wxLC_ICON
,
43 const wxValidator
& validator
= wxDefaultValidator
,
44 const wxString
&name
= wxListCtrlNameStr
)
45 : wxListCtrl(parent
, id
, pos
, size
, style
, validator
, name
)
52 InsertColumn(0, _T("item"));
60 w
-= wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
) + 6;
62 w
-= 2*wxSystemSettings::GetMetric(wxSYS_VSCROLL_X
);
69 void OnSize(wxSizeEvent
& event
)
76 BEGIN_EVENT_TABLE(CleverListCtrl
, wxListCtrl
)
77 EVT_SIZE(CleverListCtrl::OnSize
)
86 IMPLEMENT_CLASS(wxEditableListBox
, wxPanel
)
88 // NB: generate the IDs at runtime to avoid conflict with XRCID values,
89 // they could cause XRCCTRL() failures in XRC-based dialogs
90 const int wxID_ELB_DELETE
= wxNewId();
91 const int wxID_ELB_EDIT
= wxNewId();
92 const int wxID_ELB_NEW
= wxNewId();
93 const int wxID_ELB_UP
= wxNewId();
94 const int wxID_ELB_DOWN
= wxNewId();
95 const int wxID_ELB_LISTCTRL
= wxNewId();
97 BEGIN_EVENT_TABLE(wxEditableListBox
, wxPanel
)
98 EVT_LIST_ITEM_SELECTED(wxID_ELB_LISTCTRL
, wxEditableListBox::OnItemSelected
)
99 EVT_LIST_END_LABEL_EDIT(wxID_ELB_LISTCTRL
, wxEditableListBox::OnEndLabelEdit
)
100 EVT_BUTTON(wxID_ELB_NEW
, wxEditableListBox::OnNewItem
)
101 EVT_BUTTON(wxID_ELB_UP
, wxEditableListBox::OnUpItem
)
102 EVT_BUTTON(wxID_ELB_DOWN
, wxEditableListBox::OnDownItem
)
103 EVT_BUTTON(wxID_ELB_EDIT
, wxEditableListBox::OnEditItem
)
104 EVT_BUTTON(wxID_ELB_DELETE
, wxEditableListBox::OnDelItem
)
107 wxEditableListBox::wxEditableListBox(wxWindow
*parent
, wxWindowID id
,
108 const wxString
& label
,
109 const wxPoint
& pos
, const wxSize
& size
,
111 const wxString
& name
)
112 : wxPanel(parent
, id
, pos
, size
, wxTAB_TRAVERSAL
, name
)
115 m_bEdit
= m_bNew
= m_bDel
= m_bUp
= m_bDown
= NULL
;
117 wxSizer
*sizer
= new wxBoxSizer(wxVERTICAL
);
119 wxPanel
*subp
= new wxPanel(this, wxID_ANY
, wxDefaultPosition
, wxDefaultSize
,
120 wxSUNKEN_BORDER
| wxTAB_TRAVERSAL
);
121 wxSizer
*subsizer
= new wxBoxSizer(wxHORIZONTAL
);
122 subsizer
->Add(new wxStaticText(subp
, wxID_ANY
, label
), 1, wxALIGN_CENTRE_VERTICAL
| wxLEFT
, 4);
126 // FIXME - why is this needed? There's some reason why sunken border is
127 // ignored by sizers in wxMSW but not in wxGTK that I can't
133 if ( m_style
& wxEL_ALLOW_EDIT
)
135 m_bEdit
= new wxBitmapButton(subp
, wxID_ELB_EDIT
, wxBitmap(eledit_xpm
));
136 subsizer
->Add(m_bEdit
, 0, wxALIGN_CENTRE_VERTICAL
| wxTOP
| wxBOTTOM
, BTN_BORDER
);
139 if ( m_style
& wxEL_ALLOW_NEW
)
141 m_bNew
= new wxBitmapButton(subp
, wxID_ELB_NEW
, wxBitmap(elnew_xpm
));
142 subsizer
->Add(m_bNew
, 0, wxALIGN_CENTRE_VERTICAL
| wxTOP
| wxBOTTOM
, BTN_BORDER
);
145 if ( m_style
& wxEL_ALLOW_DELETE
)
147 m_bDel
= new wxBitmapButton(subp
, wxID_ELB_DELETE
, wxBitmap(eldel_xpm
));
148 subsizer
->Add(m_bDel
, 0, wxALIGN_CENTRE_VERTICAL
| wxTOP
| wxBOTTOM
, BTN_BORDER
);
151 m_bUp
= new wxBitmapButton(subp
, wxID_ELB_UP
, wxBitmap(elup_xpm
));
152 subsizer
->Add(m_bUp
, 0, wxALIGN_CENTRE_VERTICAL
| wxTOP
| wxBOTTOM
, BTN_BORDER
);
154 m_bDown
= new wxBitmapButton(subp
, wxID_ELB_DOWN
, wxBitmap(eldown_xpm
));
155 subsizer
->Add(m_bDown
, 0, wxALIGN_CENTRE_VERTICAL
| wxTOP
| wxBOTTOM
, BTN_BORDER
);
158 if ( m_bEdit
) m_bEdit
->SetToolTip(_("Edit item"));
159 if ( m_bNew
) m_bNew
->SetToolTip(_("New item"));
160 if ( m_bDel
) m_bDel
->SetToolTip(_("Delete item"));
161 m_bUp
->SetToolTip(_("Move up"));
162 m_bDown
->SetToolTip(_("Move down"));
165 subp
->SetSizer(subsizer
);
168 sizer
->Add(subp
, 0, wxEXPAND
);
170 long st
= wxLC_REPORT
| wxLC_NO_HEADER
| wxLC_SINGLE_SEL
| wxSUNKEN_BORDER
;
171 if ( style
& wxEL_ALLOW_EDIT
)
172 st
|= wxLC_EDIT_LABELS
;
173 m_listCtrl
= new CleverListCtrl(this, wxID_ELB_LISTCTRL
,
174 wxDefaultPosition
, wxDefaultSize
, st
);
175 wxArrayString empty_ar
;
176 SetStrings(empty_ar
);
178 sizer
->Add(m_listCtrl
, 1, wxEXPAND
);
184 void wxEditableListBox::SetStrings(const wxArrayString
& strings
)
186 m_listCtrl
->DeleteAllItems();
189 for (i
= 0; i
< strings
.GetCount(); i
++)
190 m_listCtrl
->InsertItem(i
, strings
[i
]);
192 m_listCtrl
->InsertItem(strings
.GetCount(), wxEmptyString
);
193 m_listCtrl
->SetItemState(0, wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
196 void wxEditableListBox::GetStrings(wxArrayString
& strings
)
200 for (int i
= 0; i
< m_listCtrl
->GetItemCount()-1; i
++)
201 strings
.Add(m_listCtrl
->GetItemText(i
));
204 void wxEditableListBox::OnItemSelected(wxListEvent
& event
)
206 m_selection
= event
.GetIndex();
207 m_bUp
->Enable(m_selection
!= 0 && m_selection
< m_listCtrl
->GetItemCount()-1);
208 m_bDown
->Enable(m_selection
< m_listCtrl
->GetItemCount()-2);
209 if (m_style
& wxEL_ALLOW_EDIT
)
210 m_bEdit
->Enable(m_selection
< m_listCtrl
->GetItemCount()-1);
211 if (m_style
& wxEL_ALLOW_DELETE
)
212 m_bDel
->Enable(m_selection
< m_listCtrl
->GetItemCount()-1);
215 void wxEditableListBox::OnNewItem(wxCommandEvent
& WXUNUSED(event
))
217 m_listCtrl
->SetItemState(m_listCtrl
->GetItemCount()-1,
218 wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
219 m_listCtrl
->EditLabel(m_selection
);
222 void wxEditableListBox::OnEndLabelEdit(wxListEvent
& event
)
224 if ( event
.GetIndex() == m_listCtrl
->GetItemCount()-1 &&
225 !event
.GetText().empty() )
227 // The user edited last (empty) line, i.e. added new entry. We have to
228 // add new empty line here so that adding one more line is still
230 m_listCtrl
->InsertItem(m_listCtrl
->GetItemCount(), wxEmptyString
);
234 void wxEditableListBox::OnDelItem(wxCommandEvent
& WXUNUSED(event
))
236 m_listCtrl
->DeleteItem(m_selection
);
237 m_listCtrl
->SetItemState(m_selection
,
238 wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
241 void wxEditableListBox::OnEditItem(wxCommandEvent
& WXUNUSED(event
))
243 m_listCtrl
->EditLabel(m_selection
);
246 void wxEditableListBox::OnUpItem(wxCommandEvent
& WXUNUSED(event
))
250 t1
= m_listCtrl
->GetItemText(m_selection
- 1);
251 t2
= m_listCtrl
->GetItemText(m_selection
);
252 m_listCtrl
->SetItemText(m_selection
- 1, t2
);
253 m_listCtrl
->SetItemText(m_selection
, t1
);
254 m_listCtrl
->SetItemState(m_selection
- 1,
255 wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);
258 void wxEditableListBox::OnDownItem(wxCommandEvent
& WXUNUSED(event
))
262 t1
= m_listCtrl
->GetItemText(m_selection
+ 1);
263 t2
= m_listCtrl
->GetItemText(m_selection
);
264 m_listCtrl
->SetItemText(m_selection
+ 1, t2
);
265 m_listCtrl
->SetItemText(m_selection
, t1
);
266 m_listCtrl
->SetItemState(m_selection
+ 1,
267 wxLIST_STATE_SELECTED
, wxLIST_STATE_SELECTED
);