7 Module implementing a wizard dialog to enter the synchronization data. |
7 Module implementing a wizard dialog to enter the synchronization data. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtWidgets import QWizard |
10 from PyQt6.QtWidgets import QWizard |
11 |
11 |
|
12 from eric7 import Globals |
12 from eric7.EricGui import EricPixmapCache |
13 from eric7.EricGui import EricPixmapCache |
13 from eric7 import Globals |
|
14 |
14 |
15 |
15 |
16 class SyncAssistantDialog(QWizard): |
16 class SyncAssistantDialog(QWizard): |
17 """ |
17 """ |
18 Class implementing a wizard dialog to enter the synchronization data. |
18 Class implementing a wizard dialog to enter the synchronization data. |
25 @param parent reference to the parent widget (QWidget) |
25 @param parent reference to the parent widget (QWidget) |
26 """ |
26 """ |
27 super().__init__(parent) |
27 super().__init__(parent) |
28 |
28 |
29 from . import SyncGlobals |
29 from . import SyncGlobals |
30 |
30 from .SyncCheckPage import SyncCheckPage |
31 from .SyncDataPage import SyncDataPage |
31 from .SyncDataPage import SyncDataPage |
|
32 from .SyncDirectorySettingsPage import SyncDirectorySettingsPage |
32 from .SyncEncryptionPage import SyncEncryptionPage |
33 from .SyncEncryptionPage import SyncEncryptionPage |
|
34 from .SyncFtpSettingsPage import SyncFtpSettingsPage |
33 from .SyncHostTypePage import SyncHostTypePage |
35 from .SyncHostTypePage import SyncHostTypePage |
34 from .SyncFtpSettingsPage import SyncFtpSettingsPage |
|
35 from .SyncDirectorySettingsPage import SyncDirectorySettingsPage |
|
36 from .SyncCheckPage import SyncCheckPage |
|
37 |
36 |
38 self.setPage(SyncGlobals.PageData, SyncDataPage(self)) |
37 self.setPage(SyncGlobals.PageData, SyncDataPage(self)) |
39 self.setPage(SyncGlobals.PageEncryption, SyncEncryptionPage(self)) |
38 self.setPage(SyncGlobals.PageEncryption, SyncEncryptionPage(self)) |
40 self.setPage(SyncGlobals.PageType, SyncHostTypePage(self)) |
39 self.setPage(SyncGlobals.PageType, SyncHostTypePage(self)) |
41 self.setPage(SyncGlobals.PageFTPSettings, SyncFtpSettingsPage(self)) |
40 self.setPage(SyncGlobals.PageFTPSettings, SyncFtpSettingsPage(self)) |