QGIS/python/plugins/processing/parameters/ParameterTableField.py

73 lines
2.5 KiB
Python
Raw Normal View History

2012-10-05 23:28:47 +02:00
# -*- coding: utf-8 -*-
"""
***************************************************************************
ParameterTableField.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$'
2013-08-12 20:44:27 +02:00
from processing.parameters.Parameter import Parameter
2012-09-15 18:25:25 +03:00
2012-09-15 18:25:25 +03:00
class ParameterTableField(Parameter):
DATA_TYPE_NUMBER = 0
DATA_TYPE_STRING = 1
DATA_TYPE_ANY = -1
def __init__(self, name='', description='', parent=None, datatype=-1,
optional=False):
2012-09-15 18:25:25 +03:00
Parameter.__init__(self, name, description)
self.parent = parent
self.value = None
self.datatype = datatype
self.optional = optional
2012-09-15 18:25:25 +03:00
def getValueAsCommandLineParameter(self):
return '"' + str(self.value) + '"'
2012-09-15 18:25:25 +03:00
def getAsScriptCode(self):
return '##' + self.name + '=field ' + str(self.parent)
2013-04-15 07:16:20 +02:00
def setValue(self, value):
if value is None:
return self.optional
elif len(value) > 0:
self.value = str(value)
else:
2013-04-15 07:16:20 +02:00
return self.optional
return True
2012-09-15 18:25:25 +03:00
def serialize(self):
return self.__module__.split('.')[-1] + '|' + self.name + '|' \
+ self.description + '|' + str(self.parent) + '|' \
+ str(self.datatype) + '|' + str(self.optional)
2012-09-15 18:25:25 +03:00
def deserialize(self, s):
tokens = s.split('|')
return ParameterTableField(tokens[1], tokens[2], tokens[3],
int(tokens[4]), tokens[5] == str(True))
2012-09-15 18:25:25 +03:00
def __str__(self):
return self.name + ' <' + self.__module__.split('.')[-1] + ' from ' \
+ self.parent + '>'