no need for the panel in the transient popup any more
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33598 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -76,9 +76,8 @@ class TestTransientPopup(wx.PopupTransientWindow):
|
|||||||
def __init__(self, parent, style, log):
|
def __init__(self, parent, style, log):
|
||||||
wx.PopupTransientWindow.__init__(self, parent, style)
|
wx.PopupTransientWindow.__init__(self, parent, style)
|
||||||
self.log = log
|
self.log = log
|
||||||
panel = wx.Panel(self, -1)
|
self.SetBackgroundColour("#FFB6C1")
|
||||||
panel.SetBackgroundColour("#FFB6C1")
|
st = wx.StaticText(self, -1,
|
||||||
st = wx.StaticText(panel, -1,
|
|
||||||
"wx.PopupTransientWindow is a\n"
|
"wx.PopupTransientWindow is a\n"
|
||||||
"wx.PopupWindow which disappears\n"
|
"wx.PopupWindow which disappears\n"
|
||||||
"automatically when the user\n"
|
"automatically when the user\n"
|
||||||
@@ -88,8 +87,7 @@ class TestTransientPopup(wx.PopupTransientWindow):
|
|||||||
,
|
,
|
||||||
pos=(10,10))
|
pos=(10,10))
|
||||||
sz = st.GetBestSize()
|
sz = st.GetBestSize()
|
||||||
panel.SetSize( (sz.width+20, sz.height+20) )
|
self.SetSize( (sz.width+20, sz.height+20) )
|
||||||
self.SetSize(panel.GetSize())
|
|
||||||
|
|
||||||
def ProcessLeftDown(self, evt):
|
def ProcessLeftDown(self, evt):
|
||||||
self.log.write("ProcessLeftDown\n")
|
self.log.write("ProcessLeftDown\n")
|
||||||
@@ -132,7 +130,9 @@ class TestPanel(wx.Panel):
|
|||||||
|
|
||||||
|
|
||||||
def OnShowPopupTransient(self, evt):
|
def OnShowPopupTransient(self, evt):
|
||||||
win = TestTransientPopup(self, wx.SIMPLE_BORDER, self.log)
|
win = TestTransientPopup(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...
|
||||||
|
Reference in New Issue
Block a user