Esempio n. 1
0
 def __init__(self, application):
     """
     application - instance of core.application.ApplicationParams
     """
     from .controller import Controller
     Plugin.__init__(self, application)
     self.__controller = Controller(self, application)
Esempio n. 2
0
 def __init__(self, application):
     Plugin.__init__(self, application)
     self._url = "https://jenyay.net/Outwiker/DebugPlugin"
     self._watcher = EventsWatcher(self._application)
     self._timer = Timer()
     self._startWikiOpenTime = None
     self._prePostContentPrefix = "'''DEBUG PrePostContent'''"
Esempio n. 3
0
 def __init__(self, application):
     """
     application - экземпляр класса core.application.ApplicationParams
     """
     Plugin.__init__(self, application)
     self.__maxCommandIndex = 9
     self.SPOILER_TOOL_ID = u"PLUGIN_SPOILER_TOOL_ID"
Esempio n. 4
0
 def __init__(self, application):
     """
     application - экземпляр класса core.application.ApplicationParams
     """
     Plugin.__init__(self, application)
     self.__version = u"1.7"
     self.__controler = Controller(self, application)
Esempio n. 5
0
 def __init__ (self, application):
     """
     application - экземпляр класса core.application.ApplicationParams
     """
     Plugin.__init__ (self, application)
     self.__version = u"1.7"
     self.__controler = Controller(self, application)
Esempio n. 6
0
 def __init__(self, application):
     """
     application - instance of core.application.ApplicationParams
     """
     from .controller import Controller
     Plugin.__init__(self, application)
     self.__controller = Controller(self, application)
Esempio n. 7
0
 def __init__(self, application):
     """
     application - экземпляр класса core.application.ApplicationParams
     """
     Plugin.__init__(self, application)
     self.__maxCommandIndex = 9
     self.SPOILER_TOOL_ID = u"PLUGIN_SPOILER_TOOL_ID"
Esempio n. 8
0
    def __init__(self, application):
        """
        application - экземпляр класса core.application.ApplicationParams
        """
        Plugin.__init__(self, application)
        self._correctSysPath()

        from .controller import Controller
        self.__controller = Controller(self, application)
Esempio n. 9
0
    def __init__(self, application):
        """
        application - экземпляр класса core.application.ApplicationParams
        """
        Plugin.__init__(self, application)
        self._correctSysPath()

        from .controller import Controller
        self.__controller = Controller(self, application)
Esempio n. 10
0
    def __init__(self, application):
        """
        application - экземпляр класса core.application.ApplicationParams
        """
        Plugin.__init__(self, application)

        self._separatorMenuItem = None
        self._pageStatMenuItem = None
        self._treeStatMenuItem = None
Esempio n. 11
0
        def __init__ (self, application):
            """
            application - экземпляр класса core.application.ApplicationParams
            """
            Plugin.__init__ (self, application)
            self.ID_TOOLBAR = u"livejournal"
            self.ID_LJUSER = u"PLUGIN_LIVEJOURNAL_LJUSER_ID"
            self.ID_LJCOMMUNITY = u"PLUGIN_LIVEJOURNAL_LJCOMMUNITY_ID"

            self.__toolbarCreated = False
Esempio n. 12
0
    def __init__(self, application):
        Plugin.__init__(self, application)
        self._url = u"http://jenyay.net/Outwiker/DebugPlugin"
        self._watcher = EventsWatcher(self._application)
        self._timer = Timer()

        self.ID_PLUGINSLIST = wx.NewId()
        self.ID_BUTTONSDIALOG = wx.NewId()
        self.ID_START_WATCH_EVENTS = wx.NewId()
        self.ID_STOP_WATCH_EVENTS = wx.NewId()
Esempio n. 13
0
    def __init__ (self, application):
        Plugin.__init__ (self, application)
        self._url = u"http://jenyay.net/Outwiker/DebugPlugin"
        self._watcher = EventsWatcher (self._application)
        self._timer = Timer()

        self.ID_PLUGINSLIST = wx.NewId()
        self.ID_BUTTONSDIALOG = wx.NewId()
        self.ID_START_WATCH_EVENTS = wx.NewId()
        self.ID_STOP_WATCH_EVENTS = wx.NewId()
