X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8eca4fef106b8327e2e55636de3f68a511a4c392..6f1a3f9c1a056e5ae063f020d38a5f40cc5e85ef:/wxPython/demo/ToolBar.py diff --git a/wxPython/demo/ToolBar.py b/wxPython/demo/ToolBar.py index 4c0414128f..6589abf20f 100644 --- a/wxPython/demo/ToolBar.py +++ b/wxPython/demo/ToolBar.py @@ -118,15 +118,32 @@ class TestToolBar(wx.Frame): #--------------------------------------------------------------------------- +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 ToolBar sample", (50,50)) + self.Bind(wx.EVT_BUTTON, self.OnButton, b) + + + def OnButton(self, evt): + win = TestToolBar(self, self.log) + win.Show(True) + + +#--------------------------------------------------------------------------- + + def runTest(frame, nb, log): - win = TestToolBar(frame, log) - frame.otherWin = win - win.Show(True) + win = TestPanel(nb, log) + return win #--------------------------------------------------------------------------- + overview = """\ wx.ToolBar is a narrow strip of icons on one side of a frame (top, bottom, sides) that acts much like a menu does, except it is always visible. Additionally, actual