A little cleanup
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34633 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -118,6 +118,7 @@ class TestPanel(wx.Panel):
|
|||||||
|
|
||||||
def OnShowPopup(self, evt):
|
def OnShowPopup(self, evt):
|
||||||
win = TestPopup(self, wx.SIMPLE_BORDER)
|
win = TestPopup(self, wx.SIMPLE_BORDER)
|
||||||
|
#win = TestPopupWithListbox(self, wx.SIMPLE_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...
|
# depending on available screen space...
|
||||||
@@ -156,6 +157,8 @@ class TestPanel(wx.Panel):
|
|||||||
|
|
||||||
win.Show(True)
|
win.Show(True)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# This class is currently not implemented in the demo. It does not
|
# This class is currently not implemented in the demo. It does not
|
||||||
# behave the way it should, so for the time being it's only here
|
# behave the way it should, so for the time being it's only here
|
||||||
# for show. If you figure out how to make it work, please send
|
# for show. If you figure out how to make it work, please send
|
||||||
@@ -163,31 +166,25 @@ class TestPanel(wx.Panel):
|
|||||||
class TestPopupWithListbox(wx.PopupWindow):
|
class TestPopupWithListbox(wx.PopupWindow):
|
||||||
def __init__(self, parent, style, log):
|
def __init__(self, parent, style, log):
|
||||||
wx.PopupWindow.__init__(self, parent, style)
|
wx.PopupWindow.__init__(self, parent, style)
|
||||||
|
self.log = log
|
||||||
import keyword
|
import keyword
|
||||||
|
|
||||||
self.lb = wx.ListBox(self, -1, choices = keyword.kwlist)
|
self.lb = wx.ListBox(self, -1, choices = keyword.kwlist)
|
||||||
#sz = self.lb.GetBestSize()
|
#sz = self.lb.GetBestSize()
|
||||||
self.SetSize((150, 75)) #sz)
|
self.SetSize((150, 75)) #sz)
|
||||||
self.lb.SetSize(self.GetClientSize())
|
self.lb.SetSize(self.GetClientSize())
|
||||||
self.lb.SetFocus()
|
self.lb.SetFocus()
|
||||||
self.Bind(wx.EVT_LISTBOX, self.OnListBox)
|
self.Bind(wx.EVT_LISTBOX, self.OnListBox)
|
||||||
self.lb.Bind(wx.EVT_LEFT_DOWN, self.OnLeft)
|
self.Bind(wx.EVT_LISTBOX_DCLICK, self.OnListBoxDClick)
|
||||||
|
|
||||||
def OnLeft(self, evt):
|
|
||||||
obj = evt.GetEventObject()
|
|
||||||
print "OnLeft", obj
|
|
||||||
print 'Selected: %s' % obj.GetStringSelection()
|
|
||||||
obj.Show(False)
|
|
||||||
evt.Skip()
|
|
||||||
|
|
||||||
def OnListBox(self, evt):
|
def OnListBox(self, evt):
|
||||||
obj = evt.GetEventObject()
|
obj = evt.GetEventObject()
|
||||||
print "OnListBox", obj
|
self.log.write("OnListBox: %s\n" % obj)
|
||||||
print 'Selected: %s' % obj.GetString()
|
self.log.write('Selected: %s\n' % obj.GetString(evt.GetInt()))
|
||||||
evt.Skip()
|
evt.Skip()
|
||||||
|
|
||||||
|
def OnListBoxDClick(self, evt):
|
||||||
|
self.Hide()
|
||||||
|
self.Destroy()
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user