]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/wxPopupWindow.py
Compiler bug
[wxWidgets.git] / wxPython / demo / wxPopupWindow.py
index 7973a417ea751f38b522f7de15ee6be81ddced70..809024a675e4b04eb4b28a0dae03cbce596454bd 100644 (file)
@@ -34,7 +34,7 @@ class TestPopup(wxPopupWindow):
 
     def OnMouseLeftDown(self, evt):
         self.ldPos = evt.GetEventObject().ClientToScreen(evt.GetPosition())
-        self.wPos = self.GetParent().ClientToScreen(self.GetPosition())
+        self.wPos = self.GetPosition()
         self.CaptureMouse()
 
     def OnMouseMotion(self, evt):
@@ -47,18 +47,40 @@ class TestPopup(wxPopupWindow):
     def OnMouseLeftUp(self, evt):
         self.ReleaseMouse()
 
-
     def OnRightUp(self, evt):
         self.Show(false)
         self.Destroy()
 
 
+## class TestPopupWithListbox(wxPopupWindow):
+##     def __init__(self, parent, style, log):
+##         wxPopupWindow.__init__(self, parent, style)
+##         import keyword
+##         self.lb = wxListBox(self, -1, choices = keyword.kwlist)
+##         #sz = self.lb.GetBestSize()
+##         self.SetSize((150, 75)) #sz)
+##         self.lb.SetSize(self.GetClientSize())
+##         self.lb.SetFocus()
+##         EVT_LEFT_DOWN(self.lb, self.OnLeft)
+##         EVT_LISTBOX(self, -1, self.OnListBox)
+
+##     def OnLeft(self, evt):
+##         print "OnLeft", evt.GetEventObject()
+##         evt.Skip()
+##     def OnListBox(self, evt):
+##         print "OnListBox", evt.GetEventObject()
+##         evt.Skip()
+
+
+
 class TestTransientPopup(wxPopupTransientWindow):
     """Adds a bit of text and mouse movement to the wxPopupWindow"""
-    def __init__(self, parent, style):
+    def __init__(self, parent, style, log):
         wxPopupTransientWindow.__init__(self, parent, style)
-        self.SetBackgroundColour("#FFB6C1")
-        st = wxStaticText(self, -1,
+        self.log = log
+        panel = wxPanel(self, -1)
+        panel.SetBackgroundColour("#FFB6C1")
+        st = wxStaticText(panel, -1,
                           "wxPopupTransientWindow is a\n"
                           "wxPopupWindow which disappears\n"
                           "automatically when the user\n"
@@ -67,7 +89,15 @@ class TestTransientPopup(wxPopupTransientWindow):
                           ,
                           pos=(10,10))
         sz = st.GetBestSize()
-        self.SetSize( (sz.width+20, sz.height+20) )
+        panel.SetSize( (sz.width+20, sz.height+20) )
+        self.SetSize(panel.GetSize())
+
+    def ProcessLeftDown(self, evt):
+        self.log.write("ProcessLeftDown\n")
+        return false
+
+    def OnDismiss(self):
+        self.log.write("OnDismiss\n")
 
 
 
@@ -82,6 +112,9 @@ class TestPanel(wxPanel):
         b = wxButton(self, -1, "Show wxPopupTransientWindow", (25, 95))
         EVT_BUTTON(self, b.GetId(), self.OnShowPopupTransient)
 
+        b = wxButton(self, -1, "Show wxPopupWindow with listbox", (25, 140))
+        EVT_BUTTON(self, b.GetId(), self.OnShowPopupListbox)
+
 
     def OnShowPopup(self, evt):
         win = TestPopup(self, wxSIMPLE_BORDER)
@@ -97,17 +130,29 @@ class TestPanel(wxPanel):
 
 
     def OnShowPopupTransient(self, evt):
-        win = TestTransientPopup(self, wxSIMPLE_BORDER)
+        win = TestTransientPopup(self, wxSIMPLE_BORDER, self.log)
 
-        # show the popup right below or above the button
+        # Show the popup right below or above the button
+        # depending on available screen space...
         btn = evt.GetEventObject()
         pos = btn.ClientToScreen( (0,0) )
         sz =  btn.GetSize()
         win.Position(pos, (0, sz.height))
 
-        win.Popup(btn)
+        win.Popup()
+
+
+##     def OnShowPopupListbox(self, evt):
+##         win = TestPopupWithListbox(self, wxNO_BORDER, self.log)
 
+##         # Show the popup right below or above the button
+##         # depending on available screen space...
+##         btn = evt.GetEventObject()
+##         pos = btn.ClientToScreen( (0,0) )
+##         sz =  btn.GetSize()
+##         win.Position(pos, (0, sz.height))
 
+##         win.Show(true)
 
 #---------------------------------------------------------------------------