QGIS/python/plugins/processing/gui/FixedTablePanel.py

67 lines
2.2 KiB
Python
Raw Normal View History

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'
2012-10-05 23:28:47 +02:00
# This will get replaced with a git SHA1 when you do a git archive
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
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'))
2015-05-18 21:04:20 +03:00
class FixedTablePanel(BASE, WIDGET):
2012-09-15 18:25:25 +03:00
def __init__(self, param, parent=None):
2015-05-18 21:04:20 +03:00
super(FixedTablePanel, self).__init__(parent)
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)):
self.table[i].append('0')
self.leText.setText(
self.tr('Fixed table %dx%d' % (param.numRows, len(param.cols))))
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_()
if dlg.rettable is not None:
2012-09-15 18:25:25 +03:00
self.table = dlg.rettable
self.leText.setText(self.tr('Fixed table %dx%d' % (
len(self.table), len(self.param.cols))))