Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/visu.git] / src / VISU_SWIG / batchmode_visu_view.py
1 #  VISU VISU_SWIG : binding of C++ implementation and Python
2 #
3 #  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5
6 #  This library is free software; you can redistribute it and/or 
7 #  modify it under the terms of the GNU Lesser General Public 
8 #  License as published by the Free Software Foundation; either 
9 #  version 2.1 of the License. 
10
11 #  This library is distributed in the hope that it will be useful, 
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 #  Lesser General Public License for more details. 
15
16 #  You should have received a copy of the GNU Lesser General Public 
17 #  License along with this library; if not, write to the Free Software 
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19
20 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 #  File   : test_table.py
23 #  Author : Alexey Petrov
24 #  Module : VISU
25
26 from VISU import *
27 from batchmode_visu_table import *
28
29 myViewMan = myVisu.GetViewManager()
30
31 myTable = myViewMan.CreateTableView(myVisuTableReal)
32 myTitle = myTable.GetTitle()
33 myTable.SetTitle('Changed Title')
34
35 myPlot = myViewMan.CreateXYPlot()
36 myTitle = myPlot.GetTitle()
37 myPlot.SetTitle('Change the title from python')
38
39 mySubTitle = myPlot.GetSubTitle()
40 myPlot.SetSubTitle(myTitle)
41
42 myXTitle = myPlot.GetXTitle()
43 myYTitle = myPlot.GetYTitle()
44 myPlot.SetXTitle(myYTitle)
45 myPlot.SetYTitle(myXTitle)
46
47 myPlot.GetMarkerSize()
48 myPlot.SetMarkerSize(20)
49 myPlot.GetMarkerSize()
50 myPlot.ShowLegend(0)
51
52 myPlot.SetCurveType(VISU.XYPlot.POINTS)
53 myPlot.SetCurveType(VISU.XYPlot.MULTYLINE)
54 myPlot.GetCurveType()
55 myPlot.SetCurveType(VISU.XYPlot.SPLINE)
56
57 myPlot.SetHorScaling(VISU.LOGARITHMIC)
58 myPlot.EnableXGrid(1,3,1,4)
59 myPlot.SetHorScaling(VISU.LINEAR)
60 myPlot.EnableXGrid(1,10,1,10)
61 myPlot.GetHorScaling()
62
63 myPlot.SetVerScaling(VISU.LOGARITHMIC)
64 myPlot.GetVerScaling()
65 myPlot.EnableYGrid(1,2,1,10)
66
67 myPlot.ShowLegend(1)
68 myPlot.SetMarkerSize(5)
69 myPlot.GetMarkerSize()
70
71 myPlot.Display(myContainer)