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