1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/lboxcmn.cpp
3 // Purpose: wxListBox class methods common to all platforms
4 // Author: Vadim Zeitlin
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
29 #include "wx/listbox.h"
32 #include "wx/dynarray.h"
33 #include "wx/arrstr.h"
38 // ============================================================================
40 // ============================================================================
42 wxListBoxBase::~wxListBoxBase()
44 // this destructor is required for Darwin
47 // ----------------------------------------------------------------------------
49 // ----------------------------------------------------------------------------
51 bool wxListBoxBase::SetStringSelection(const wxString
& s
, bool select
)
53 const int sel
= FindString(s
);
54 if ( sel
== wxNOT_FOUND
)
57 SetSelection(sel
, select
);
62 void wxListBoxBase::DeselectAll(int itemToLeaveSelected
)
64 if ( HasMultipleSelection() )
66 wxArrayInt selections
;
67 GetSelections(selections
);
69 size_t count
= selections
.GetCount();
70 for ( size_t n
= 0; n
< count
; n
++ )
72 int item
= selections
[n
];
73 if ( item
!= itemToLeaveSelected
)
77 else // single selection
79 int sel
= GetSelection();
80 if ( sel
!= wxNOT_FOUND
&& sel
!= itemToLeaveSelected
)
87 void wxListBoxBase::UpdateOldSelections()
89 if (HasFlag(wxLB_MULTIPLE
) || HasFlag(wxLB_EXTENDED
))
90 GetSelections( m_oldSelections
);
93 static void LBSendEvent( wxCommandEvent
&event
, wxListBoxBase
*listbox
, int item
)
96 event
.SetString( listbox
->GetString( item
) );
97 if ( listbox
->HasClientObjectData() )
98 event
.SetClientObject( listbox
->GetClientObject(item
) );
99 else if ( listbox
->HasClientUntypedData() )
100 event
.SetClientData( listbox
->GetClientData(item
) );
101 listbox
->HandleWindowEvent( event
);
104 void wxListBoxBase::CalcAndSendEvent()
106 wxCommandEvent
event(wxEVT_COMMAND_LISTBOX_SELECTED
, GetId() );
107 event
.SetEventObject( this );
109 wxArrayInt selections
;
110 GetSelections( selections
);
112 if ((selections
.GetCount() == 0) && (m_oldSelections
.GetCount() == 0))
114 // nothing changed, just leave
118 if (selections
.GetCount() == m_oldSelections
.GetCount())
120 bool changed
= false;
122 for (idx
= 0; idx
< selections
.GetCount(); idx
++)
124 if (selections
[idx
] != m_oldSelections
[idx
])
131 // nothing changed, just leave
136 if (selections
.GetCount() == 0)
138 // indicate that this is a deselection
139 event
.SetExtraLong( 0 );
140 int item
= m_oldSelections
[0];
141 m_oldSelections
= selections
;
142 LBSendEvent( event
, this, item
);
147 // Now test if any new item is selected
148 bool any_new_selected
= false;
150 for (idx
= 0; idx
< selections
.GetCount(); idx
++)
152 item
= selections
[idx
];
153 if (m_oldSelections
.Index(item
) == wxNOT_FOUND
)
155 any_new_selected
= true;
160 if (any_new_selected
)
162 // indicate that this is a selection
163 event
.SetExtraLong( 1 );
164 m_oldSelections
= selections
;
165 LBSendEvent( event
, this, item
);
169 // Now test if any new item is deselected
170 bool any_new_deselected
= false;
171 for (idx
= 0; idx
< m_oldSelections
.GetCount(); idx
++)
173 item
= m_oldSelections
[idx
];
174 if (selections
.Index(item
) == wxNOT_FOUND
)
176 any_new_deselected
= true;
181 if (any_new_deselected
)
183 // indicate that this is a selection
184 event
.SetExtraLong( 0 );
185 m_oldSelections
= selections
;
186 LBSendEvent( event
, this, item
);
190 wxLogError( wxT("Wrong wxListBox selection") );
193 // ----------------------------------------------------------------------------
195 // ----------------------------------------------------------------------------
197 void wxListBoxBase::Command(wxCommandEvent
& event
)
199 SetSelection(event
.GetInt(), event
.GetExtraLong() != 0);
200 (void)ProcessEvent(event
);
203 // ----------------------------------------------------------------------------
204 // SetFirstItem() and such
205 // ----------------------------------------------------------------------------
207 void wxListBoxBase::SetFirstItem(const wxString
& s
)
209 int n
= FindString(s
);
211 wxCHECK_RET( n
!= wxNOT_FOUND
, wxT("invalid string in wxListBox::SetFirstItem") );
216 void wxListBoxBase::AppendAndEnsureVisible(const wxString
& s
)
219 EnsureVisible(GetCount() - 1);
222 void wxListBoxBase::EnsureVisible(int WXUNUSED(n
))
224 // the base class version does nothing (the only alternative would be to
225 // call SetFirstItem() but this is probably even more stupid)
228 #endif // wxUSE_LISTBOX