Salome HOME
Merge Python 3 porting.
[modules/gui.git] / src / SALOME_SWIG / test_table.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 #
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License, or (at your option) any later version.
11 #
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20 #
21 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #
23
24 # File   : test_table.py
25 # Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
26 #
27 import salome
28 import math
29 import SALOMEDS
30
31 # >>> Getting study builder ==================================================
32 myStudy = salome.myStudy
33 myBuilder = myStudy.NewBuilder()
34
35 # >>> Creating virtual component =============================================
36 myComponent = myStudy.FindComponent("VirtualComponent")
37 if not myComponent:
38    myComponent = myBuilder.NewComponent("VirtualComponent")
39    aName = myBuilder.FindOrCreateAttribute(myComponent, "AttributeName")
40    aName.SetValue("VirtualComponent")
41
42 # >>> Creating object with Table of integer ==================================
43 myTIntObject = myBuilder.NewObject(myComponent)
44 AName = myBuilder.FindOrCreateAttribute(myTIntObject, "AttributeName")
45 AName.SetValue("Table Of Integer")
46 AIntTable = myBuilder.FindOrCreateAttribute(myTIntObject, "AttributeTableOfInteger")
47
48 a=[1,2,3,4,5,6,7,8,9,10]
49 AIntTable.AddRow(a)
50 a=[110,120,130,140,150,160,170,180,190,200]
51 AIntTable.AddRow(a)
52 a=[-1,272,0,0,-642,10000,13,578,-578,99]
53 AIntTable.AddRow(a)
54 AIntTable.SetTitle("TEST table of integer")
55 AIntTable.SetRowTitle(1,"FR")
56 AIntTable.SetRowUnit(1,"m/h")
57 AIntTable.SetRowTitle(2,"SR")
58 AIntTable.SetRowUnit(2,"s")
59 AIntTable.SetRowTitle(3,"TR")
60 AIntTable.SetRowUnit(3,"$")
61 c=["C1","C2","C3","C4","C5","C6","C7","C8","C9","C10"]
62 AIntTable.SetColumnTitles(c)
63
64 # >>> Creating object with Table of real =====================================
65 myTRealObject = myBuilder.NewObject(myComponent)
66 AName = myBuilder.FindOrCreateAttribute(myTRealObject, "AttributeName")
67 AName.SetValue("Table Of Real")
68 ARealTable = myBuilder.FindOrCreateAttribute(myTRealObject, "AttributeTableOfReal")
69
70 k={}
71 l={}
72 for j in range(0,20):
73    k[j] = j*10+1
74    l[j] = "C"+str(j+1)
75 ARealTable.AddRow(list(k.values()))
76 ARealTable.SetRowTitle(1, "Row 0")
77 ARealTable.SetRowUnit(1, "Hz")
78 ARealTable.SetColumnTitles(list(l.values()))
79 for i in range(1,11):
80    for j in range(1,21):
81       if j % 2 == 1:
82          k[j] = math.log10(j*30*math.pi/180) * 20 + i * 15 + j*5
83       else:
84          k[j] = math.sin(j*30*math.pi/180) * 20 + i * 15 + j*5 
85    ARealTable.AddRow(list(k.values()))
86    ARealTable.SetRowTitle(i+1, "Row " + str(i))
87    ARealTable.SetRowUnit(i+1, "Wt")
88 ARealTable.SetTitle("TEST table of real")
89
90 # >>> Creating object with integer attribute =================================
91 myIntObject = myBuilder.NewObject(myComponent)
92 AName = myBuilder.FindOrCreateAttribute(myIntObject, "AttributeName")
93 AName.SetValue("Integer")
94 AInt = myBuilder.FindOrCreateAttribute(myIntObject, "AttributeInteger")
95 AInt.SetValue(123)
96
97 # >>> Creating object with real attribute ====================================
98 myRealObject = myBuilder.NewObject(myComponent)
99 AName = myBuilder.FindOrCreateAttribute(myRealObject, "AttributeName")
100 AName.SetValue("Real")
101 AReal = myBuilder.FindOrCreateAttribute(myRealObject, "AttributeReal")
102 AReal.SetValue(-56.9634)
103
104 # >>> Creating object with comment attribute =================================
105 myCmtObject = myBuilder.NewObject(myComponent)
106 AName = myBuilder.FindOrCreateAttribute(myCmtObject, "AttributeName")
107 AName.SetValue("Comment")
108 ACmt = myBuilder.FindOrCreateAttribute(myCmtObject, "AttributeComment")
109 ACmt.SetValue("Just a comment")
110
111 # >>> Updating Object Browser ================================================
112 salome.sg.updateObjBrowser()
113
114 # ============================================================================
115
116
117