From fe84bd4bdcb064b98a77a3371e7705451625215f Mon Sep 17 00:00:00 2001 From: Roman Rolinsky Date: Thu, 20 Mar 2003 19:58:26 +0000 Subject: [PATCH] Tools panel class git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@19634 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/wxPython/tools/XRCed/tools.py | 236 +++++++++++++++++++++++++ 1 file changed, 236 insertions(+) create mode 100644 wxPython/wxPython/tools/XRCed/tools.py diff --git a/wxPython/wxPython/tools/XRCed/tools.py b/wxPython/wxPython/tools/XRCed/tools.py new file mode 100644 index 0000000000..54e612d9fc --- /dev/null +++ b/wxPython/wxPython/tools/XRCed/tools.py @@ -0,0 +1,236 @@ +# Name: tools.py +# Purpose: XRC editor, toolbar +# Author: Roman Rolinsky +# Created: 19.03.2003 +# RCS-ID: $Id$ + +from xxx import * # xxx imports globals and params +from tree import ID_NEW + +# Icons +import images + +GROUPNUM = 4 +GROUP_WINDOWS, GROUP_MENUS, GROUP_SIZERS, GROUP_CONTROLS = range(GROUPNUM) + +# Left toolbar for GUI elements +class Tools(wxPanel): + TOOL_SIZE = (30, 30) + def __init__(self, parent): + wxPanel.__init__(self, parent, -1, style=wxRAISED_BORDER | wxWANTS_CHARS) + # Create sizer for groups + self.sizer = wxBoxSizer(wxVERTICAL) + # Data to create buttons + pullDownMenu = g.pullDownMenu + self.groups = [] + self.ctrl = self.shift = false + groups = [ + ["Windows", + (ID_NEW.FRAME, images.getToolFrameBitmap()), + (ID_NEW.DIALOG, images.getToolDialogBitmap()), + (ID_NEW.PANEL, images.getToolPanelBitmap())], + ["Menus", + (ID_NEW.TOOL_BAR, images.getToolToolBarBitmap()), + (ID_NEW.MENU_BAR, images.getToolMenuBarBitmap()), + (ID_NEW.MENU, images.getToolMenuBitmap()), + (ID_NEW.TOOL, images.getToolToolBitmap()), + (ID_NEW.MENU_ITEM, images.getToolMenuItemBitmap()), + (ID_NEW.SEPARATOR, images.getToolSeparatorBitmap())], + ["Sizers", + (ID_NEW.BOX_SIZER, images.getToolBoxSizerBitmap()), + (ID_NEW.STATIC_BOX_SIZER, images.getToolStaticBoxSizerBitmap()), + (ID_NEW.GRID_SIZER, images.getToolGridSizerBitmap()), + (ID_NEW.FLEX_GRID_SIZER, images.getToolFlexGridSizerBitmap()), + (ID_NEW.SPACER, images.getToolSpacerBitmap())], + ["Controls", + (ID_NEW.STATIC_TEXT, images.getToolStaticTextBitmap()), + (ID_NEW.STATIC_BITMAP, images.getToolStaticBitmapBitmap()), + (ID_NEW.STATIC_LINE, images.getToolStaticLineBitmap()), + + (ID_NEW.BUTTON, images.getToolButtonBitmap()), + (ID_NEW.BITMAP_BUTTON, images.getToolBitmapButtonBitmap()), + (ID_NEW.STATIC_BOX, images.getToolStaticBoxBitmap()), + + (ID_NEW.TEXT_CTRL, images.getToolTextCtrlBitmap()), + (ID_NEW.COMBO_BOX, images.getToolComboBoxBitmap()), + (ID_NEW.CHOICE, images.getToolChoiceBitmap()), + + (ID_NEW.RADIO_BUTTON, images.getToolRadioButtonBitmap()), + (ID_NEW.CHECK_BOX, images.getToolCheckBoxBitmap()), + (ID_NEW.RADIO_BOX, images.getToolRadioBoxBitmap()), + + (ID_NEW.SPIN_CTRL, images.getToolSpinCtrlBitmap()), + (ID_NEW.SPIN_BUTTON, images.getToolSpinButtonBitmap()), + (ID_NEW.SCROLL_BAR, images.getToolScrollBarBitmap()), + + (ID_NEW.SLIDER, images.getToolSliderBitmap()), + (ID_NEW.GAUGE, images.getToolGaugeBitmap()), + (ID_NEW.TREE_CTRL, images.getToolTreeCtrlBitmap()), + + (ID_NEW.LIST_BOX, images.getToolListBoxBitmap()), + (ID_NEW.CHECK_LIST, images.getToolCheckListBitmap()), + (ID_NEW.LIST_CTRL, images.getToolListCtrlBitmap()), + + (ID_NEW.NOTEBOOK, images.getToolNotebookBitmap()), + + (ID_NEW.UNKNOWN, images.getToolUnknownBitmap())] + ] + for grp in groups: + self.AddGroup(grp[0]) + for b in grp[1:]: + self.AddButton(b[0], b[1], g.pullDownMenu.createMap[b[0]]) + self.SetAutoLayout(True) + self.SetSizerAndFit(self.sizer) + # Allow to be resized in vertical direction only + self.SetSizeHints(self.GetSize()[0], -1) + # Events + EVT_COMMAND_RANGE(self, ID_NEW.PANEL, ID_NEW.LAST, + wxEVT_COMMAND_BUTTON_CLICKED, g.frame.OnCreate) + EVT_KEY_DOWN(self, self.OnKeyDown) + EVT_KEY_UP(self, self.OnKeyUp) + def AddButton(self, id, image, text): + button = wxBitmapButton(self, id, image, + size=self.TOOL_SIZE, + style=wxNO_BORDER | wxWANTS_CHARS) + EVT_KEY_DOWN(button, self.OnKeyDown) + EVT_KEY_UP(button, self.OnKeyUp) + button.SetToolTipString(text) + self.curSizer.Add(button) + self.groups[-1][1][id] = button + def AddGroup(self, name): + # Each group is inside box + box = wxStaticBox(self, -1, name, style=wxWANTS_CHARS) + box.SetFont(smallerFont) + boxSizer = wxStaticBoxSizer(box, wxVERTICAL) + boxSizer.Add(0, 4) + self.curSizer = wxGridSizer(0, 3) + boxSizer.Add(self.curSizer) + self.sizer.Add(boxSizer, 0, wxTOP | wxLEFT | wxRIGHT, 4) + self.groups.append((box,{})) + # Enable/disable group + def EnableGroup(self, gnum, enable = true): + grp = self.groups[gnum] + grp[0].Enable(enable) + for b in grp[1].values(): b.Enable(enable) + # Enable/disable group item + def EnableGroupItem(self, gnum, id, enable = true): + grp = self.groups[gnum] + grp[1][id].Enable(enable) + # Enable/disable group items + def EnableGroupItems(self, gnum, ids, enable = true): + grp = self.groups[gnum] + for id in ids: + grp[1][id].Enable(enable) + # Process key events + def OnKeyDown(self, evt): + if evt.GetKeyCode() == WXK_CONTROL: + g.tree.ctrl = true + elif evt.GetKeyCode() == WXK_SHIFT: + g.tree.shift = true + self.UpdateIfNeeded() + evt.Skip() + def OnKeyUp(self, evt): + if evt.GetKeyCode() == WXK_CONTROL: + g.tree.ctrl = false + elif evt.GetKeyCode() == WXK_SHIFT: + g.tree.shift = false + self.UpdateIfNeeded() + evt.Skip() + def OnMouse(self, evt): + # Update control and shift states + g.tree.ctrl = evt.ControlDown() + g.tree.shift = evt.ShiftDown() + self.UpdateIfNeeded() + evt.Skip() + # Update UI after key presses, if necessary + def UpdateIfNeeded(self): + tree = g.tree + if self.ctrl != tree.ctrl or self.shift != tree.shift: + # Enabling is needed only for ctrl + if self.ctrl != tree.ctrl: self.UpdateUI() + self.ctrl = tree.ctrl + self.shift = tree.shift + if tree.ctrl: + status = 'SBL' + elif tree.shift: + status = 'INS' + else: + status = '' + g.frame.SetStatusText(status, 1) + # Update interface + def UpdateUI(self): + # Update status bar + pullDownMenu = g.pullDownMenu + tree = g.tree + item = tree.selection + # Disable everything + for grp in range(GROUPNUM): + self.EnableGroup(grp, false) + # If nothing selected, return + if not item: return + if tree.ctrl: needInsert = true + else: needInsert = tree.NeedInsert(item) + # Enable depending on selection + if item == tree.root or needInsert and tree.GetItemParent(item) == tree.root: + self.EnableGroup(GROUP_WINDOWS, true) + self.EnableGroup(GROUP_MENUS, true) + # But disable items + self.EnableGroupItems(GROUP_MENUS, + [ ID_NEW.TOOL, + ID_NEW.MENU_ITEM, + ID_NEW.SEPARATOR ], + false) + else: + xxx = tree.GetPyData(item).treeObject() + # Check parent for possible child nodes if inserting sibling + if needInsert: xxx = xxx.parent + if xxx.__class__ == xxxMenuBar: + self.EnableGroup(GROUP_MENUS) + self.EnableGroupItems(GROUP_MENUS, + [ ID_NEW.TOOL_BAR, + ID_NEW.MENU_BAR, + ID_NEW.TOOL ], + false) + elif xxx.__class__ in [xxxToolBar, xxxTool] or \ + xxx.__class__ == xxxSeparator and xxx.parent.__class__ == xxxToolBar: + self.EnableGroup(GROUP_MENUS) + self.EnableGroupItems(GROUP_MENUS, + [ ID_NEW.TOOL_BAR, + ID_NEW.MENU, + ID_NEW.MENU_BAR, + ID_NEW.MENU_ITEM ], + false) + self.EnableGroup(GROUP_CONTROLS) + self.EnableGroupItems(GROUP_CONTROLS, + [ ID_NEW.TREE_CTRL, + ID_NEW.NOTEBOOK ], + false) + elif xxx.__class__ in [xxxMenu, xxxMenuItem]: + self.EnableGroup(GROUP_MENUS) + self.EnableGroupItems(GROUP_MENUS, + [ ID_NEW.TOOL_BAR, + ID_NEW.MENU_BAR, + ID_NEW.TOOL ], + false) + else: + self.EnableGroup(GROUP_WINDOWS) + self.EnableGroupItems(GROUP_WINDOWS, + [ ID_NEW.FRAME, + ID_NEW.DIALOG ], + false) + self.EnableGroup(GROUP_MENUS) + self.EnableGroupItems(GROUP_MENUS, + [ ID_NEW.MENU_BAR, + ID_NEW.MENU_BAR, + ID_NEW.MENU, + ID_NEW.MENU_ITEM, + ID_NEW.TOOL, + ID_NEW.SEPARATOR ], + false) + self.EnableGroup(GROUP_SIZERS) + self.EnableGroup(GROUP_CONTROLS) + if xxx.__class__ == xxxNotebook: + self.EnableGroup(GROUP_SIZERS, false) + elif not (xxx.isSizer or xxx.parent and xxx.parent.isSizer): + self.EnableGroupItem(GROUP_SIZERS, ID_NEW.SPACER, false) +