11 """ The EventBrowserPlugin supports navigation in files.
15 logging.debug(__name__ +
": __init__")
16 BrowserPlugin.__init__(self, application)
19 BrowserPlugin.startUp(self)
23 """ Fill EventNavigator specific menu.
27 self.
_firstAction = self._application.createAction(
'&First', self.
first,
"Ctrl+Home",
"first")
29 self.
_nextAction = self._application.createAction(
'&Next', self.
next,
"Ctrl+PgDown",
"next")
30 self.
_lastAction = self._application.createAction(
'&Last', self.
last,
"Ctrl+End",
"last")
31 self.
_gotoAction = self._application.createAction(
'&Goto...', self.
goto,
"Ctrl+G")
48 """ Calls first() function of current tab controller.
52 except NoCurrentTabControllerException:
53 logging.warning(self.__class__.__name__ +
": first() - No tab controller found.")
56 """ Calls previous() function of current tab controller.
60 except NoCurrentTabControllerException:
61 logging.warning(self.__class__.__name__ +
": previous() - No tab controller found.")
64 """ Calls next() function of current tab controller.
68 except NoCurrentTabControllerException:
69 logging.warning(self.__class__.__name__ +
": next() - No tab controller found.")
72 """ Calls last() function of current tab controller.
76 except NoCurrentTabControllerException:
77 logging.warning(self.__class__.__name__ +
": last() - No tab controller found.")
80 """ Calls goto() function of current tab controller.
84 except NoCurrentTabControllerException:
85 logging.warning(self.__class__.__name__ +
": goto() - No tab controller found.")
def _fillEventNavigatorMenu