Salome HOME
Synchronize adm files
[modules/med.git] / src / MEDOP / tui / xmedpy / cmdtools.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2011-2014  CEA/DEN, EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20 # Author : Guillaume Boulant (EDF) 
21
22 #
23 # ===================================================================
24 # The functions of this module must be imported as global functions in
25 # the SALOME python console. It provides the console context with
26 # general purpose python commands.
27 # ===================================================================
28 #
29 # add something to clear the screen
30 class Cls(object):
31     """
32     This class can be used to create a command that clear the shell
33     screen running this python interpreter.
34     """
35     def __repr__(self):
36         import os
37         os.system('cls' if os.name == 'nt' else 'clear')
38         return ''
39
40 cls = Cls()
41
42 class Prompt:
43     """
44     This class can be used to create a special prompt
45     """
46     def __str__(self):
47         import os
48         return 'medop> '
49
50 import sys
51 sys.ps1 = Prompt()
52 del sys
53 del Prompt
54
55 class Wipe(object):
56     def __repr__(self):
57         return '>>>\n'*40
58
59 wipe = Wipe()
60