-
Notifications
You must be signed in to change notification settings - Fork 2
/
WdgStruttureOrizzontaliCoperturaEdificiGrandiLuci.py
78 lines (68 loc) · 3.75 KB
/
WdgStruttureOrizzontaliCoperturaEdificiGrandiLuci.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
# -*- coding: utf-8 -*-
"""
/***************************************************************************
Name : Omero RT
Description : Omero plugin
Date : August 15, 2010
copyright : (C) 2010 by Giuseppe Sucameli (Faunalia)
email : sucameli@faunalia.it
***************************************************************************/
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 PyQt4.QtCore import *
from PyQt4.QtGui import *
from ui.wdgStruttureOrizzontaliCoperturaEdificiGrandiLuci_ui import Ui_Form
from AutomagicallyUpdater import *
class WdgStruttureOrizzontaliCoperturaEdificiGrandiLuci(QWidget, MappingOne2One, Ui_Form):
def __init__(self, parent=None):
QWidget.__init__(self, parent)
MappingOne2One.__init__(self, "STRUTTURE_ORIZZONTALI_COPERTURA_EDIFICI_GRANDI_LUCI")
self.setupUi(self)
# carica i widget multivalore con i valori delle relative tabelle
tablesDict = {
self.ZZ_TIPOLOGIA_COSTRUTTIVA_COPERTURA_EDIFICI_GRANDI_LUCIID: AutomagicallyUpdater.ZZTable( "ZZ_TIPOLOGIA_COSTRUTTIVA_COPERTURA_EDIFICI_GRANDI_LUCI" ),
self.ZZ_COMPORTAMENTO_STRUTTURALE_COPERTURAID: AutomagicallyUpdater.ZZTable( "ZZ_COMPORTAMENTO_STRUTTURALE_COPERTURA" ),
self.ZZ_STATO_CONSERVAZIONE_COPERTURA_EDIFICI_ORDINARIID: AutomagicallyUpdater.Table( "ZZ_STATO_CONSERVAZIONE_COPERTURA_EDIFICI_ORDINARI" ),
self.ZZ_MATERIALE_COPERTURA_EDIFICI_GRANDI_LUCIID: AutomagicallyUpdater.ZZTable( "ZZ_MATERIALE_COPERTURA_EDIFICI_GRANDI_LUCI" ),
self.ZZ_QUALITA_INFORMAZIONEID: AutomagicallyUpdater.ZZTable( "ZZ_QUALITA_INFORMAZIONE" )
}
self.setupTablesUpdater(tablesDict)
self.loadTables()
# mappa i widget con i campi delle tabelle
childrenList = [
self.ZZ_TIPOLOGIA_COSTRUTTIVA_COPERTURA_EDIFICI_GRANDI_LUCIID,
(self.ZZ_COMPORTAMENTO_STRUTTURALE_COPERTURAID, AutomagicallyUpdater.OPTIONAL),
(self.ZZ_STATO_CONSERVAZIONE_COPERTURA_EDIFICI_ORDINARIID, AutomagicallyUpdater.OPTIONAL),
self.ZZ_MATERIALE_COPERTURA_EDIFICI_GRANDI_LUCIID,
self.ZZ_QUALITA_INFORMAZIONEID
]
self.setupValuesUpdater(childrenList)
def toHtml(self):
return u"""
<table class="green border">
<tr>
<td class="title" colspan="4">Strutture orizzontali - Copertura > Edifici con grandi luci (capannoni, palestre, piscine, etc.)</td>
</tr>
<tr class="line">
<td>Qualità dell'informazione</td><td colspan="3" class="value">%s</td>
</tr>
<tr class="line">
<td class="subtitle">Tipologia costruttiva</td><td class="value">%s</td>
<td class="subtitle line">Materiale</td><td class="value">%s</td>
</tr>
<tr>
<td>Comportamento strutturale</td><td class="value">%s</td>
<td class="line">Stato di conservazione</td><td class="value">%s</td>
</tr>
</table>
""" % ( self.ZZ_QUALITA_INFORMAZIONEID.currentText(), self.ZZ_TIPOLOGIA_COSTRUTTIVA_COPERTURA_EDIFICI_GRANDI_LUCIID.currentText(), self.ZZ_MATERIALE_COPERTURA_EDIFICI_GRANDI_LUCIID.currentText(), self.ZZ_COMPORTAMENTO_STRUTTURALE_COPERTURAID.currentText(), self.ZZ_STATO_CONSERVAZIONE_COPERTURA_EDIFICI_ORDINARIID.currentText() )