1999-04-30 03:29:54 +00:00
|
|
|
|
|
|
|
from wxPython.wx import *
|
|
|
|
|
2001-04-09 19:36:36 +00:00
|
|
|
import images
|
|
|
|
|
1999-04-30 03:29:54 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class TestToolBar(wxFrame):
|
|
|
|
def __init__(self, parent, log):
|
2003-03-25 06:35:27 +00:00
|
|
|
wxFrame.__init__(self, parent, -1, 'Test ToolBar', size=(500, 300))
|
1999-04-30 03:29:54 +00:00
|
|
|
self.log = log
|
2000-11-21 03:44:14 +00:00
|
|
|
self.timer = None
|
|
|
|
EVT_CLOSE(self, self.OnCloseWindow)
|
1999-04-30 03:29:54 +00:00
|
|
|
|
|
|
|
wxWindow(self, -1).SetBackgroundColour(wxNamedColour("WHITE"))
|
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
tb = self.CreateToolBar( wxTB_HORIZONTAL
|
|
|
|
| wxNO_BORDER
|
|
|
|
| wxTB_FLAT
|
|
|
|
| wxTB_TEXT
|
|
|
|
)
|
2000-11-21 03:44:14 +00:00
|
|
|
#tb = wxToolBarSimple(self, -1, wxDefaultPosition, wxDefaultSize,
|
1999-04-30 03:29:54 +00:00
|
|
|
# wxTB_HORIZONTAL | wxNO_BORDER | wxTB_FLAT)
|
|
|
|
#self.SetToolBar(tb)
|
|
|
|
|
2003-08-22 22:44:36 +00:00
|
|
|
log.write("Default toolbar tool size: %s\n" % tb.GetToolBitmapSize())
|
|
|
|
|
1999-04-30 03:29:54 +00:00
|
|
|
self.CreateStatusBar()
|
|
|
|
|
2002-04-01 20:29:35 +00:00
|
|
|
tb.AddSimpleTool(10, images.getNewBitmap(), "New", "Long help for 'New'")
|
2003-03-25 06:35:27 +00:00
|
|
|
#tb.AddLabelTool(10, "New", images.getNewBitmap(), shortHelp="New", longHelp="Long help for 'New'")
|
1999-04-30 03:29:54 +00:00
|
|
|
EVT_TOOL(self, 10, self.OnToolClick)
|
2001-04-09 19:36:36 +00:00
|
|
|
EVT_TOOL_RCLICKED(self, 10, self.OnToolRClick)
|
1999-04-30 03:29:54 +00:00
|
|
|
|
2002-04-01 20:29:35 +00:00
|
|
|
tb.AddSimpleTool(20, images.getOpenBitmap(), "Open", "Long help for 'Open'")
|
1999-04-30 03:29:54 +00:00
|
|
|
EVT_TOOL(self, 20, self.OnToolClick)
|
2001-04-09 19:36:36 +00:00
|
|
|
EVT_TOOL_RCLICKED(self, 20, self.OnToolRClick)
|
1999-04-30 03:29:54 +00:00
|
|
|
|
|
|
|
tb.AddSeparator()
|
2002-04-01 20:29:35 +00:00
|
|
|
tb.AddSimpleTool(30, images.getCopyBitmap(), "Copy", "Long help for 'Copy'")
|
1999-04-30 03:29:54 +00:00
|
|
|
EVT_TOOL(self, 30, self.OnToolClick)
|
2001-04-09 19:36:36 +00:00
|
|
|
EVT_TOOL_RCLICKED(self, 30, self.OnToolRClick)
|
1999-04-30 03:29:54 +00:00
|
|
|
|
2002-04-01 20:29:35 +00:00
|
|
|
tb.AddSimpleTool(40, images.getPasteBitmap(), "Paste", "Long help for 'Paste'")
|
1999-04-30 03:29:54 +00:00
|
|
|
EVT_TOOL(self, 40, self.OnToolClick)
|
2001-04-09 19:36:36 +00:00
|
|
|
EVT_TOOL_RCLICKED(self, 40, self.OnToolRClick)
|
1999-04-30 03:29:54 +00:00
|
|
|
|
|
|
|
tb.AddSeparator()
|
|
|
|
|
2002-04-01 20:29:35 +00:00
|
|
|
tool = tb.AddCheckTool(50, images.getTog1Bitmap(),
|
2002-03-27 01:10:28 +00:00
|
|
|
shortHelp="Toggle this")
|
1999-04-30 03:29:54 +00:00
|
|
|
EVT_TOOL(self, 50, self.OnToolClick)
|
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
## tb.AddCheckTool(60, images.getTog1Bitmap(), images.getTog2Bitmap(),
|
|
|
|
## shortHelp="Toggle with 2 bitmaps")
|
|
|
|
## EVT_TOOL(self, 60, self.OnToolClick)
|
1999-04-30 03:29:54 +00:00
|
|
|
|
2000-11-21 03:44:14 +00: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 20:05:08 +00:00
|
|
|
|
2003-07-02 23:13:10 +00:00
|
|
|
tb.AddSeparator()
|
|
|
|
cbID = wxNewId()
|
|
|
|
tb.AddControl(wxComboBox(tb, cbID, "", choices=["", "This", "is a", "wxComboBox"],
|
|
|
|
size=(150,-1), style=wxCB_DROPDOWN))
|
|
|
|
EVT_COMBOBOX(self, cbID, self.OnCombo)
|
|
|
|
tb.AddControl(wxTextCtrl(tb, -1, "Toolbar controls!!", size=(150, -1)))
|
1999-12-23 20:05:08 +00:00
|
|
|
|
1999-04-30 03:29:54 +00: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 21:08:42 +00:00
|
|
|
def OnCombo(self, event):
|
|
|
|
self.log.WriteText("combobox item selected: %s\n" % event.GetString())
|
|
|
|
|
2000-11-21 03:44:14 +00: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 16:49:23 +00:00
|
|
|
if self.timer.IsRunning():
|
|
|
|
self.timer.Stop()
|
2000-11-21 03:44:14 +00:00
|
|
|
self.timer.Start(2000)
|
|
|
|
event.Skip()
|
|
|
|
|
|
|
|
|
2000-12-10 08:37:52 +00:00
|
|
|
def OnClearSB(self, event): # called for the timer event handler
|
2000-11-21 03:44:14 +00: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 21:08:42 +00:00
|
|
|
|
1999-04-30 03:29:54 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def runTest(frame, nb, log):
|
|
|
|
win = TestToolBar(frame, log)
|
|
|
|
frame.otherWin = win
|
2003-03-25 06:35:27 +00:00
|
|
|
win.Show(True)
|
1999-04-30 03:29:54 +00:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
overview = """\
|
1999-04-30 03:29:54 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
"""
|
1999-04-30 03:29:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys,os
|
|
|
|
import run
|
|
|
|
run.main(['', os.path.basename(sys.argv[0])])
|
1999-04-30 03:29:54 +00:00
|
|
|
|