]> git.saurik.com Git - wxWidgets.git/blame - wxPython/demo/wxListCtrl.py
Change demo to not try to drop the table when it thinks it is creating it for the...
[wxWidgets.git] / wxPython / demo / wxListCtrl.py
CommitLineData
cf694132
RD
1#!/bin/env python
2#----------------------------------------------------------------------------
3# Name: ListCtrl.py
4# Purpose: Testing lots of stuff, controls, window types, etc.
5#
6# Author: Robin Dunn & Gary Dumer
7#
8# Created:
9# RCS-ID: $Id$
10# Copyright: (c) 1998 by Total Control Software
11# Licence: wxWindows license
12#----------------------------------------------------------------------------
13
14from wxPython.wx import *
15
16#---------------------------------------------------------------------------
17
dcd38683
RD
18musicdata = {
191 : ("Bad English", "The Price Of Love", "Rock"),
202 : ("DNA featuring Suzanne Vega", "Tom's Diner", "Rock"),
213 : ("George Michael", "Praying For Time", "Rock"),
224 : ("Gloria Estefan", "Here We Are", "Rock"),
235 : ("Linda Ronstadt", "Don't Know Much", "Rock"),
246 : ("Michael Bolton", "How Am I Supposed To Live Without You", "Blues"),
257 : ("Paul Young", "Oh Girl", "Rock"),
268 : ("Paula Abdul", "Opposites Attract", "Rock"),
279 : ("Richard Marx", "Should've Known Better", "Rock"),
2810: ("Rod Stewart", "Forever Young", "Rock"),
2911: ("Roxette", "Dangerous", "Rock"),
3012: ("Sheena Easton", "The Lover In Me", "Rock"),
3113: ("Sinead O'Connor", "Nothing Compares 2 U", "Rock"),
3214: ("Stevie B.", "Because I Love You", "Rock"),
3315: ("Taylor Dayne", "Love Will Lead You Back", "Rock"),
3416: ("The Bangles", "Eternal Flame", "Rock"),
3517: ("Wilson Phillips", "Release Me", "Rock"),
3618: ("Billy Joel", "Blonde Over Blue", "Rock"),
3719: ("Billy Joel", "Famous Last Words", "Rock"),
3820: ("Billy Joel", "Lullabye (Goodnight, My Angel)", "Rock"),
3921: ("Billy Joel", "The River Of Dreams", "Rock"),
4022: ("Billy Joel", "Two Thousand Years", "Rock"),
4123: ("Janet Jackson", "Alright", "Rock"),
4224: ("Janet Jackson", "Black Cat", "Rock"),
4325: ("Janet Jackson", "Come Back To Me", "Rock"),
4426: ("Janet Jackson", "Escapade", "Rock"),
4527: ("Janet Jackson", "Love Will Never Do (Without You)", "Rock"),
4628: ("Janet Jackson", "Miss You Much", "Rock"),
4729: ("Janet Jackson", "Rhythm Nation", "Rock"),
4830: ("Janet Jackson", "State Of The World", "Rock"),
4931: ("Janet Jackson", "The Knowledge", "Rock"),
5032: ("Spyro Gyra", "End of Romanticism", "Jazz"),
5133: ("Spyro Gyra", "Heliopolis", "Jazz"),
5234: ("Spyro Gyra", "Jubilee", "Jazz"),
5335: ("Spyro Gyra", "Little Linda", "Jazz"),
5436: ("Spyro Gyra", "Morning Dance", "Jazz"),
5537: ("Spyro Gyra", "Song for Lorraine", "Jazz"),
5638: ("Yes", "Owner Of A Lonely Heart", "Rock"),
5739: ("Yes", "Rhythm Of Love", "Rock"),
58}
59
96bfd053 60import images
dcd38683 61
cf694132
RD
62class TestListCtrlPanel(wxPanel):
63 def __init__(self, parent, log):
c368d904 64 wxPanel.__init__(self, parent, -1, style=wxWANTS_CHARS)
cf694132
RD
65
66 self.log = log
f6bcfd97 67 tID = wxNewId()
cf694132
RD
68
69 self.il = wxImageList(16, 16)
96bfd053 70 bmp = images.getSmilesBitmap()
185d7c3e 71 idx1 = self.il.AddWithColourMask(bmp, wxWHITE)
cf694132 72
c368d904
RD
73 self.list = wxListCtrl(self, tID,
74 style=wxLC_REPORT|wxSUNKEN_BORDER)
cf694132
RD
75 self.list.SetImageList(self.il, wxIMAGE_LIST_SMALL)
76
185d7c3e 77 # Why doesn't this show up on MSW???
cf694132 78 self.list.SetToolTip(wxToolTip("This is a ToolTip!"))
cf694132 79
dcd38683 80 self.list.InsertColumn(0, "Artist")
c368d904 81 self.list.InsertColumn(1, "Title", wxLIST_FORMAT_RIGHT)
dcd38683
RD
82 self.list.InsertColumn(2, "Genre")
83 items = musicdata.items()
84 for x in range(len(items)):
85 key, data = items[x]
86 self.list.InsertImageStringItem(x, data[0], idx1)
87 self.list.SetStringItem(x, 1, data[1])
88 self.list.SetStringItem(x, 2, data[2])
89 self.list.SetItemData(x, key)
cf694132
RD
90
91 self.list.SetColumnWidth(0, wxLIST_AUTOSIZE)
92 self.list.SetColumnWidth(1, wxLIST_AUTOSIZE)
dcd38683 93 ##self.list.SetColumnWidth(2, wxLIST_AUTOSIZE)
cf694132 94
c368d904
RD
95 self.list.SetItemState(25, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED)
96
97 #self.list.SetItemState(25, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED)
98 #self.list.EnsureVisible(25)
99
100 # show how to change the colour of an item
101 item = self.list.GetItem(1)
102 item.SetTextColour(wxBLUE)
103 self.list.SetItem(item)
bb0054cd
RD
104
105 self.currentItem = 0
f6bcfd97 106 EVT_SIZE(self, self.OnSize)
bb0054cd 107 EVT_LIST_ITEM_SELECTED(self, tID, self.OnItemSelected)
c368d904 108 EVT_LIST_ITEM_ACTIVATED(self, tID, self.OnItemActivated)
8bf5d46e 109 EVT_LIST_DELETE_ITEM(self, tID, self.OnItemDelete)
dcd38683 110 EVT_LIST_COL_CLICK(self, tID, self.OnColClick)
bb0054cd 111 EVT_LEFT_DCLICK(self.list, self.OnDoubleClick)
a08cbc01
RD
112 EVT_RIGHT_DOWN(self.list, self.OnRightDown)
113
64be6958
RD
114 # for wxMSW
115 EVT_COMMAND_RIGHT_CLICK(self.list, tID, self.OnRightClick)
116
117 # for wxGTK
118 EVT_RIGHT_UP(self.list, self.OnRightClick)
119
a08cbc01
RD
120
121 def OnRightDown(self, event):
122 self.x = event.GetX()
64be6958
RD
123 self.y = event.GetY()
124 self.log.WriteText("x, y = %s\n" % str((self.x, self.y)))
a08cbc01 125 event.Skip()
bb0054cd 126
185d7c3e
RD
127
128 def getColumnText(self, index, col):
129 item = self.list.GetItem(index, col)
130 return item.GetText()
131
132
bb0054cd
RD
133 def OnItemSelected(self, event):
134 self.currentItem = event.m_itemIndex
185d7c3e
RD
135 self.log.WriteText("OnItemSelected: %s, %s, %s\n" %
136 (self.list.GetItemText(self.currentItem),
137 self.getColumnText(self.currentItem, 1),
138 self.getColumnText(self.currentItem, 2)))
139
bb0054cd 140
c368d904
RD
141 def OnItemActivated(self, event):
142 self.currentItem = event.m_itemIndex
143 self.log.WriteText("OnItemActivated: %s\n" % self.list.GetItemText(self.currentItem))
144
8bf5d46e
RD
145 def OnItemDelete(self, event):
146 self.log.WriteText("OnItemDelete\n")
147
dcd38683
RD
148 def OnColClick(self, event):
149 self.log.WriteText("OnColClick: %d\n" % event.m_col)
150 self.col = event.m_col
151 self.list.SortItems(self.ColumnSorter)
152
153 def ColumnSorter(self, key1, key2):
154 item1 = musicdata[key1][self.col]
155 item2 = musicdata[key2][self.col]
156 if item1 == item2: return 0
157 elif item1 < item2: return -1
158 else: return 1
159
8bf5d46e 160
bb0054cd
RD
161 def OnDoubleClick(self, event):
162 self.log.WriteText("OnDoubleClick item %s\n" % self.list.GetItemText(self.currentItem))
185d7c3e 163 event.Skip()
a08cbc01 164
bb0054cd
RD
165 def OnRightClick(self, event):
166 self.log.WriteText("OnRightClick %s\n" % self.list.GetItemText(self.currentItem))
e166644c 167 menu = wxMenu()
a08cbc01
RD
168 tPopupID1 = 0
169 tPopupID2 = 1
170 tPopupID3 = 2
8bf5d46e 171 tPopupID4 = 3
e166644c
RD
172 tPopupID5 = 5
173 menu.Append(tPopupID1, "One")
174 menu.Append(tPopupID2, "Two")
175 menu.Append(tPopupID3, "Three")
176 menu.Append(tPopupID4, "DeleteAllItems")
177 menu.Append(tPopupID5, "GetItem")
a08cbc01
RD
178 EVT_MENU(self, tPopupID1, self.OnPopupOne)
179 EVT_MENU(self, tPopupID2, self.OnPopupTwo)
180 EVT_MENU(self, tPopupID3, self.OnPopupThree)
8bf5d46e 181 EVT_MENU(self, tPopupID4, self.OnPopupFour)
e166644c
RD
182 EVT_MENU(self, tPopupID5, self.OnPopupFive)
183 self.PopupMenu(menu, wxPoint(self.x, self.y))
184 menu.Destroy()
185d7c3e 185 event.Skip()
a08cbc01
RD
186
187 def OnPopupOne(self, event):
188 self.log.WriteText("Popup one\n")
189
190 def OnPopupTwo(self, event):
191 self.log.WriteText("Popup two\n")
192
193 def OnPopupThree(self, event):
194 self.log.WriteText("Popup three\n")
cf694132 195
8bf5d46e
RD
196 def OnPopupFour(self, event):
197 self.list.DeleteAllItems()
198
e166644c
RD
199 def OnPopupFive(self, event):
200 item = self.list.GetItem(self.currentItem)
201 print item.m_text, item.m_itemId, self.list.GetItemData(self.currentItem)
202
cf694132
RD
203 def OnSize(self, event):
204 w,h = self.GetClientSizeTuple()
205 self.list.SetDimensions(0, 0, w, h)
206
207
208
209
a08cbc01
RD
210
211
cf694132
RD
212#---------------------------------------------------------------------------
213
214def runTest(frame, nb, log):
215 win = TestListCtrlPanel(nb, log)
216 return win
217
218#---------------------------------------------------------------------------
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235overview = """\
236A list control presents lists in a number of formats: list view, report view, icon view and small icon view. Elements are numbered from zero.
237
238wxListCtrl()
239------------------------
240
241Default constructor.
242
243wxListCtrl(wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxLC_ICON, const wxValidator& validator = wxDefaultValidator, const wxString& name = "listCtrl")
244
245Constructor, creating and showing a list control.
246
247Parameters
248-------------------
249
250parent = Parent window. Must not be NULL.
251
252id = Window identifier. A value of -1 indicates a default value.
253
254pos = Window position.
255
256size = Window size. If the default size (-1, -1) is specified then the window is sized appropriately.
257
258style = Window style. See wxListCtrl.
259
260validator = Window validator.
261
262name = Window name.
263"""