1999-04-29 23:29:54 -04:00
|
|
|
|
|
|
|
from wxPython.wx import *
|
|
|
|
|
2001-04-09 15:36:36 -04:00
|
|
|
import images
|
|
|
|
|
1999-04-29 23:29:54 -04:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class TestToolBar(wxFrame):
|
|
|
|
def __init__(self, parent, log):
|
|
|
|
wxFrame.__init__(self, parent, -1, 'Test ToolBar',
|
|
|
|
wxPoint(0,0), wxSize(500, 300))
|
|
|
|
self.log = log
|
2000-11-20 22:44:14 -05:00
|
|
|
self.timer = None
|
|
|
|
EVT_CLOSE(self, self.OnCloseWindow)
|
1999-04-29 23:29:54 -04:00
|
|
|
|
|
|
|
wxWindow(self, -1).SetBackgroundColour(wxNamedColour("WHITE"))
|
|
|
|
|
2001-02-16 03:19:50 -05:00
|
|
|
tb = self.CreateToolBar(wxTB_HORIZONTAL|wxNO_BORDER|wxTB_FLAT)
|
2001-06-15 17:43:26 -04:00
|
|
|
# wxTB_VERTICAL
|
2000-11-20 22:44:14 -05:00
|
|
|
#tb = wxToolBarSimple(self, -1, wxDefaultPosition, wxDefaultSize,
|
1999-04-29 23:29:54 -04:00
|
|
|
# wxTB_HORIZONTAL | wxNO_BORDER | wxTB_FLAT)
|
|
|
|
#self.SetToolBar(tb)
|
|
|
|
|
|
|
|
self.CreateStatusBar()
|
|
|
|
|
2002-04-01 15:29:35 -05:00
|
|
|
tb.AddSimpleTool(10, images.getNewBitmap(), "New", "Long help for 'New'")
|
1999-04-29 23:29:54 -04:00
|
|
|
EVT_TOOL(self, 10, self.OnToolClick)
|
2001-04-09 15:36:36 -04:00
|
|
|
EVT_TOOL_RCLICKED(self, 10, self.OnToolRClick)
|
1999-04-29 23:29:54 -04:00
|
|
|
|
2002-04-01 15:29:35 -05:00
|
|
|
tb.AddSimpleTool(20, images.getOpenBitmap(), "Open", "Long help for 'Open'")
|
1999-04-29 23:29:54 -04:00
|
|
|
EVT_TOOL(self, 20, self.OnToolClick)
|
2001-04-09 15:36:36 -04:00
|
|
|
EVT_TOOL_RCLICKED(self, 20, self.OnToolRClick)
|
1999-04-29 23:29:54 -04:00
|
|
|
|
|
|
|
tb.AddSeparator()
|
2002-04-01 15:29:35 -05:00
|
|
|
tb.AddSimpleTool(30, images.getCopyBitmap(), "Copy", "Long help for 'Copy'")
|
1999-04-29 23:29:54 -04:00
|
|
|
EVT_TOOL(self, 30, self.OnToolClick)
|
2001-04-09 15:36:36 -04:00
|
|
|
EVT_TOOL_RCLICKED(self, 30, self.OnToolRClick)
|
1999-04-29 23:29:54 -04:00
|
|
|
|
2002-04-01 15:29:35 -05:00
|
|
|
tb.AddSimpleTool(40, images.getPasteBitmap(), "Paste", "Long help for 'Paste'")
|
1999-04-29 23:29:54 -04:00
|
|
|
EVT_TOOL(self, 40, self.OnToolClick)
|
2001-04-09 15:36:36 -04:00
|
|
|
EVT_TOOL_RCLICKED(self, 40, self.OnToolRClick)
|
1999-04-29 23:29:54 -04:00
|
|
|
|
|
|
|
tb.AddSeparator()
|
|
|
|
|
2002-04-01 15:29:35 -05:00
|
|
|
tool = tb.AddCheckTool(50, images.getTog1Bitmap(),
|
2002-03-26 20:10:28 -05:00
|
|
|
shortHelp="Toggle this")
|
1999-04-29 23:29:54 -04:00
|
|
|
EVT_TOOL(self, 50, self.OnToolClick)
|
|
|
|
|
2002-03-26 20:10:28 -05:00
|
|
|
#tb.AddCheckTool(60, '', images.getTog1Bitmap(), images.getTog2Bitmap(),
|
|
|
|
# shortHelp="Toggle with 2 bitmaps")
|
|
|
|
#EVT_TOOL(self, 60, self.OnToolClick)
|
1999-04-29 23:29:54 -04:00
|
|
|
|
2000-11-20 22:44:14 -05:00
|
|
|
EVT_TOOL_ENTER(self, -1, self.OnToolEnter)
|
|
|
|
EVT_TOOL_RCLICKED(self, -1, self.OnToolRClick) # Match all
|
|
|
|
EVT_TIMER(self, -1, self.OnClearSB)
|
1999-12-23 15:05:08 -05:00
|
|
|
|
|
|
|
tb.AddSeparator()
|
2000-10-30 16:08:42 -05:00
|
|
|
cbID = wxNewId()
|
|
|
|
tb.AddControl(wxComboBox(tb, cbID, "", choices=["", "This", "is a", "wxComboBox"],
|
1999-12-23 15:05:08 -05:00
|
|
|
size=(150,-1), style=wxCB_DROPDOWN))
|
2000-10-30 16:08:42 -05:00
|
|
|
EVT_COMBOBOX(self, cbID, self.OnCombo)
|
1999-12-23 15:05:08 -05:00
|
|
|
|
1999-04-29 23:29:54 -04:00
|
|
|
tb.Realize()
|
|
|
|
|
|
|
|
|
|
|
|
def OnToolClick(self, event):
|
|
|
|
self.log.WriteText("tool %s clicked\n" % event.GetId())
|
|
|
|
|
|
|
|
def OnToolRClick(self, event):
|
|
|
|
self.log.WriteText("tool %s right-clicked\n" % event.GetId())
|
|
|
|
|
2000-10-30 16:08:42 -05:00
|
|
|
def OnCombo(self, event):
|
|
|
|
self.log.WriteText("combobox item selected: %s\n" % event.GetString())
|
|
|
|
|
2000-11-20 22:44:14 -05:00
|
|
|
def OnToolEnter(self, event):
|
|
|
|
self.log.WriteText('OnToolEnter: %s, %s\n' % (event.GetId(), event.GetInt()))
|
|
|
|
if self.timer is None:
|
|
|
|
self.timer = wxTimer(self)
|
2001-05-01 12:49:23 -04:00
|
|
|
if self.timer.IsRunning():
|
|
|
|
self.timer.Stop()
|
2000-11-20 22:44:14 -05:00
|
|
|
self.timer.Start(2000)
|
|
|
|
event.Skip()
|
|
|
|
|
|
|
|
|
2000-12-10 03:37:52 -05:00
|
|
|
def OnClearSB(self, event): # called for the timer event handler
|
2000-11-20 22:44:14 -05:00
|
|
|
self.SetStatusText("")
|
|
|
|
self.timer.Stop()
|
|
|
|
self.timer = None
|
|
|
|
|
|
|
|
|
|
|
|
def OnCloseWindow(self, event):
|
|
|
|
if self.timer is not None:
|
|
|
|
self.timer.Stop()
|
|
|
|
self.timer = None
|
|
|
|
self.Destroy()
|
2000-10-30 16:08:42 -05:00
|
|
|
|
1999-04-29 23:29:54 -04:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def runTest(frame, nb, log):
|
|
|
|
win = TestToolBar(frame, log)
|
|
|
|
frame.otherWin = win
|
|
|
|
win.Show(true)
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
overview = """\
|
|
|
|
|
|
|
|
"""
|