95 |
95 |
96 self.__menu.addAction(UI.PixmapCache.getIcon("sqlBrowser.png"), |
96 self.__menu.addAction(UI.PixmapCache.getIcon("sqlBrowser.png"), |
97 self.trUtf8("SQL Browser"), self.__startSqlBrowser) |
97 self.trUtf8("SQL Browser"), self.__startSqlBrowser) |
98 self.__menu.addSeparator() |
98 self.__menu.addSeparator() |
99 |
99 |
|
100 self.__menu.addAction(UI.PixmapCache.getIcon("iconEditor.png"), |
|
101 self.trUtf8("Icon Editor"), self.__startIconEditor) |
|
102 self.__menu.addSeparator() |
|
103 |
100 self.__menu.addAction(UI.PixmapCache.getIcon("pluginInstall.png"), |
104 self.__menu.addAction(UI.PixmapCache.getIcon("pluginInstall.png"), |
101 self.trUtf8("Install Plugin"), self.__startPluginInstall) |
105 self.trUtf8("Install Plugin"), self.__startPluginInstall) |
102 self.__menu.addAction(UI.PixmapCache.getIcon("pluginUninstall.png"), |
106 self.__menu.addAction(UI.PixmapCache.getIcon("pluginUninstall.png"), |
103 self.trUtf8("Uninstall Plugin"), self.__startPluginUninstall) |
107 self.trUtf8("Uninstall Plugin"), self.__startPluginUninstall) |
104 self.__menu.addAction(UI.PixmapCache.getIcon("pluginRepository.png"), |
108 self.__menu.addAction(UI.PixmapCache.getIcon("pluginRepository.png"), |
297 def __startSqlBrowser(self): |
301 def __startSqlBrowser(self): |
298 """ |
302 """ |
299 Private slot to start the eric5 sql browser dialog. |
303 Private slot to start the eric5 sql browser dialog. |
300 """ |
304 """ |
301 self.__startProc("eric5_sqlbrowser.py", "--config={0}".format( |
305 self.__startProc("eric5_sqlbrowser.py", "--config={0}".format( |
|
306 Utilities.getConfigDir())) |
|
307 |
|
308 def __startIconEditor(self): |
|
309 """ |
|
310 Private slot to start the eric5 icon editor dialog. |
|
311 """ |
|
312 self.__startProc("eric5_iconeditor.py", "--config={0}".format( |
302 Utilities.getConfigDir())) |
313 Utilities.getConfigDir())) |
303 |
314 |
304 def __startQRegExp(self): |
315 def __startQRegExp(self): |
305 """ |
316 """ |
306 Private slot to start the eric5 QRegExp editor dialog. |
317 Private slot to start the eric5 QRegExp editor dialog. |