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