def __init__ ( self, context, view, kind, handler, id, scrollable, args ): """ Initializes the object. """ self.context = context self.view = view self.kind = kind self.handler = handler self.id = id self.scrollable = scrollable self.args = args # FIXME: fbi is wx specific at the moment. if os.environ.get( 'ENABLE_FBI' ) is not None: try: from etsdevtools.developer.helper.fbi import enable_fbi enable_fbi() except: pass self.ui = self.view.ui( self.context, kind = self.kind, handler = self.handler, id = self.id, scrollable = self.scrollable, args = self.args )
def __init__(self, context, view, kind, handler, id, scrollable, args): """ Initializes the object. """ self.context = context self.view = view self.kind = kind self.handler = handler self.id = id self.scrollable = scrollable self.args = args # FIXME: fbi is wx specific at the moment. if os.environ.get('ENABLE_FBI') is not None: try: from etsdevtools.developer.helper.fbi import enable_fbi enable_fbi() except: pass self.ui = self.view.ui(self.context, kind=self.kind, handler=self.handler, id=self.id, scrollable=self.scrollable, args=self.args) start_event_loop_qt4()
def __init__(self, context, view, kind, handler, id, scrollable, args): """ Initializes the object. """ self.context = context self.view = view self.kind = kind self.handler = handler self.id = id self.scrollable = scrollable self.args = args wx.InitAllImageHandlers() if os.environ.get('ENABLE_FBI') is not None: try: from etsdevtools.developer.helper.fbi import enable_fbi enable_fbi() except: pass if redirect_filename.strip() != '': super(ViewApplication, self).__init__(1, redirect_filename) else: super(ViewApplication, self).__init__() # Start the event loop in an IPython-conforming manner. start_event_loop_wx(self)
def __init__(self, context, view, kind, handler, id, scrollable, args): """ Initializes the object. """ self.context = context self.view = view self.kind = kind self.handler = handler self.id = id self.scrollable = scrollable self.args = args if os.environ.get('ENABLE_FBI') is not None: try: from etsdevtools.developer.helper.fbi import enable_fbi enable_fbi() except: pass if redirect_filename.strip() != '': super(ViewApplication, self).__init__(1, redirect_filename) else: super(ViewApplication, self).__init__(0) # Start the event loop in an IPython-conforming manner. start_event_loop_wx(self)
def start(self): """ Starts the plugin. """ # Tell the FBI to wiretap all unauthorized exceptions: enable_fbi()