]>
Commit | Line | Data |
---|---|---|
80cc5fc7 VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: tests/controls/listctrltest.cpp | |
3 | // Purpose: wxListCtrl unit test | |
4 | // Author: Vadim Zeitlin | |
5 | // Created: 2008-11-26 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org> | |
232fdc63 | 8 | // (c) 2010 Steven Lamerton |
80cc5fc7 VZ |
9 | /////////////////////////////////////////////////////////////////////////////// |
10 | ||
11 | // ---------------------------------------------------------------------------- | |
12 | // headers | |
13 | // ---------------------------------------------------------------------------- | |
14 | ||
15 | #include "testprec.h" | |
16 | ||
232fdc63 VZ |
17 | #if wxUSE_LISTCTRL |
18 | ||
80cc5fc7 VZ |
19 | #ifdef __BORLANDC__ |
20 | #pragma hdrstop | |
21 | #endif | |
22 | ||
23 | #ifndef WX_PRECOMP | |
24 | #include "wx/app.h" | |
80cc5fc7 VZ |
25 | #endif // WX_PRECOMP |
26 | ||
497c7dff | 27 | #include "wx/listctrl.h" |
232fdc63 VZ |
28 | #include "listbasetest.h" |
29 | #include "testableframe.h" | |
30 | #include "wx/uiaction.h" | |
497c7dff | 31 | |
80cc5fc7 VZ |
32 | // ---------------------------------------------------------------------------- |
33 | // test class | |
34 | // ---------------------------------------------------------------------------- | |
35 | ||
232fdc63 | 36 | class ListCtrlTestCase : public ListBaseTestCase, public CppUnit::TestCase |
80cc5fc7 VZ |
37 | { |
38 | public: | |
39 | ListCtrlTestCase() { } | |
40 | ||
41 | virtual void setUp(); | |
42 | virtual void tearDown(); | |
43 | ||
232fdc63 VZ |
44 | virtual wxListCtrl *GetList() const { return m_list; } |
45 | ||
80cc5fc7 VZ |
46 | private: |
47 | CPPUNIT_TEST_SUITE( ListCtrlTestCase ); | |
232fdc63 | 48 | wxLIST_BASE_TESTS(); |
93f6e00d | 49 | CPPUNIT_TEST( EditLabel ); |
232fdc63 VZ |
50 | WXUISIM_TEST( ColumnClick ); |
51 | WXUISIM_TEST( ColumnDrag ); | |
80cc5fc7 VZ |
52 | CPPUNIT_TEST_SUITE_END(); |
53 | ||
93f6e00d | 54 | void EditLabel(); |
232fdc63 VZ |
55 | #if wxUSE_UIACTIONSIMULATOR |
56 | // Column events are only supported in wxListCtrl currently so we test them | |
57 | // here rather than in ListBaseTest | |
58 | void ColumnClick(); | |
59 | void ColumnDrag(); | |
60 | #endif // wxUSE_UIACTIONSIMULATOR | |
80cc5fc7 VZ |
61 | |
62 | wxListCtrl *m_list; | |
63 | ||
64 | DECLARE_NO_COPY_CLASS(ListCtrlTestCase) | |
65 | }; | |
66 | ||
67 | // register in the unnamed registry so that these tests are run by default | |
68 | CPPUNIT_TEST_SUITE_REGISTRATION( ListCtrlTestCase ); | |
69 | ||
e3778b4d | 70 | // also include in its own registry so that these tests can be run alone |
80cc5fc7 VZ |
71 | CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( ListCtrlTestCase, "ListCtrlTestCase" ); |
72 | ||
73 | // ---------------------------------------------------------------------------- | |
74 | // test initialization | |
75 | // ---------------------------------------------------------------------------- | |
76 | ||
77 | void ListCtrlTestCase::setUp() | |
78 | { | |
79 | m_list = new wxListCtrl(wxTheApp->GetTopWindow()); | |
67561862 | 80 | m_list->SetWindowStyle(wxLC_REPORT); |
232fdc63 | 81 | m_list->SetSize(400, 200); |
80cc5fc7 VZ |
82 | } |
83 | ||
84 | void ListCtrlTestCase::tearDown() | |
85 | { | |
86 | delete m_list; | |
87 | m_list = NULL; | |
88 | } | |
89 | ||
93f6e00d VZ |
90 | void ListCtrlTestCase::EditLabel() |
91 | { | |
92 | m_list->InsertColumn(0, "Column 0"); | |
93 | m_list->InsertItem(0, "foo"); | |
94 | m_list->EditLabel(0); | |
95 | } | |
96 | ||
232fdc63 VZ |
97 | #if wxUSE_UIACTIONSIMULATOR |
98 | void ListCtrlTestCase::ColumnDrag() | |
80cc5fc7 | 99 | { |
ce7fe42e VZ |
100 | EventCounter begindrag(m_list, wxEVT_LIST_COL_BEGIN_DRAG); |
101 | EventCounter dragging(m_list, wxEVT_LIST_COL_DRAGGING); | |
102 | EventCounter enddrag(m_list, wxEVT_LIST_COL_END_DRAG); | |
ffdb0ee5 | 103 | |
80cc5fc7 VZ |
104 | m_list->InsertColumn(0, "Column 0"); |
105 | m_list->InsertColumn(1, "Column 1"); | |
106 | m_list->InsertColumn(2, "Column 2"); | |
232fdc63 VZ |
107 | m_list->Update(); |
108 | m_list->SetFocus(); | |
80cc5fc7 | 109 | |
232fdc63 | 110 | wxUIActionSimulator sim; |
80cc5fc7 | 111 | |
232fdc63 | 112 | wxPoint pt = m_list->ClientToScreen(wxPoint(m_list->GetColumnWidth(0), 5)); |
80cc5fc7 | 113 | |
232fdc63 VZ |
114 | sim.MouseMove(pt); |
115 | wxYield(); | |
80cc5fc7 | 116 | |
232fdc63 VZ |
117 | sim.MouseDown(); |
118 | wxYield(); | |
80cc5fc7 | 119 | |
232fdc63 VZ |
120 | sim.MouseMove(pt.x + 50, pt.y); |
121 | wxYield(); | |
80cc5fc7 | 122 | |
232fdc63 VZ |
123 | sim.MouseUp(); |
124 | wxYield(); | |
80cc5fc7 | 125 | |
744d91d4 SL |
126 | CPPUNIT_ASSERT_EQUAL(1, begindrag.GetCount()); |
127 | CPPUNIT_ASSERT(dragging.GetCount() > 0); | |
128 | CPPUNIT_ASSERT_EQUAL(1, enddrag.GetCount()); | |
80cc5fc7 | 129 | |
232fdc63 | 130 | m_list->ClearAll(); |
80cc5fc7 VZ |
131 | } |
132 | ||
232fdc63 | 133 | void ListCtrlTestCase::ColumnClick() |
67561862 | 134 | { |
ce7fe42e VZ |
135 | EventCounter colclick(m_list, wxEVT_LIST_COL_CLICK); |
136 | EventCounter colrclick(m_list, wxEVT_LIST_COL_RIGHT_CLICK); | |
67561862 | 137 | |
67561862 | 138 | |
232fdc63 | 139 | m_list->InsertColumn(0, "Column 0", wxLIST_FORMAT_LEFT, 60); |
b6812a6f | 140 | |
232fdc63 | 141 | wxUIActionSimulator sim; |
b6812a6f | 142 | |
232fdc63 VZ |
143 | sim.MouseMove(m_list->ClientToScreen(wxPoint(4, 4))); |
144 | wxYield(); | |
b6812a6f | 145 | |
232fdc63 VZ |
146 | sim.MouseClick(); |
147 | sim.MouseClick(wxMOUSE_BTN_RIGHT); | |
148 | wxYield(); | |
b7923f2a | 149 | |
744d91d4 SL |
150 | CPPUNIT_ASSERT_EQUAL(1, colclick.GetCount()); |
151 | CPPUNIT_ASSERT_EQUAL(1, colrclick.GetCount()); | |
b7923f2a | 152 | |
232fdc63 | 153 | m_list->ClearAll(); |
b7923f2a | 154 | } |
232fdc63 | 155 | #endif // wxUSE_UIACTIONSIMULATOR |
b7923f2a | 156 | |
232fdc63 | 157 | #endif // wxUSE_LISTCTRL |