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