mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-22 15:26:37 +00:00
MiRCARTGeneralFrame.py, MiRCARTFrame.py: cleanup.
This commit is contained in:
parent
30f3688a2c
commit
e7b7e05234
@ -25,7 +25,7 @@
|
||||
from MiRCARTCanvas import MiRCARTCanvas, haveUrllib
|
||||
from MiRCARTColours import MiRCARTColours
|
||||
from MiRCARTGeneralFrame import MiRCARTGeneralFrame, \
|
||||
TID_COMMAND, TID_MENU, TID_NOTHING, TID_SELECT, TID_TOOLBAR, TID_ACCELS
|
||||
TID_ACCELS, TID_COMMAND, TID_LIST, TID_MENU, TID_NOTHING, TID_SELECT, TID_TOOLBAR
|
||||
|
||||
import os, wx
|
||||
|
||||
@ -110,6 +110,11 @@ class MiRCARTFrame(MiRCARTGeneralFrame):
|
||||
AID_EDIT = (0x500, TID_ACCELS, ( \
|
||||
CID_NEW, CID_OPEN, CID_SAVE, CID_UNDO, CID_REDO))
|
||||
# }}}
|
||||
# {{{ Lists
|
||||
LID_ACCELS = (0x600, TID_LIST, (AID_EDIT))
|
||||
LID_MENUS = (0x601, TID_LIST, (MID_FILE, MID_EDIT, MID_TOOLS))
|
||||
LID_TOOLBARS = (0x602, TID_LIST, (BID_TOOLBAR))
|
||||
# }}}
|
||||
|
||||
# {{{ _dialogSaveChanges(self)
|
||||
def _dialogSaveChanges(self):
|
||||
|
@ -26,12 +26,13 @@ import os, wx
|
||||
|
||||
#
|
||||
# Types
|
||||
TID_COMMAND = (0x001)
|
||||
TID_MENU = (0x002)
|
||||
TID_NOTHING = (0x003)
|
||||
TID_SELECT = (0x004)
|
||||
TID_TOOLBAR = (0x005)
|
||||
TID_ACCELS = (0x006)
|
||||
TID_ACCELS = (0x001)
|
||||
TID_COMMAND = (0x002)
|
||||
TID_LIST = (0x003)
|
||||
TID_MENU = (0x004)
|
||||
TID_NOTHING = (0x005)
|
||||
TID_SELECT = (0x006)
|
||||
TID_TOOLBAR = (0x007)
|
||||
|
||||
class MiRCARTGeneralFrame(wx.Frame):
|
||||
"""XXX"""
|
||||
@ -48,8 +49,9 @@ class MiRCARTGeneralFrame(wx.Frame):
|
||||
self.Bind(wx.EVT_MENU, handler, id=accelDescr[0])
|
||||
return accelTableEntries
|
||||
# }}}
|
||||
# {{{ _initMenus(self, menuBar, menusDescr, handler): XXX
|
||||
def _initMenus(self, menuBar, menusDescr, handler):
|
||||
# {{{ _initMenus(self, menusDescr, handler): XXX
|
||||
def _initMenus(self, menusDescr, handler):
|
||||
self.menuItemsById = {}; menuBar = wx.MenuBar();
|
||||
for menuDescr in menusDescr:
|
||||
menuWindow = wx.Menu()
|
||||
for menuItem in menuDescr[4]:
|
||||
@ -68,13 +70,17 @@ class MiRCARTGeneralFrame(wx.Frame):
|
||||
if len(menuItem) == 7:
|
||||
menuItemWindow.Enable(menuItem[6])
|
||||
menuBar.Append(menuWindow, menuDescr[3])
|
||||
return menuBar
|
||||
# }}}
|
||||
# {{{ _initToolBars(self, toolBar, toolBarsDescr, handler): XXX
|
||||
def _initToolBars(self, toolBar, toolBarsDescr, handler):
|
||||
for toolBarDescr in toolBarsDescr:
|
||||
for toolBarItem in toolBarDescr[2]:
|
||||
# {{{ _initToolBars(self, toolBarsDescr, handler): XXX
|
||||
def _initToolBars(self, toolBarsDescr, handler, panelSkin):
|
||||
self.toolBarItemsById = {}
|
||||
self.toolBar = wx.ToolBar(panelSkin, -1, \
|
||||
style=wx.HORIZONTAL|wx.TB_FLAT|wx.TB_NODIVIDER)
|
||||
self.toolBar.SetToolBitmapSize((16,16))
|
||||
for toolBarItem in toolBarsDescr[2]:
|
||||
if toolBarItem == self.NID_TOOLBAR_SEP:
|
||||
toolBar.AddSeparator()
|
||||
self.toolBar.AddSeparator()
|
||||
else:
|
||||
if toolBarItem[4] != None:
|
||||
toolBarItemIcon = wx.ArtProvider.GetBitmap( \
|
||||
@ -90,6 +96,7 @@ class MiRCARTGeneralFrame(wx.Frame):
|
||||
toolBarItemWindow.Enable(toolBarItem[6])
|
||||
self.Bind(wx.EVT_TOOL, handler, toolBarItemWindow)
|
||||
self.Bind(wx.EVT_TOOL_RCLICKED, handler, toolBarItemWindow)
|
||||
self.toolBar.Realize(); self.toolBar.Fit();
|
||||
# }}}
|
||||
# {{{ onClose(self, event): XXX
|
||||
def onClose(self, event):
|
||||
@ -107,23 +114,17 @@ class MiRCARTGeneralFrame(wx.Frame):
|
||||
panelSkin = wx.Panel(self, wx.ID_ANY)
|
||||
|
||||
# Initialise menu bar, menus & menu items
|
||||
self.menuItemsById = {}; menuBar = wx.MenuBar();
|
||||
self._initMenus(menuBar, \
|
||||
[self.MID_FILE, self.MID_EDIT, self.MID_TOOLS],
|
||||
# Initialise toolbar & toolbar items
|
||||
menuBar = self._initMenus(self.LID_MENUS[2], \
|
||||
self.onFrameCommand)
|
||||
self.SetMenuBar(menuBar)
|
||||
|
||||
# Initialise toolbar & toolbar items
|
||||
self.toolBarItemsById = {}
|
||||
self.toolBar = wx.ToolBar(panelSkin, -1, \
|
||||
style=wx.HORIZONTAL|wx.TB_FLAT|wx.TB_NODIVIDER)
|
||||
self.toolBar.SetToolBitmapSize((16,16))
|
||||
self._initToolBars(self.toolBar, [self.BID_TOOLBAR], self.onFrameCommand)
|
||||
self.toolBar.Realize(); self.toolBar.Fit();
|
||||
toolBar = self._initToolBars(self.LID_TOOLBARS[2], \
|
||||
self.onFrameCommand, panelSkin)
|
||||
|
||||
# Initialise accelerators (hotkeys)
|
||||
accelTable = wx.AcceleratorTable( \
|
||||
self._initAccelTable(self.AID_EDIT, self.onFrameCommand))
|
||||
self._initAccelTable(self.LID_ACCELS[2], \
|
||||
self.onFrameCommand))
|
||||
self.SetAcceleratorTable(accelTable)
|
||||
|
||||
# Initialise status bar
|
||||
|
Loading…
Reference in New Issue
Block a user