Helpviewer/Sync/SyncAssistantDialog.py

changeset 1718
1901b1e24746
parent 1695
7b115f986d48
child 2302
f29e9405c851
equal deleted inserted replaced
1717:ba85828cd357 1718:1901b1e24746
17 from .SyncCheckPage import SyncCheckPage 17 from .SyncCheckPage import SyncCheckPage
18 18
19 from . import SyncGlobals 19 from . import SyncGlobals
20 20
21 import UI.PixmapCache 21 import UI.PixmapCache
22 import Globals
22 23
23 24
24 class SyncAssistantDialog(QWizard): 25 class SyncAssistantDialog(QWizard):
25 """ 26 """
26 Class implementing a wizard dialog to enter the synchronization data. 27 Class implementing a wizard dialog to enter the synchronization data.
43 self.setPixmap(QWizard.LogoPixmap, UI.PixmapCache.getPixmap("ericWeb48.png")) 44 self.setPixmap(QWizard.LogoPixmap, UI.PixmapCache.getPixmap("ericWeb48.png"))
44 self.setPixmap(QWizard.WatermarkPixmap, UI.PixmapCache.getPixmap("eric256.png")) 45 self.setPixmap(QWizard.WatermarkPixmap, UI.PixmapCache.getPixmap("eric256.png"))
45 self.setPixmap(QWizard.BackgroundPixmap, UI.PixmapCache.getPixmap("eric256.png")) 46 self.setPixmap(QWizard.BackgroundPixmap, UI.PixmapCache.getPixmap("eric256.png"))
46 47
47 self.setMinimumSize(650, 450) 48 self.setMinimumSize(650, 450)
49 if Globals.isWindowsPlatform():
50 self.setWizardStyle(QWizard.ModernStyle)

eric ide

mercurial