Merge branch 'list-deselect-event'
Consistently send DESELECTED events from virtual wxListCtrl. See https://github.com/wxWidgets/wxWidgets/pull/1857
This commit is contained in:
@@ -1442,7 +1442,7 @@ protected:
|
||||
control itself when this event is generated, see @ref
|
||||
overview_events_with_mouse_capture "event handling overview".
|
||||
@event{EVT_LIST_ITEM_DESELECTED(id, func)}
|
||||
The item has been deselected.
|
||||
The item has been deselected. GetIndex() may be -1 with virtual lists.
|
||||
@event{EVT_LIST_ITEM_ACTIVATED(id, func)}
|
||||
The item has been activated (ENTER or double click).
|
||||
@event{EVT_LIST_ITEM_FOCUSED(id, func)}
|
||||
|
@@ -2447,7 +2447,8 @@ void wxListMainWindow::OnMouse( wxMouseEvent &event )
|
||||
else
|
||||
m_dragCount = 0;
|
||||
|
||||
// The only mouse event that can be generated without any valid item is
|
||||
// The only mouse events that can be generated without any valid item are
|
||||
// wxEVT_LIST_ITEM_DESELECTED for virtual lists, and
|
||||
// wxEVT_LIST_ITEM_RIGHT_CLICK as it can be useful to have a global
|
||||
// popup menu for the list control itself which should be shown even when
|
||||
// the user clicks outside of any item.
|
||||
@@ -2467,6 +2468,10 @@ void wxListMainWindow::OnMouse( wxMouseEvent &event )
|
||||
{
|
||||
// reset the selection and bail out
|
||||
HighlightAll(false);
|
||||
// generate a DESELECTED event for
|
||||
// virtual multi-selection lists
|
||||
if ( IsVirtual() && !IsSingleSel() )
|
||||
SendNotify( m_lineLastClicked, wxEVT_LIST_ITEM_DESELECTED );
|
||||
}
|
||||
|
||||
return;
|
||||
|
@@ -2470,20 +2470,23 @@ bool wxListCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
|
||||
case LVN_ITEMCHANGED:
|
||||
// we translate this catch all message into more interesting
|
||||
// (and more easy to process) wxWidgets events
|
||||
|
||||
// first of all, we deal with the state change events only and
|
||||
// only for valid items (item == -1 for the virtual list
|
||||
// control)
|
||||
if ( nmLV->uChanged & LVIF_STATE && iItem != -1 )
|
||||
{
|
||||
// temp vars for readability
|
||||
const UINT stOld = nmLV->uOldState;
|
||||
const UINT stNew = nmLV->uNewState;
|
||||
|
||||
// first of all, we deal with the state change events only and
|
||||
// only for valid items (item == -1 for the virtual list
|
||||
// control)
|
||||
if ( nmLV->uChanged & LVIF_STATE &&
|
||||
(iItem != -1 || (stNew & LVIS_SELECTED) != (stOld & LVIS_SELECTED)))
|
||||
{
|
||||
|
||||
event.m_item.SetId(iItem);
|
||||
event.m_item.SetMask(wxLIST_MASK_TEXT |
|
||||
wxLIST_MASK_IMAGE |
|
||||
wxLIST_MASK_DATA);
|
||||
if (iItem != -1)
|
||||
GetItem(event.m_item);
|
||||
|
||||
// has the focus changed?
|
||||
@@ -2540,6 +2543,7 @@ bool wxListCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
|
||||
event.m_itemIndex = iItem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ( eventType == wxEVT_NULL )
|
||||
{
|
||||
|
@@ -203,6 +203,7 @@ void ListBaseTestCase::ItemClick()
|
||||
EventCounter focused(list, wxEVT_LIST_ITEM_FOCUSED);
|
||||
EventCounter activated(list, wxEVT_LIST_ITEM_ACTIVATED);
|
||||
EventCounter rclick(list, wxEVT_LIST_ITEM_RIGHT_CLICK);
|
||||
EventCounter deselected(list, wxEVT_LIST_ITEM_DESELECTED);
|
||||
|
||||
wxUIActionSimulator sim;
|
||||
|
||||
@@ -224,6 +225,15 @@ void ListBaseTestCase::ItemClick()
|
||||
sim.MouseClick(wxMOUSE_BTN_RIGHT);
|
||||
wxYield();
|
||||
|
||||
// We want a point within the listctrl but below any items
|
||||
point = list->ClientToScreen(pos.GetPosition()) + wxPoint(10, 50);
|
||||
|
||||
sim.MouseMove(point);
|
||||
wxYield();
|
||||
|
||||
sim.MouseClick();
|
||||
wxYield();
|
||||
|
||||
// when the first item was selected the focus changes to it, but not
|
||||
// on subsequent clicks
|
||||
|
||||
@@ -234,6 +244,7 @@ void ListBaseTestCase::ItemClick()
|
||||
#ifndef _WX_GENERIC_LISTCTRL_H_
|
||||
CPPUNIT_ASSERT_EQUAL(1, focused.GetCount());
|
||||
CPPUNIT_ASSERT_EQUAL(1, selected.GetCount());
|
||||
CPPUNIT_ASSERT_EQUAL(1, deselected.GetCount());
|
||||
#endif
|
||||
CPPUNIT_ASSERT_EQUAL(1, activated.GetCount());
|
||||
CPPUNIT_ASSERT_EQUAL(1, rclick.GetCount());
|
||||
|
@@ -23,6 +23,8 @@
|
||||
#endif // WX_PRECOMP
|
||||
|
||||
#include "wx/listctrl.h"
|
||||
#include "testableframe.h"
|
||||
#include "wx/uiaction.h"
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// test class
|
||||
@@ -39,9 +41,11 @@ public:
|
||||
private:
|
||||
CPPUNIT_TEST_SUITE( VirtListCtrlTestCase );
|
||||
CPPUNIT_TEST( UpdateSelection );
|
||||
WXUISIM_TEST( DeselectedEvent );
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
|
||||
void UpdateSelection();
|
||||
void DeselectedEvent();
|
||||
|
||||
wxListCtrl *m_list;
|
||||
|
||||
@@ -105,4 +109,42 @@ void VirtListCtrlTestCase::UpdateSelection()
|
||||
CPPUNIT_ASSERT_EQUAL( 1, m_list->GetSelectedItemCount() );
|
||||
}
|
||||
|
||||
void VirtListCtrlTestCase::DeselectedEvent()
|
||||
{
|
||||
#if wxUSE_UIACTIONSIMULATOR
|
||||
m_list->AppendColumn("Col0");
|
||||
m_list->SetItemCount(1);
|
||||
wxListCtrl* const list = m_list;
|
||||
|
||||
EventCounter selected(list, wxEVT_LIST_ITEM_SELECTED);
|
||||
EventCounter deselected(list, wxEVT_LIST_ITEM_DESELECTED);
|
||||
|
||||
wxUIActionSimulator sim;
|
||||
|
||||
wxRect pos;
|
||||
list->GetItemRect(0, pos);
|
||||
|
||||
//We move in slightly so we are not on the edge
|
||||
wxPoint point = list->ClientToScreen(pos.GetPosition()) + wxPoint(10, 10);
|
||||
|
||||
sim.MouseMove(point);
|
||||
wxYield();
|
||||
|
||||
sim.MouseClick();
|
||||
wxYield();
|
||||
|
||||
// We want a point within the listctrl but below any items
|
||||
point = list->ClientToScreen(pos.GetPosition()) + wxPoint(10, 50);
|
||||
|
||||
sim.MouseMove(point);
|
||||
wxYield();
|
||||
|
||||
sim.MouseClick();
|
||||
wxYield();
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL(1, selected.GetCount());
|
||||
CPPUNIT_ASSERT_EQUAL(1, deselected.GetCount());
|
||||
#endif
|
||||
}
|
||||
|
||||
#endif // wxUSE_LISTCTRL
|
||||
|
Reference in New Issue
Block a user