Salome HOME
0020623: EDF 1209 SMESH: Load script/execfile add the objects in the wrong study
[modules/visu.git] / src / VISU_SWIG / batchmode_visu_view.py
1 #  -*- coding: iso-8859-1 -*-
2 #  Copyright (C) 2007-2008  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.
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 #  VISU VISU_SWIG : binding of C++ implementation and Python
24 #  File   : test_table.py
25 #  Author : Alexey Petrov
26 #  Module : VISU
27 #
28 from VISU import *
29 from batchmode_visu_table import *
30
31 myVisu.SetCurrentStudy(salome.myStudy)
32
33 myViewMan = myVisu.GetViewManager()
34
35 myTable = myViewMan.CreateTableView(myVisuTableReal)
36 myTitle = myTable.GetTitle()
37 myTable.SetTitle('Changed Title')
38
39 myPlot = myViewMan.CreateXYPlot()
40 myTitle = myPlot.GetTitle()
41 myPlot.SetTitle('Change the title from python')
42
43 mySubTitle = myPlot.GetSubTitle()
44 myPlot.SetSubTitle(myTitle)
45
46 myXTitle = myPlot.GetXTitle()
47 myYTitle = myPlot.GetYTitle()
48 myPlot.SetXTitle(myYTitle)
49 myPlot.SetYTitle(myXTitle)
50
51 myPlot.GetMarkerSize()
52 myPlot.SetMarkerSize(20)
53 myPlot.GetMarkerSize()
54 myPlot.ShowLegend(0)
55
56 myPlot.SetCurveType(VISU.XYPlot.POINTS)
57 myPlot.SetCurveType(VISU.XYPlot.MULTYLINE)
58 myPlot.GetCurveType()
59 myPlot.SetCurveType(VISU.XYPlot.SPLINE)
60
61 myPlot.SetHorScaling(VISU.LOGARITHMIC)
62 myPlot.EnableXGrid(1,3,1,4)
63 myPlot.SetHorScaling(VISU.LINEAR)
64 myPlot.EnableXGrid(1,10,1,10)
65 myPlot.GetHorScaling()
66
67 myPlot.SetVerScaling(VISU.LOGARITHMIC)
68 myPlot.GetVerScaling()
69 myPlot.EnableYGrid(1,2,1,10)
70
71 myPlot.ShowLegend(1)
72 myPlot.SetMarkerSize(5)
73 myPlot.GetMarkerSize()
74
75 myPlot.Display(myContainer)