2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
5 | 5 |
6 """ | 6 """ |
7 Module implementing the Interface configuration page. | 7 Module implementing the Interface configuration page. |
8 """ | 8 """ |
9 | 9 |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ | |
11 | |
10 import glob | 12 import glob |
11 import os | 13 import os |
12 | 14 |
13 from PyQt4.QtCore import pyqtSlot, QTranslator | 15 from PyQt4.QtCore import pyqtSlot, QTranslator |
14 from PyQt4.QtGui import QStyleFactory | 16 from PyQt4.QtGui import QStyleFactory |
31 """ | 33 """ |
32 def __init__(self): | 34 def __init__(self): |
33 """ | 35 """ |
34 Constructor | 36 Constructor |
35 """ | 37 """ |
36 super().__init__() | 38 super(InterfacePage, self).__init__() |
37 self.setupUi(self) | 39 self.setupUi(self) |
38 self.setObjectName("InterfacePage") | 40 self.setObjectName("InterfacePage") |
39 | 41 |
40 self.styleSheetCompleter = E5FileCompleter(self.styleSheetEdit) | 42 self.styleSheetCompleter = E5FileCompleter(self.styleSheetEdit) |
41 | 43 |