7 Module implementing the handler class for handling a highlighting styles XML file. |
7 Module implementing the handler class for handling a highlighting styles XML file. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt4.QtGui import QColor, QFont |
10 from PyQt4.QtGui import QColor, QFont |
11 |
11 |
12 from Config import highlightingStylesFileFormatVersion |
12 from .Config import highlightingStylesFileFormatVersion |
13 from XMLHandlerBase import XMLHandlerBase |
13 from .XMLHandlerBase import XMLHandlerBase |
14 |
14 |
15 class HighlightingStylesHandler(XMLHandlerBase): |
15 class HighlightingStylesHandler(XMLHandlerBase): |
16 """ |
16 """ |
17 Class implementing a sax handler to read a highlighting styles file. |
17 Class implementing a sax handler to read a highlighting styles file. |
18 """ |
18 """ |