mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-10 00:13:55 -04:00
edited some grass descriptions and renamed postproc folder (now it is not only for postproc, but also for pre execution checks)
58 lines
2.2 KiB
Python
58 lines
2.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
***************************************************************************
|
|
ParameterString.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'
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
|
__revision__ = '$Format:%H$'
|
|
|
|
from sextante.parameters.Parameter import Parameter
|
|
|
|
class ParameterString(Parameter):
|
|
|
|
NEWLINE = "\n"
|
|
ESCAPED_NEWLINE = "\\n"
|
|
|
|
def __init__(self, name="", description="", default="", multiline = False):
|
|
Parameter.__init__(self, name, description)
|
|
self.default = default
|
|
self.value = None
|
|
self.multiline = multiline
|
|
|
|
def setValue(self, obj):
|
|
if obj is None:
|
|
self.value = self.default
|
|
return True
|
|
self.value = str(obj).replace(ParameterString.ESCAPED_NEWLINE,ParameterString.NEWLINE)
|
|
return True
|
|
|
|
def getValueAsCommandLineParameter(self):
|
|
return "\"" + str(self.value.replace(ParameterString.NEWLINE,ParameterString.ESCAPED_NEWLINE)) + "\""
|
|
|
|
def serialize(self):
|
|
return self.__module__.split(".")[-1] + "|" + self.name + "|" + self.description +\
|
|
"|" + str(self.default)
|
|
|
|
def deserialize(self, s):
|
|
tokens = s.split("|")
|
|
return ParameterString(tokens[0], tokens[1], tokens[2])
|
|
|
|
def getAsScriptCode(self):
|
|
return "##" + self.name + "=string " + self.default |