]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/demo/wxTreeCtrl.py
Fixes to allow DLL compilation
[wxWidgets.git] / utils / wxPython / demo / wxTreeCtrl.py
index 7288f30ec3c71c534531569e5136d792386ca473..3c8587db274ec5c4fe24643fd0580ebfc3f8bab9 100644 (file)
@@ -15,12 +15,27 @@ class TestTreeCtrlPanel(wxPanel):
         self.tree = wxTreeCtrl(self, tID, wxDefaultPosition, wxDefaultSize,
                                wxTR_HAS_BUTTONS | wxTR_EDIT_LABELS)# | wxTR_MULTIPLE)
 
+        #il = wxImageList(16, 16)
+        #idx1 = il.Add(wxBitmap('bitmaps/smiles.bmp', wxBITMAP_TYPE_BMP))
+        #idx2 = il.Add(wxBitmap('bitmaps/open.bmp', wxBITMAP_TYPE_BMP))
+        #idx3 = il.Add(wxBitmap('bitmaps/new.bmp', wxBITMAP_TYPE_BMP))
+        #idx4 = il.Add(wxBitmap('bitmaps/copy.bmp', wxBITMAP_TYPE_BMP))
+        #idx5 = il.Add(wxBitmap('bitmaps/paste.bmp', wxBITMAP_TYPE_BMP))
+
+        #self.tree.SetImageList(il)
+        #self.il = il
+
         self.root = self.tree.AddRoot("The Root Item")
+        #self.tree.SetItemImage(self.root, idx1)
+
         for x in range(15):
             child = self.tree.AppendItem(self.root, "Item %d" % x)
-            #self.tree.SelectItem(child)
+            #self.tree.SetItemImage(child, idx2)
+            #self.tree.SetItemSelectedImage(child, idx3)
             for y in range(5):
                 last = self.tree.AppendItem(child, "item %d-%s" % (x, chr(ord("a")+y)))
+                #self.tree.SetItemImage(last, idx4)
+                #self.tree.SetItemSelectedImage(last, idx5)
                 for z in range(5):
                     self.tree.AppendItem(last,  "item %d-%s-%d" % (x, chr(ord("a")+y), z))