2012-10-05 23:28:47 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
FixedTablePanel.py
|
|
|
|
---------------------
|
|
|
|
Date : August 2012
|
|
|
|
Copyright : (C) 2012 by Victor Olaya
|
|
|
|
Email : volayaf at gmail dot com
|
|
|
|
***************************************************************************
|
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************
|
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = 'Victor Olaya'
|
|
|
|
__date__ = 'August 2012'
|
|
|
|
__copyright__ = '(C) 2012, Victor Olaya'
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2012-10-05 23:28:47 +02:00
|
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2012-10-05 23:28:47 +02:00
|
|
|
__revision__ = '$Format:%H$'
|
|
|
|
|
2015-05-18 21:04:20 +03:00
|
|
|
import os
|
|
|
|
|
2016-04-29 11:39:26 +02:00
|
|
|
from qgis.PyQt import uic
|
2014-11-09 12:37:32 +02:00
|
|
|
|
2013-08-12 20:44:27 +02:00
|
|
|
from processing.gui.FixedTableDialog import FixedTableDialog
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2015-05-18 21:04:20 +03:00
|
|
|
pluginPath = os.path.split(os.path.dirname(__file__))[0]
|
|
|
|
WIDGET, BASE = uic.loadUiType(
|
|
|
|
os.path.join(pluginPath, 'ui', 'widgetBaseSelector.ui'))
|
2014-11-09 12:37:32 +02:00
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2015-05-18 21:04:20 +03:00
|
|
|
class FixedTablePanel(BASE, WIDGET):
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
def __init__(self, param, parent=None):
|
2015-05-18 21:04:20 +03:00
|
|
|
super(FixedTablePanel, self).__init__(parent)
|
2014-11-09 12:37:32 +02:00
|
|
|
self.setupUi(self)
|
|
|
|
|
|
|
|
self.leText.setEnabled(False)
|
|
|
|
|
2012-09-15 18:25:25 +03:00
|
|
|
self.param = param
|
|
|
|
self.table = []
|
|
|
|
for i in range(param.numRows):
|
|
|
|
self.table.append(list())
|
|
|
|
for j in range(len(param.cols)):
|
2013-10-01 20:52:22 +03:00
|
|
|
self.table[i].append('0')
|
2014-11-09 12:37:32 +02:00
|
|
|
|
|
|
|
self.leText.setText(
|
2015-10-23 13:02:17 +02:00
|
|
|
self.tr('Fixed table %dx%d' % (param.numRows, len(param.cols))))
|
2014-11-09 12:37:32 +02:00
|
|
|
|
|
|
|
self.btnSelect.clicked.connect(self.showFixedTableDialog)
|
2012-09-15 18:25:25 +03:00
|
|
|
|
|
|
|
def showFixedTableDialog(self):
|
|
|
|
dlg = FixedTableDialog(self.param, self.table)
|
|
|
|
dlg.exec_()
|
2013-10-01 20:52:22 +03:00
|
|
|
if dlg.rettable is not None:
|
2012-09-15 18:25:25 +03:00
|
|
|
self.table = dlg.rettable
|
2014-11-09 12:37:32 +02:00
|
|
|
|
|
|
|
self.leText.setText(self.tr('Fixed table %dx%d' % (
|
2015-10-23 13:02:17 +02:00
|
|
|
len(self.table), len(self.param.cols))))
|