5 |
5 |
6 """ |
6 """ |
7 Module implementing the Viewmanager configuration page. |
7 Module implementing the Viewmanager configuration page. |
8 """ |
8 """ |
9 |
9 |
10 import os |
|
11 |
|
12 from PyQt4.QtCore import pyqtSlot |
10 from PyQt4.QtCore import pyqtSlot |
13 from PyQt4.QtGui import QPixmap |
|
14 |
11 |
15 from E5Gui.E5Application import e5App |
12 from E5Gui.E5Application import e5App |
16 |
13 |
17 from .ConfigurationPageBase import ConfigurationPageBase |
14 from .ConfigurationPageBase import ConfigurationPageBase |
18 from .Ui_ViewmanagerPage import Ui_ViewmanagerPage |
15 from .Ui_ViewmanagerPage import Ui_ViewmanagerPage |
19 |
16 |
20 import Preferences |
17 import Preferences |
21 |
|
22 from eric5config import getConfig |
|
23 |
18 |
24 class ViewmanagerPage(ConfigurationPageBase, Ui_ViewmanagerPage): |
19 class ViewmanagerPage(ConfigurationPageBase, Ui_ViewmanagerPage): |
25 """ |
20 """ |
26 Class implementing the Viewmanager configuration page. |
21 Class implementing the Viewmanager configuration page. |
27 """ |
22 """ |