]> SALOME platform Git repositories - modules/visu.git/blob - src/VISU_SWIG/visu_view.py
Salome HOME
Porting to Python 2.6 - add coding page specification for Python scripts
[modules/visu.git] / src / VISU_SWIG / visu_view.py
1 #! /usr/bin/python
2 #  -*- coding: iso-8859-1 -*-
3 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
4 #
5 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
6 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
7 #
8 #  This library is free software; you can redistribute it and/or
9 #  modify it under the terms of the GNU Lesser General Public
10 #  License as published by the Free Software Foundation; either
11 #  version 2.1 of the License.
12 #
13 #  This library is distributed in the hope that it will be useful,
14 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 #  Lesser General Public License for more details.
17 #
18 #  You should have received a copy of the GNU Lesser General Public
19 #  License along with this library; if not, write to the Free Software
20 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21 #
22 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
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 myViewMan = myVisu.GetViewManager()
39
40 myTable = myViewMan.CreateTableView(myVisuTableReal)
41 myTitle = myTable.GetTitle()
42 myTable.SetTitle('Changed Title')
43
44 myPlot = myViewMan.CreateXYPlot()
45 myTitle = myPlot.GetTitle()
46 myPlot.SetTitle('Change the title from python')
47
48 mySubTitle = myPlot.GetSubTitle()
49 myPlot.SetSubTitle(myTitle)
50
51 myXTitle = myPlot.GetXTitle()
52 myYTitle = myPlot.GetYTitle()
53 myPlot.SetXTitle(myYTitle)
54 myPlot.SetYTitle(myXTitle)
55
56 myPlot.GetMarkerSize()
57 myPlot.SetMarkerSize(20)
58 myPlot.GetMarkerSize()
59 myPlot.ShowLegend(0)
60
61 myPlot.SetCurveType(VISU.XYPlot.POINTS)
62 myPlot.SetCurveType(VISU.XYPlot.MULTYLINE)
63 myPlot.GetCurveType()
64 myPlot.SetCurveType(VISU.XYPlot.SPLINE)
65
66 myPlot.SetHorScaling(VISU.LOGARITHMIC)
67 myPlot.EnableXGrid(1,3,1,4)
68 myPlot.SetHorScaling(VISU.LINEAR)
69 myPlot.EnableXGrid(1,10,1,10)
70 myPlot.GetHorScaling()
71
72 myPlot.SetVerScaling(VISU.LOGARITHMIC)
73 myPlot.GetVerScaling()
74 myPlot.EnableYGrid(1,2,1,10)
75
76 myPlot.ShowLegend(1)
77 myPlot.SetMarkerSize(5)
78 myPlot.GetMarkerSize()
79