7 Module implementing the Network configuration page. |
7 Module implementing the Network configuration page. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot |
10 from PyQt6.QtCore import pyqtSlot |
11 |
11 |
|
12 from eric7 import Preferences |
|
13 from eric7.EricNetwork.EricFtp import EricFtpProxyType |
12 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes |
14 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes |
13 |
|
14 from eric7.EricNetwork.EricFtp import EricFtpProxyType |
|
15 |
15 |
16 from .ConfigurationPageBase import ConfigurationPageBase |
16 from .ConfigurationPageBase import ConfigurationPageBase |
17 from .Ui_NetworkPage import Ui_NetworkPage |
17 from .Ui_NetworkPage import Ui_NetworkPage |
18 |
|
19 from eric7 import Preferences |
|
20 |
18 |
21 |
19 |
22 class NetworkPage(ConfigurationPageBase, Ui_NetworkPage): |
20 class NetworkPage(ConfigurationPageBase, Ui_NetworkPage): |
23 """ |
21 """ |
24 Class implementing the Network configuration page. |
22 Class implementing the Network configuration page. |