3185:d4fa462547bc | 3186:a05eff845522 |
---|---|
15 from .ConfigurationPageBase import ConfigurationPageBase | 15 from .ConfigurationPageBase import ConfigurationPageBase |
16 from .Ui_DebuggerPython3Page import Ui_DebuggerPython3Page | 16 from .Ui_DebuggerPython3Page import Ui_DebuggerPython3Page |
17 | 17 |
18 import Preferences | 18 import Preferences |
19 import Utilities | 19 import Utilities |
20 import UI.PixmapCache | |
20 | 21 |
21 | 22 |
22 class DebuggerPython3Page(ConfigurationPageBase, Ui_DebuggerPython3Page): | 23 class DebuggerPython3Page(ConfigurationPageBase, Ui_DebuggerPython3Page): |
23 """ | 24 """ |
24 Class implementing the Debugger Python3 configuration page. | 25 Class implementing the Debugger Python3 configuration page. |
28 Constructor | 29 Constructor |
29 """ | 30 """ |
30 super().__init__() | 31 super().__init__() |
31 self.setupUi(self) | 32 self.setupUi(self) |
32 self.setObjectName("DebuggerPython3Page") | 33 self.setObjectName("DebuggerPython3Page") |
34 | |
35 self.interpreterButton.setIcon(UI.PixmapCache.getIcon("open.png")) | |
36 self.debugClientButton.setIcon(UI.PixmapCache.getIcon("open.png")) | |
33 | 37 |
34 self.interpreterCompleter = E5FileCompleter(self.interpreterEdit) | 38 self.interpreterCompleter = E5FileCompleter(self.interpreterEdit) |
35 self.debugClientCompleter = E5FileCompleter(self.debugClientEdit) | 39 self.debugClientCompleter = E5FileCompleter(self.debugClientEdit) |
36 | 40 |
37 # set initial values | 41 # set initial values |