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