WebBrowser/Sync/SyncGlobals.py

branch
QtWebEngine
changeset 4774
2c6ffa778c3b
parent 4631
5c1a96925da4
child 5389
9b1c800daff3
equal deleted inserted replaced
4773:cad470dfd807 4774:2c6ffa778c3b
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2012 - 2016 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Module implementing some global definitions.
8 """
9
10 # Page IDs for the sync wizard
11 PageData = 0
12 PageEncryption = 1
13 PageType = 2
14 PageFTPSettings = 3
15 PageDirectorySettings = 4
16 PageCheck = 5
17
18 # Sync types
19 SyncTypeNone = -1
20 SyncTypeFtp = 0
21 SyncTypeDirectory = 1
22
23 #
24 # eflag: noqa = M702

eric ide

mercurial