]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/GridBagSizer.py
fixed copy/paste error
[wxWidgets.git] / wxPython / demo / GridBagSizer.py
index a0ee009bce2d44ec9848073cbf4f9bb7f19e71df..c6a223782c98def1fd2eb90f20124d425a71f2c0 100644 (file)
@@ -91,11 +91,11 @@ class TestFrame(wx.Frame):
             self.gbs.SetItemPosition(btn, self.lastPos)
             btn.SetLabel("Move this to (3,6)")
         else:
-            if self.gbs.CheckForIntersection( (3,6), (1,1) ):
+            if self.gbs.CheckForIntersectionPos( (3,6), (1,1) ):
                 wx.MessageBox("""\
 wx.GridBagSizer will not allow items to be in the same cell as
-another item, so this operation will fail.  You will also get an assert
-when compiled in debug mode.""",
+another item, so this operation will fail.  You will also get an
+assert when compiled in debug mode.""",
                               "Warning", wx.OK | wx.ICON_INFORMATION)
 
             try:
@@ -117,12 +117,29 @@ when compiled in debug mode.""",
             print "item found: ", `item.GetPos()`, "--", `item.GetSpan()`
 
         
-#----------------------------------------------------------------------
+#---------------------------------------------------------------------------
+
+class TestPanel(wx.Panel):
+    def __init__(self, parent, log):
+        self.log = log
+        wx.Panel.__init__(self, parent, -1)
+
+        b = wx.Button(self, -1, "Show the GridBagSizer sample", (50,50))
+        self.Bind(wx.EVT_BUTTON, self.OnButton, b)
+
+
+    def OnButton(self, evt):
+        win = TestFrame()
+        win.Show(True)
+
+
+
+#---------------------------------------------------------------------------
+
 
 def runTest(frame, nb, log):
-    win = TestFrame()
-    frame.otherWin = win
-    win.Show(True)
+    win = TestPanel(nb, log)
+    return win
 
 
 #----------------------------------------------------------------------
@@ -144,5 +161,5 @@ span across more than one row or column.
 if __name__ == '__main__':
     import sys,os
     import run
-    run.main(['', os.path.basename(sys.argv[0])])
+    run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])