]>
Commit | Line | Data |
---|---|---|
1fded56b | 1 | |
8fa876ca RD |
2 | import wx |
3 | import wx.gizmos as gizmos | |
1fded56b | 4 | |
8fa876ca | 5 | import images |
1fded56b RD |
6 | |
7 | #---------------------------------------------------------------------- | |
8 | ||
8fa876ca | 9 | class TestPanel(wx.Panel): |
1fded56b RD |
10 | def __init__(self, parent, log): |
11 | self.log = log | |
8fa876ca RD |
12 | wx.Panel.__init__(self, parent, -1) |
13 | self.Bind(wx.EVT_SIZE, self.OnSize) | |
1fded56b | 14 | |
55bd43d2 RD |
15 | self.tree = gizmos.TreeListCtrl(self, -1, style = |
16 | wx.TR_DEFAULT_STYLE | |
f1460f5b RD |
17 | #| wx.TR_HAS_BUTTONS |
18 | #| wx.TR_TWIST_BUTTONS | |
55bd43d2 | 19 | #| wx.TR_ROW_LINES |
33328cd8 | 20 | #| wx.TR_COLUMN_LINES |
55bd43d2 | 21 | #| wx.TR_NO_LINES |
648d396c | 22 | | wx.TR_FULL_ROW_HIGHLIGHT |
1fded56b | 23 | ) |
648d396c | 24 | |
1fded56b | 25 | isz = (16,16) |
8fa876ca RD |
26 | il = wx.ImageList(isz[0], isz[1]) |
27 | fldridx = il.Add(wx.ArtProvider_GetBitmap(wx.ART_FOLDER, wx.ART_OTHER, isz)) | |
28 | fldropenidx = il.Add(wx.ArtProvider_GetBitmap(wx.ART_FILE_OPEN, wx.ART_OTHER, isz)) | |
3a9becbd | 29 | fileidx = il.Add(wx.ArtProvider_GetBitmap(wx.ART_NORMAL_FILE, wx.ART_OTHER, isz)) |
1fded56b RD |
30 | smileidx = il.Add(images.getSmilesBitmap()) |
31 | ||
32 | self.tree.SetImageList(il) | |
33 | self.il = il | |
34 | ||
35 | # create some columns | |
36 | self.tree.AddColumn("Main column") | |
37 | self.tree.AddColumn("Column 1") | |
38 | self.tree.AddColumn("Column 2") | |
39 | self.tree.SetMainColumn(0) # the one with the tree in it... | |
40 | self.tree.SetColumnWidth(0, 175) | |
41 | ||
42 | ||
43 | self.root = self.tree.AddRoot("The Root Item") | |
44 | self.tree.SetItemText(self.root, "col 1 root", 1) | |
45 | self.tree.SetItemText(self.root, "col 2 root", 2) | |
8fa876ca RD |
46 | self.tree.SetItemImage(self.root, fldridx, which = wx.TreeItemIcon_Normal) |
47 | self.tree.SetItemImage(self.root, fldropenidx, which = wx.TreeItemIcon_Expanded) | |
1fded56b RD |
48 | |
49 | ||
50 | for x in range(15): | |
51 | txt = "Item %d" % x | |
52 | child = self.tree.AppendItem(self.root, txt) | |
53 | self.tree.SetItemText(child, txt + "(c1)", 1) | |
54 | self.tree.SetItemText(child, txt + "(c2)", 2) | |
8fa876ca RD |
55 | self.tree.SetItemImage(child, fldridx, which = wx.TreeItemIcon_Normal) |
56 | self.tree.SetItemImage(child, fldropenidx, which = wx.TreeItemIcon_Expanded) | |
1fded56b RD |
57 | |
58 | for y in range(5): | |
59 | txt = "item %d-%s" % (x, chr(ord("a")+y)) | |
60 | last = self.tree.AppendItem(child, txt) | |
61 | self.tree.SetItemText(last, txt + "(c1)", 1) | |
62 | self.tree.SetItemText(last, txt + "(c2)", 2) | |
8fa876ca RD |
63 | self.tree.SetItemImage(last, fldridx, which = wx.TreeItemIcon_Normal) |
64 | self.tree.SetItemImage(last, fldropenidx, which = wx.TreeItemIcon_Expanded) | |
1fded56b RD |
65 | |
66 | for z in range(5): | |
67 | txt = "item %d-%s-%d" % (x, chr(ord("a")+y), z) | |
68 | item = self.tree.AppendItem(last, txt) | |
69 | self.tree.SetItemText(item, txt + "(c1)", 1) | |
70 | self.tree.SetItemText(item, txt + "(c2)", 2) | |
8fa876ca RD |
71 | self.tree.SetItemImage(item, fileidx, which = wx.TreeItemIcon_Normal) |
72 | self.tree.SetItemImage(item, smileidx, which = wx.TreeItemIcon_Selected) | |
1fded56b RD |
73 | |
74 | ||
75 | self.tree.Expand(self.root) | |
76 | ||
8fa876ca | 77 | self.tree.GetMainWindow().Bind(wx.EVT_RIGHT_UP, self.OnRightUp) |
b01fc892 RD |
78 | |
79 | ||
80 | def OnRightUp(self, evt): | |
b01fc892 | 81 | pos = evt.GetPosition() |
b01fc892 RD |
82 | item, flags, col = self.tree.HitTest(pos) |
83 | if item: | |
00a5e5a9 RD |
84 | self.log.write('Flags: %s, Col:%s, Text: %s' % |
85 | (flags, col, self.tree.GetItemText(item, col))) | |
b01fc892 | 86 | |
1fded56b RD |
87 | def OnSize(self, evt): |
88 | self.tree.SetSize(self.GetSize()) | |
89 | ||
90 | ||
91 | #---------------------------------------------------------------------- | |
92 | ||
93 | def runTest(frame, nb, log): | |
94 | win = TestPanel(nb, log) | |
95 | return win | |
96 | ||
97 | #---------------------------------------------------------------------- | |
98 | ||
99 | ||
100 | ||
101 | overview = """<html><body> | |
95bfd958 | 102 | <h2><center>TreeListCtrl</center></h2> |
1fded56b | 103 | |
95bfd958 | 104 | The TreeListCtrl is essentially a wx.TreeCtrl with extra columns, |
8fa876ca | 105 | such that the look is similar to a wx.ListCtrl. |
1fded56b RD |
106 | |
107 | </body></html> | |
108 | """ | |
109 | ||
110 | ||
1fded56b RD |
111 | if __name__ == '__main__': |
112 | #raw_input("Press enter...") | |
113 | import sys,os | |
114 | import run | |
8eca4fef | 115 | run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:]) |
1fded56b | 116 |