def __init__(self, parent, charEditor): BaseImplantEditorView.__init__(self, parent) self.determineEnabled() charEditor.Bind(GE.CHAR_CHANGED, self.contextChanged) self.pluggedImplantsTree.Bind(wx.EVT_CONTEXT_MENU, self.spawnMenu)
def __init__(self, parent): BaseImplantEditorView.__init__(self, parent) self.determineEnabled() if "__WXGTK__" in wx.PlatformInfo: self.pluggedImplantsTree.Bind(wx.EVT_RIGHT_UP, self.scheduleMenu) else: self.pluggedImplantsTree.Bind(wx.EVT_RIGHT_DOWN, self.scheduleMenu)
def __init__(self, parent): BaseImplantEditorView.__init__ (self, parent) self.determineEnabled() if "__WXGTK__" in wx.PlatformInfo: self.pluggedImplantsTree.Bind(wx.EVT_RIGHT_UP, self.scheduleMenu) else: self.pluggedImplantsTree.Bind(wx.EVT_RIGHT_DOWN, self.scheduleMenu)
def __init__(self, parent, charEditor): BaseImplantEditorView.__init__(self, parent) self.determineEnabled() charEditor.Bind(GE.CHAR_CHANGED, self.contextChanged) if "__WXGTK__" in wx.PlatformInfo: self.pluggedImplantsTree.Bind(wx.EVT_RIGHT_UP, self.scheduleMenu) else: self.pluggedImplantsTree.Bind(wx.EVT_RIGHT_DOWN, self.scheduleMenu)
def contextChanged(self, event): BaseImplantEditorView.contextChanged(self, event) self.determineEnabled()
def __init__(self, parent): BaseImplantEditorView.__init__(self, parent) if 'wxMSW' in wx.PlatformInfo: self.SetBackgroundColour( wx.SystemSettings.GetColour(wx.SYS_COLOUR_BTNFACE))
def __init__(self, parent): BaseImplantEditorView.__init__(self, parent) if 'wxMSW' in wx.PlatformInfo: self.SetBackgroundColour(wx.SystemSettings.GetColour(wx.SYS_COLOUR_BTNFACE))