]> git.saurik.com Git - wxWidgets.git/commitdiff
Some little tweaks
authorRobin Dunn <robin@alldunn.com>
Wed, 20 Apr 2005 22:27:19 +0000 (22:27 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 20 Apr 2005 22:27:19 +0000 (22:27 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33794 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/demo/SplitterWindow.py

index 1f1e19a2e76f5d3e581b929b0ef1947be39f035e..7d2ab65be0cbd48523718f0c4688d747e7830fbb 100644 (file)
@@ -6,8 +6,7 @@ import  wx
 class MySplitter(wx.SplitterWindow):
     def __init__(self, parent, ID, log):
         wx.SplitterWindow.__init__(self, parent, ID,
-                                   style = wx.SP_3D
-                                   #| wx.SP_LIVE_UPDATE
+                                   style = wx.SP_LIVE_UPDATE
                                    )
         self.log = log
         
@@ -28,14 +27,13 @@ class MySplitter(wx.SplitterWindow):
 def runTest(frame, nb, log):
     splitter = MySplitter(nb, -1, log)
 
-    p1 = wx.Window(splitter, -1)
-    p1.SetBackgroundColour(wx.RED)
-    wx.StaticText(p1, -1, "Panel One", (5,5))#.SetBackgroundColour(wx.RED)
+    p1 = wx.Window(splitter)#, style=wx.BORDER_SIMPLE)
+    p1.SetBackgroundColour("pink")
+    wx.StaticText(p1, -1, "Panel One", (5,5))
 
-    p2 = wx.Window(splitter, -1)
-    p2.SetBackgroundColour(wx.BLUE)
-    p2.SetForegroundColour(wx.WHITE)
-    wx.StaticText(p2, -1, "Panel Two", (5,5))#.SetBackgroundColour(wx.BLUE)
+    p2 = wx.Window(splitter)#, style=wx.BORDER_SIMPLE)
+    p2.SetBackgroundColour("sky blue")
+    wx.StaticText(p2, -1, "Panel Two", (5,5))
 
     splitter.SetMinimumPaneSize(20)
     splitter.SplitVertically(p1, p2, -100)