wxMSW wxListBox implementation contained the same code as the private
LBSendEvent() function in lboxcmn.cpp, so make this function a (protected)
member of wxListBoxBase and reuse it instead.
Also change its and CalcAndSendEvent() return type to bool to be able to
return whether the event was processed or not.
As the result of this refactoring, the "is selected" flag is now set correctly
for the selection events under MSW (it was always off before).
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64496
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
int HitTest(int x, int y) const { return DoListHitTest(wxPoint(x, y)); }
int HitTest(int x, int y) const { return DoListHitTest(wxPoint(x, y)); }
- // For generating events in multiple and extended mode
+ // For generating events in multiple and extended mode: compare the current
+ // selections with the previously recorded ones (in m_oldSelections) and
+ // send the appropriate event if they differ, otherwise just return false.
+ bool CalcAndSendEvent();
+
wxArrayInt m_oldSelections;
void UpdateOldSelections();
wxArrayInt m_oldSelections;
void UpdateOldSelections();
- void CalcAndSendEvent();
protected:
virtual void DoSetFirstItem(int n) = 0;
protected:
virtual void DoSetFirstItem(int n) = 0;
virtual int DoListHitTest(const wxPoint& WXUNUSED(point)) const
{ return wxNOT_FOUND; }
virtual int DoListHitTest(const wxPoint& WXUNUSED(point)) const
{ return wxNOT_FOUND; }
+ // Send a listbox (de)selection or double click event.
+ //
+ // Returns true if the event was processed.
+ bool SendEvent(wxEventType evtType, int item, bool selected);
+
private:
wxDECLARE_NO_COPY_CLASS(wxListBoxBase);
};
private:
wxDECLARE_NO_COPY_CLASS(wxListBoxBase);
};
GetSelections( m_oldSelections );
}
GetSelections( m_oldSelections );
}
-static void LBSendEvent( wxCommandEvent &event, wxListBoxBase *listbox, int item )
+bool wxListBoxBase::SendEvent(wxEventType evtType, int item, bool selected)
- event.SetInt( item );
- event.SetString( listbox->GetString( item ) );
- if ( listbox->HasClientObjectData() )
- event.SetClientObject( listbox->GetClientObject(item) );
- else if ( listbox->HasClientUntypedData() )
- event.SetClientData( listbox->GetClientData(item) );
- listbox->HandleWindowEvent( event );
+ wxCommandEvent event(evtType, GetId());
+ event.SetEventObject(this);
+
+ event.SetInt(item);
+ event.SetString(GetString(item));
+ event.SetExtraLong(selected);
+
+ if ( HasClientObjectData() )
+ event.SetClientObject(GetClientObject(item));
+ else if ( HasClientUntypedData() )
+ event.SetClientData(GetClientData(item));
+
+ return HandleWindowEvent(event);
-void wxListBoxBase::CalcAndSendEvent()
+bool wxListBoxBase::CalcAndSendEvent()
- wxCommandEvent event(wxEVT_COMMAND_LISTBOX_SELECTED, GetId());
- event.SetEventObject( this );
-
wxArrayInt selections;
GetSelections(selections);
wxArrayInt selections;
GetSelections(selections);
if ( selections.empty() && m_oldSelections.empty() )
{
// nothing changed, just leave
if ( selections.empty() && m_oldSelections.empty() )
{
// nothing changed, just leave
}
const size_t countSel = selections.size(),
}
const size_t countSel = selections.size(),
// nothing changed, just leave
if ( !changed )
// nothing changed, just leave
if ( !changed )
}
int item = wxNOT_FOUND;
if ( selections.empty() )
{
}
int item = wxNOT_FOUND;
if ( selections.empty() )
{
- // indicate that this is a deselection
- event.SetExtraLong(0);
item = m_oldSelections[0];
}
else // we [still] have some selections
item = m_oldSelections[0];
}
else // we [still] have some selections
- if ( any_new_selected )
- {
- // indicate that this is a selection
- event.SetExtraLong(1);
- }
- else // no new items selected
+ if ( !any_new_selected )
- // Now test if any new item is deselected
+ // No new items selected, now test if any new item is deselected
bool any_new_deselected = false;
for ( size_t idx = 0; idx < countSelOld; idx++ )
{
bool any_new_deselected = false;
for ( size_t idx = 0; idx < countSelOld; idx++ )
{
if ( any_new_deselected )
{
// indicate that this is a selection
if ( any_new_deselected )
{
// indicate that this is a selection
m_oldSelections = selections;
m_oldSelections = selections;
- LBSendEvent(event, this, item);
+ return SendEvent(wxEVT_COMMAND_LISTBOX_SELECTED, item, selected);
}
// ----------------------------------------------------------------------------
}
// ----------------------------------------------------------------------------
bool wxListBox::MSWCommand(WXUINT param, WXWORD WXUNUSED(id))
{
bool wxListBox::MSWCommand(WXUINT param, WXWORD WXUNUSED(id))
{
- if ((param == LBN_SELCHANGE) && HasMultipleSelection())
- {
- CalcAndSendEvent();
- return true;
- }
-
wxEventType evtType;
int n;
if ( param == LBN_SELCHANGE )
{
wxEventType evtType;
int n;
if ( param == LBN_SELCHANGE )
{
+ if ( HasMultipleSelection() )
+ return CalcAndSendEvent();
+
evtType = wxEVT_COMMAND_LISTBOX_SELECTED;
n = SendMessage(GetHwnd(), LB_GETCARETINDEX, 0, 0);
evtType = wxEVT_COMMAND_LISTBOX_SELECTED;
n = SendMessage(GetHwnd(), LB_GETCARETINDEX, 0, 0);
- // retrieve the affected item
- if ( n == wxNOT_FOUND )
- return false;
-
- wxCommandEvent event(evtType, m_windowId);
- event.SetEventObject(this);
-
- if ( HasClientObjectData() )
- event.SetClientObject( GetClientObject(n) );
- else if ( HasClientUntypedData() )
- event.SetClientData( GetClientData(n) );
-
- event.SetString(GetString(n));
- event.SetInt(n);
-
- return HandleWindowEvent(event);
+ // only send an event if we have a valid item
+ return n != wxNOT_FOUND && SendEvent(evtType, n, true /* selection */);
}
// ----------------------------------------------------------------------------
}
// ----------------------------------------------------------------------------