Salome HOME
:Merge branch 'master' of https://codev-tuleap.cea.fr/plugins/git/spns/SolverLab
[tools/solverlab.git] / CoreFlows / gui / src / CoreFlows_Standalone.py
1 # -*- coding: latin-1 -*-
2 #  Copyright (C) 2007-2010  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 # Author : A. Bruneton
24 #
25 import sys, os
26 from PyQt4.QtGui import QApplication 
27 from PyQt4.QtCore import SIGNAL, SLOT
28
29 from CFDesktop import CFDesktop
30 import SalomePyQt_MockUp
31 from PyQt4.QtCore import QTimer, QTranslator, Qt
32
33 desktop = None
34
35 def activate():
36     """This method mimicks SALOME's module activation """
37     global desktop
38     fv = desktop.showCentralWidget()
39     return True
40
41 def main(args) :
42     global desktop
43       
44     app = QApplication(args)
45     
46     desktop = CFDesktop(None)
47     sgPyQt = SalomePyQt_MockUp.SalomePyQt(desktop)
48     desktop._sgPyQt = sgPyQt 
49     desktop.initialize()
50     activate()
51     desktop.show()
52     
53     
54     #
55     app.connect(app,SIGNAL("lastWindowClosed()"),app,SLOT("quit()"))
56     app.exec_()
57
58 if __name__ == "__main__" :
59     main(sys.argv)