Esempio n. 14
0
    def __init__ (self, application):
        Plugin.__init__ (self, application)
        self._url = u"http://jenyay.net/Outwiker/DebugPlugin"
        self._watcher = EventsWatcher (self._application)

        self._enablePreProcessing = False
        self._enablePostProcessing = False
        self._enableOnHoverLink = False
        self._enableOnLinkClick = False
        self._enableOnEditorPopup = False
        self._enableOnSpellChecking = True
Esempio n. 15
0
        def __init__ (self, application):
            """
            application - экземпляр класса core.application.ApplicationParams
            """
            Plugin.__init__ (self, application)

            self.ID_PAGE_STAT = wx.NewId()
            self.ID_TREE_STAT = wx.NewId()

            self._separatorMenuItem = None
            self._pageStatMenuItem = None
            self._treeStatMenuItem = None
Esempio n. 16
0
    def __init__(self, application):
        Plugin.__init__(self, application)
        self._url = u"https://jenyay.net/Outwiker/DebugPlugin"
        self._watcher = EventsWatcher(self._application)
        self._timer = Timer()
        self._startWikiOpenTime = None

        self.ID_PLUGINSLIST = wx.NewId()
        self.ID_BUTTONSDIALOG = wx.NewId()
        self.ID_START_WATCH_EVENTS = wx.NewId()
        self.ID_STOP_WATCH_EVENTS = wx.NewId()
        self.ID_RAISE_EXCEPTION = wx.NewId()
        self.ID_SHOW_TOASTER = wx.NewId()
Esempio n. 17
0
    def __init__(self, application):
        Plugin.__init__(self, application)
        self._url = u"https://jenyay.net/Outwiker/DebugPlugin"
        self._watcher = EventsWatcher(self._application)
        self._timer = Timer()
        self._startWikiOpenTime = None
        self._prePostContentPrefix = "'''DEBUG PrePostContent'''"

        self.ID_PLUGINSLIST = wx.NewId()
        self.ID_BUTTONSDIALOG = wx.NewId()
        self.ID_START_WATCH_EVENTS = wx.NewId()
        self.ID_STOP_WATCH_EVENTS = wx.NewId()
        self.ID_RAISE_EXCEPTION = wx.NewId()
        self.ID_SHOW_TOASTER = wx.NewId()
Esempio n. 18
0
 def __init__(self, application):
     """
     application - экземпляр класса core.application.ApplicationParams
     """
     Plugin.__init__(self, application)
Esempio n. 19
0
 def __init__(self, application):
     Plugin.__init__(self, application)
     self._autorenamer = AutoRenamer(self, application)
Esempio n. 20
0
 def __init__(self, application):
     """
     application - экземпляр класса core.application.ApplicationParams
     """
     Plugin.__init__(self, application)
     self.LIGHTBOX_TOOL_ID = u"PLUGIN_LIGHTBOX_TOOL_ID"
Esempio n. 21
0
 def __init__(self, application):
     Plugin.__init__(self, application)
Esempio n. 22
0
 def __init__(self, application):
     """
     Plugin with an error. No plugin.py modules in the package.
     """
     Plugin.__init__(self, application)
     self.__enabled = False
Esempio n. 23
0
 def __init__ (self, application):
     Plugin.__init__ (self, application)
     self._url = u"http://jenyay.net/Outwiker/DebugPlugin"
Esempio n. 24
0
 def __init__(self, application):
     """
     application - экземпляр класса core.application.ApplicationParams
     """
     Plugin.__init__(self, application)
     self.LIGHTBOX_TOOL_ID = u"PLUGIN_LIGHTBOX_TOOL_ID"
Esempio n. 25
0
 def __init__ (self, application):
     """
     application - экземпляр класса core.application.ApplicationParams
     """
     Plugin.__init__ (self, application)
Esempio n. 26
0
		def __init__ (self, application):
			Plugin.__init__ (self, application)
			self._autorenamer = AutoRenamer(self, application)