]> SALOME platform Git repositories - modules/visu.git/blob - src/VISU_SWIG/batchmode_visu_view.py
Salome HOME
Porting to Python 2.6 - add coding page specification for Python scripts
[modules/visu.git] / src / VISU_SWIG / batchmode_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   : test_table.py
26 #  Author : Alexey Petrov
27 #  Module : VISU
28 #
29 from VISU import *
30 from batchmode_visu_table import *
31
32 myViewMan = myVisu.GetViewManager()
33
34 myTable = myViewMan.CreateTableView(myVisuTableReal)
35 myTitle = myTable.GetTitle()
36 myTable.SetTitle('Changed Title')
37
38 myPlot = myViewMan.CreateXYPlot()
39 myTitle = myPlot.GetTitle()
40 myPlot.SetTitle('Change the title from python')
41
42 mySubTitle = myPlot.GetSubTitle()
43 myPlot.SetSubTitle(myTitle)
44
45 myXTitle = myPlot.GetXTitle()
46 myYTitle = myPlot.GetYTitle()
47 myPlot.SetXTitle(myYTitle)
48 myPlot.SetYTitle(myXTitle)
49
50 myPlot.GetMarkerSize()
51 myPlot.SetMarkerSize(20)
52 myPlot.GetMarkerSize()
53 myPlot.ShowLegend(0)
54
55 myPlot.SetCurveType(VISU.XYPlot.POINTS)
56 myPlot.SetCurveType(VISU.XYPlot.MULTYLINE)
57 myPlot.GetCurveType()
58 myPlot.SetCurveType(VISU.XYPlot.SPLINE)
59
60 myPlot.SetHorScaling(VISU.LOGARITHMIC)
61 myPlot.EnableXGrid(1,3,1,4)
62 myPlot.SetHorScaling(VISU.LINEAR)
63 myPlot.EnableXGrid(1,10,1,10)
64 myPlot.GetHorScaling()
65
66 myPlot.SetVerScaling(VISU.LOGARITHMIC)
67 myPlot.GetVerScaling()
68 myPlot.EnableYGrid(1,2,1,10)
69
70 myPlot.ShowLegend(1)
71 myPlot.SetMarkerSize(5)
72 myPlot.GetMarkerSize()
73
74 myPlot.Display(myContainer)