Plugins/PluginAbout.py

changeset 2407
b98cc8ee1142
parent 2302
f29e9405c851
child 2525
8b507a9a2d40
child 2712
4354ab0b67c7
equal deleted inserted replaced
2406:975af671146d 2407:b98cc8ee1142
13 import UI.Info 13 import UI.Info
14 import UI.PixmapCache 14 import UI.PixmapCache
15 15
16 from E5Gui.E5Action import E5Action 16 from E5Gui.E5Action import E5Action
17 from E5Gui import E5MessageBox 17 from E5Gui import E5MessageBox
18
19 from AboutPlugin.AboutDialog import AboutDialog
20 18
21 # Start-Of-Header 19 # Start-Of-Header
22 name = "About Plugin" 20 name = "About Plugin"
23 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 21 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
24 autoactivate = True 22 autoactivate = True
119 117
120 def __about(self): 118 def __about(self):
121 """ 119 """
122 Private slot to handle the About dialog. 120 Private slot to handle the About dialog.
123 """ 121 """
122 from AboutPlugin.AboutDialog import AboutDialog
124 dlg = AboutDialog(self.__ui) 123 dlg = AboutDialog(self.__ui)
125 dlg.exec_() 124 dlg.exec_()
126 125
127 def __aboutQt(self): 126 def __aboutQt(self):
128 """ 127 """

eric ide

mercurial