]> SALOME platform Git repositories - modules/gui.git/blob - src/PyViewer/PyViewer.cxx
Salome HOME
Copyright update: 2016
[modules/gui.git] / src / PyViewer / PyViewer.cxx
1 // Copyright (C) 2015-2016  OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // File   : PyViewer.cxx
20 // Author : Maxim GLIBIN, Open CASCADE S.A.S. (maxim.glibin@opencascade.com)
21 //
22
23 #include <QApplication>
24 #include <QDir>
25 #include <QLibraryInfo>
26 #include <QLocale>
27
28 #include "PyViewer_ViewWindow.h"
29
30 #include <QtxTranslator.h>
31
32 int main( int argc, char *argv[] )
33 {
34     QApplication anApplication( argc, argv );
35
36     // Load translations
37     QtxTranslator aTranslatorEd , aTranslatorVi, aTranslatorQt;
38     QString aLanguage = QLocale::system().name().split('_', QString::SkipEmptyParts)[0];
39     if ( !aLanguage.isEmpty() )
40     {
41       if ( aTranslatorQt.load( QString( "qt_%1" ).arg( aLanguage ), QLibraryInfo::location( QLibraryInfo::TranslationsPath ) ) )
42         anApplication.installTranslator( &aTranslatorQt );
43
44       QDir appDir = QApplication::applicationDirPath();
45       appDir.cdUp(); appDir.cdUp();
46
47       if ( aTranslatorEd.load( QString( "PyEditor_msg_%1" ).arg( aLanguage ), appDir.filePath( "share/salome/resources/gui" ) ) )
48         anApplication.installTranslator( &aTranslatorEd );
49     
50       if ( aTranslatorVi.load( QString( "PyViewer_msg_%1" ).arg( aLanguage ), appDir.filePath( "share/salome/resources/gui" ) ) )
51         anApplication.installTranslator( &aTranslatorVi );
52     }
53
54     PyViewer_ViewWindow aViewWin;
55     aViewWin.resize( 650, 700 );
56     aViewWin.show();
57
58     return anApplication.exec();
59 }