]> SALOME platform Git repositories - modules/kernel.git/blob - src/KERNEL_PY/kernel/varlist.py
Salome HOME
CCAR: import_hook.py was too strict in ensure_list (ImportError raised)
[modules/kernel.git] / src / KERNEL_PY / kernel / varlist.py
1 #  Copyright (C) 2011  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  This library is free software; you can redistribute it and/or
4 #  modify it under the terms of the GNU Lesser General Public
5 #  License as published by the Free Software Foundation; either
6 #  version 2.1 of the License.
7 #
8 #  This library is distributed in the hope that it will be useful,
9 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 #  Lesser General Public License for more details.
12 #
13 #  You should have received a copy of the GNU Lesser General Public
14 #  License along with this library; if not, write to the Free Software
15 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 from studyedit import getStudyEditor
21
22 DEFAULT_NAME = "Variables"
23
24 def createVarListObj(fatherSobj, inputVarList = [], outputVarList = [],
25                      studyId = None, name = DEFAULT_NAME, icon = None,
26                      typeId = None):
27     editor = getStudyEditor(studyId)
28     sObj = editor.createItem(fatherSobj,
29                              name = name,
30                              icon = icon,
31                              typeId = typeId)
32     attr = editor.builder.FindOrCreateAttribute(sObj, "AttributeParameter")
33     attr.SetStrArray("inputVarList", inputVarList)
34     attr.SetStrArray("outputVarList", outputVarList)
35
36 def getVarList(sobj, studyId = None):
37     editor = getStudyEditor(studyId)
38     (found, attr) = editor.builder.FindAttribute(sobj, "AttributeParameter")
39     if not found:
40         return (None, None)
41     inputVarList = attr.GetStrArray("inputVarList")
42     outputVarList = attr.GetStrArray("outputVarList")
43     return (inputVarList, outputVarList)