-
Notifications
You must be signed in to change notification settings - Fork 2
/
DlgSettings.py
87 lines (61 loc) · 2.86 KB
/
DlgSettings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# -*- coding: utf-8 -*-
"""
/***************************************************************************
Name : Omero RT
Description : Omero plugin
Date : August 15, 2010
copyright : (C) 2010 by Giuseppe Sucameli (Faunalia)
email : [email protected]
***************************************************************************/
Omero plugin
Works done from Faunalia (http://www.faunalia.it) with funding from Regione
Toscana - S.I.T.A. (http://www.regione.toscana.it/territorio/cartografia/index.html)
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
from ui.dlgSettings_ui import Ui_Dialog
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from AutomagicallyUpdater import AutomagicallyUpdater
class DlgSettings(QDialog, Ui_Dialog):
def __init__(self, parent=None):
QDialog.__init__(self, parent)
self.setupUi(self)
self.restorePrintBehavior()
self.initPrintPdfResolution()
self.restoreWMSRepoUrl()
def initPrintPdfResolution(self):
self.printPdfResGroup.setEnabled( self.printPdfRadio.isChecked() )
import platform
if platform.system() != "Windows":
self.printPdfHighResRadio.setChecked( True )
self.printPdfResGroup.hide()
self.resize( QSize(100,100) )
def restorePrintBehavior(self):
mode, res = AutomagicallyUpdater.printBehavior()
self.printPdfRadio.setChecked( mode == QPrinter.PdfFormat )
self.printDefaultRadio.setChecked( mode == QPrinter.NativeFormat )
self.printHtmlRadio.setChecked( mode == -1 )
self.printPdfHighResRadio.setChecked( res == QPrinter.HighResolution )
self.printPdfLowResRadio.setChecked( res == QPrinter.ScreenResolution )
def updatePrintBehavior(self):
if self.printDefaultRadio.isChecked(): mode = QPrinter.NativeFormat
elif self.printHtmlRadio.isChecked(): mode = -1
else: mode = QPrinter.PdfFormat
if self.printPdfLowResRadio.isChecked(): res = QPrinter.ScreenResolution
else: res = QPrinter.HighResolution
AutomagicallyUpdater.setPrintBehavior( mode, res )
def restoreWMSRepoUrl(self):
self.wmsRepoUrlEdit.setText( AutomagicallyUpdater.getWMSRepositoryUrl() )
def updateWMSRepoUrl(self):
AutomagicallyUpdater.setWMSRepositoryUrl( self.wmsRepoUrlEdit.text() )
def accept(self):
self.updatePrintBehavior()
self.updateWMSRepoUrl()
QDialog.accept(self)