5 |
5 |
6 """ |
6 """ |
7 Module implementing a special QextScintilla lexer to handle the preferences. |
7 Module implementing a special QextScintilla lexer to handle the preferences. |
8 """ |
8 """ |
9 |
9 |
10 import sys |
|
11 |
|
12 from PyQt4.QtCore import * |
10 from PyQt4.QtCore import * |
13 from PyQt4.QtGui import QColor, QFont, QApplication |
11 from PyQt4.QtGui import QColor, QFont, QApplication |
14 from PyQt4.Qsci import QsciLexer, QsciScintilla |
12 from PyQt4.Qsci import QsciLexer |
15 |
13 |
16 import QScintilla.Lexers |
14 import QScintilla.Lexers |
17 |
15 |
18 import Preferences |
16 import Preferences |
19 |
17 |