-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathExportAutoFieldsDialog.py
124 lines (101 loc) · 5.36 KB
/
ExportAutoFieldsDialog.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# -*- coding:utf-8 -*-
"""
/***************************************************************************
AutoFields
A QGIS plugin
Automatic attribute updates when creating or modifying vector features
-------------------
begin : 2017-04-11
copyright : (C) 2017 by Germán Carrillo (GeoTux)
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
"""
import os.path
import json
from qgis.core import QgsMapLayerRegistry
from PyQt4.QtCore import Qt, QSettings
from PyQt4.QtGui import ( QApplication, QDialog, QDialogButtonBox,
QTableWidgetItem, QFileDialog, QMessageBox )
from Ui_Export_AutoFields import Ui_ExportAutoFieldsDialog
class ExportAutoFieldsDialog( QDialog, Ui_ExportAutoFieldsDialog ):
def __init__( self, parent, autoFieldManager, messageManager ):
QDialog.__init__( self, parent )
self.setupUi( self )
self.setModal( True )
self.parent = parent
self.autoFieldManager = autoFieldManager
self.messageManager = messageManager
self.tblAutoFields.sortItems(0, Qt.AscendingOrder)
self.btnOpenFileDialog.clicked.connect( self.openFileDialog )
self.populateAutoFieldsTable()
def populateAutoFieldsTable( self ):
dictAutoFields = self.autoFieldManager.listAutoFields()
self.tblAutoFields.clearContents()
self.tblAutoFields.setRowCount( 0 )
self.tblAutoFields.setColumnCount( 4 )
self.tblAutoFields.setSortingEnabled( False )
for key in dictAutoFields.keys():
autoField = dictAutoFields[key]
self.addAutoFieldToAutoFieldsTable( key, autoField )
self.tblAutoFields.setSortingEnabled( True )
def addAutoFieldToAutoFieldsTable( self, autoFieldId, autoField ):
""" Add a whole row to the AutoFields table """
row = self.tblAutoFields.rowCount()
self.tblAutoFields.insertRow( row )
name = autoField['layer']
if 'layerId' in autoField:
lyr = QgsMapLayerRegistry.instance().mapLayer( autoField['layerId'] )
name = lyr.name()
item = QTableWidgetItem( name )
item.setData( Qt.UserRole, autoFieldId )
item.setData( Qt.ToolTipRole, autoField['layer'] )
self.tblAutoFields.setItem( row, 0, item )
item = QTableWidgetItem( autoField['field'] )
self.tblAutoFields.setItem( row, 1, item )
item = QTableWidgetItem( autoField['expression'] )
self.tblAutoFields.setItem( row, 2, item )
item = QTableWidgetItem( QApplication.translate( "ExportAutoFields",
"Enabled" ) if autoField['enabled'] else QApplication.translate( "ExportAutoFields", "Disabled" ) )
self.tblAutoFields.setItem( row, 3, item )
def openFileDialog( self ):
settings = QSettings()
path = QFileDialog.getSaveFileName( self, QApplication.translate( "ExportAutoFields", "Create a JSON file" ),
settings.value( self.autoFieldManager.settingsPrefix + "/export/dir", "", type=str ), "JSON files (*.json)" )
if path:
if not path.endswith( '.json' ):
path += '.json'
self.txtExportFile.setText( path )
settings.setValue( self.autoFieldManager.settingsPrefix + "/export/dir", os.path.dirname( path ) )
def doExport( self ):
listAFExport = []
# Column 0 has the AutoField id
selectedAutoFieldIds = [ item.data( Qt.UserRole ) for item in self.tblAutoFields.selectedItems() if item.column() == 0 ]
for afId,dictAF in self.autoFieldManager.dictAutoFields.iteritems():
if afId in selectedAutoFieldIds:
listAFExport.append( {k:v for k,v in dictAF.iteritems() if k in ['layer','field','expression','order']} )
f = open( self.txtExportFile.text(), "wt" )
f.write(json.dumps( {'AutoFields':listAFExport}, ensure_ascii=False, sort_keys=True, indent=3) .encode( 'utf-8' ) )
f.close()
# Remove?
if self.chkRemoveExportedAutoFields.isChecked():
for autoFieldId in selectedAutoFieldIds:
self.autoFieldManager.removeAutoField( autoFieldId )
def accept( self ):
if not self.tblAutoFields.selectedItems():
QMessageBox.warning( self.parent, "Warning", "Select at least one AutoField to export." )
return
if not self.txtExportFile.text():
QMessageBox.warning( self.parent, "Warning", "Select an output file before exporting." )
return
self.doExport()
self.messageManager.show( QApplication.translate( "ExportAutoFields",
u"Selected AutoFields have been exported to {}.".format( self.txtExportFile.text() ) ) )
self.done( 1 )