From: stv Date: Fri, 3 Jun 2005 11:28:13 +0000 (+0000) Subject: Added version support for user resource file X-Git-Tag: T3_0_0_a1~17 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=ca2753bc8e91331bdf513157f0b1e4a2bf95f749;p=modules%2Fgui.git Added version support for user resource file --- diff --git a/src/SUIT/SUIT_ResourceMgr.cxx b/src/SUIT/SUIT_ResourceMgr.cxx index 3f8670bd2..ec4200950 100755 --- a/src/SUIT/SUIT_ResourceMgr.cxx +++ b/src/SUIT/SUIT_ResourceMgr.cxx @@ -51,11 +51,7 @@ QString SUIT_ResourceMgr::userFileName( const QString& appName ) const QString pathName = QtxResourceMgr::userFileName( appName ); if ( !version().isEmpty() ) - { - int idx = pathName.findRev( appName ); - if ( idx != -1 ) - pathName.replace( idx, appName.length(), appName + version() ); - } + pathName += QString( "." ) + version(); return pathName; } diff --git a/src/Session/SALOME_Session_Server.cxx b/src/Session/SALOME_Session_Server.cxx index 6aeb7e868..bb9a850f3 100755 --- a/src/Session/SALOME_Session_Server.cxx +++ b/src/Session/SALOME_Session_Server.cxx @@ -35,9 +35,9 @@ #include #include -#include +#include +#include #include -#include #include #include "Utils_SALOME_Exception.hxx" @@ -80,13 +80,37 @@ extern "C" int HandleSignals(QApplication *theQApplication); * - get session state */ -#ifdef _DEBUG_ -static int MYDEBUG = 0; -#else -static int MYDEBUG = 0; -#endif +QString salomeVersion() +{ + QString path( ::getenv( "GUI_ROOT_DIR" ) ); + if ( !path.isEmpty() ) + path += QDir::separator(); + path += QString( "bin/salome/VERSION" ); + + QFile vf( path ); + if ( !vf.open( IO_ReadOnly ) ) + return QString::null; + + QString line; + vf.readLine( line, 1024 ); + vf.close(); + + if ( line.isEmpty() ) + return QString::null; + + while ( !line.isEmpty() && line.at( line.length() - 1 ) == QChar( '\n' ) ) + line.remove( line.length() - 1, 1 ); + + QString ver; + int idx = line.findRev( ":" ); + if ( idx != -1 ) + ver = line.mid( idx + 1 ).stripWhiteSpace(); + + return ver; +} PyObject *salome_shared_modules_module = NULL; + void MessageOutput( QtMsgType type, const char *msg ) { switch ( type ) { @@ -112,6 +136,7 @@ protected: virtual SUIT_ResourceMgr* createResourceMgr( const QString& appName ) const { SUIT_ResourceMgr* resMgr = new SUIT_ResourceMgr( appName, QString( "%1Config" ) ); + resMgr->setVersion( salomeVersion() ); resMgr->setCurrentFormat( "xml" ); return resMgr; } @@ -138,8 +163,6 @@ private: }; - - int main(int argc, char **argv) { qInstallMsgHandler( MessageOutput ); @@ -147,6 +170,10 @@ int main(int argc, char **argv) /* * Python initialisation : only once */ + + char* _argv_0[512]; + strcpy( (char*)_argv_0, (char*)argv[0] ); + int _argc = 1; char* _argv[] = {""}; KERNEL_PYTHON::init_python(_argc,_argv); @@ -208,7 +235,9 @@ int main(int argc, char **argv) INFOS("Session activated, Launch IAPP..."); int qArgc = 1; + argv[0] = (char*)_argv_0; SALOME_QApplication* _qappl = new SALOME_QApplication( qArgc, argv ); + _qappl->setStyle( "salome" ); INFOS("creation QApplication"); _GUIMutex.unlock();