12 |
12 |
13 from PyQt6.QtCore import QObject, QTranslator |
13 from PyQt6.QtCore import QObject, QTranslator |
14 from PyQt6.QtGui import QColor |
14 from PyQt6.QtGui import QColor |
15 from PyQt6.QtWidgets import QColorDialog, QMenu, QDialog |
15 from PyQt6.QtWidgets import QColorDialog, QMenu, QDialog |
16 |
16 |
17 from EricWidgets.EricApplication import ericApp |
17 from eric7.EricWidgets import EricMessageBox |
18 from EricWidgets import EricMessageBox |
18 from eric7.EricWidgets.EricApplication import ericApp |
19 |
19 |
20 # Start-Of-Header |
20 # Start-Of-Header |
21 name = "Color String Plug-in" |
21 name = "Color String Plug-in" |
22 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
22 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
23 autoactivate = True |
23 autoactivate = True |
24 deactivateable = True |
24 deactivateable = True |
25 version = "10.0.0" |
25 version = "10.1.0" |
26 className = "ColorStringPlugin" |
26 className = "ColorStringPlugin" |
27 packageName = "ColorString" |
27 packageName = "ColorString" |
28 shortDescription = "Insert color as string" |
28 shortDescription = "Insert color as string" |
29 longDescription = ( |
29 longDescription = ( |
30 """This plug-in implements a tool to select a color via a""" |
30 """This plug-in implements a tool to select a color via a""" |