]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
no message
authorstv <stv@opencascade.com>
Wed, 22 Feb 2006 06:30:16 +0000 (06:30 +0000)
committerstv <stv@opencascade.com>
Wed, 22 Feb 2006 06:30:16 +0000 (06:30 +0000)
src/TOOLSGUI/ToolsGUI_HelpWindow.h
src/TOOLSGUI/ToolsGUI_IntervalWindow.h
src/TOOLSGUI/ToolsGUI_RegWidget.cxx
src/TOOLSGUI/ToolsGUI_RegWidget.h

index 22c06ca11f6370f805301e1240b9436b2de4da6f..61ff116c6a9cc1d45b1203bd4b6ff3425a5f72b7 100755 (executable)
@@ -36,6 +36,8 @@ class QTextView;
 
 class ToolsGUI_HelpWindow : public QMainWindow
 {
+  Q_OBJECT
+
 public:
   ToolsGUI_HelpWindow( QWidget* parent = 0, const char* name = 0);
   ~ToolsGUI_HelpWindow();
index 40c1f1af150fdafe7ab60e2ba5cdfcecdd31feb8..3b53d7de85c679e954d27ac778134e02704e4294 100755 (executable)
@@ -22,6 +22,8 @@ using namespace std;
 
 class ToolsGUI_IntervalWindow : public QDialog
 {
+  Q_OBJECT
+
 public:
   ToolsGUI_IntervalWindow( QWidget* parent = 0 );
   ~ToolsGUI_IntervalWindow();
index b36f8fdda643f1419467e0cacfa13f07dcfee36a..332454c73a90442eb9f1b11d58a2c4f0d1baa9d5 100755 (executable)
@@ -150,23 +150,23 @@ Registry::Components_var MakeRegistry( CORBA::ORB_var &orb )
   // Recuperation de la reference de l'objet
   CORBA::Object_var object = 0 ;
   try
-    {
-      SCRUTE(registryName) ;
-      object = naming.Resolve( registryName ) ;
-      if(CORBA::is_nil(object)) throw CommException( "unable to find the RegistryService" ) ;
-    }
-  catch( const ServiceUnreachable &ex )
-    {
-      MESSAGE( ex.what() )
-      exit( EXIT_FAILURE ) ;
-    }
-  catch( const CORBA::Exception &exx )
-    {
-      exit( EXIT_FAILURE ) ;
-    }
-  
+  {
+    SCRUTE(registryName) ;
+    object = naming.Resolve( registryName ) ;
+    if(CORBA::is_nil(object)) throw CommException( "unable to find the RegistryService" ) ;
+  }
+  catch( const ServiceUnreachable& )
+  {
+    MESSAGE( ex.what() )
+    exit( EXIT_FAILURE ) ;
+  }
+  catch( const CORBA::Exception& )
+  {
+    exit( EXIT_FAILURE ) ;
+  }
+
   // Specialisation de l'objet generique
-  
+
   return Registry::Components::_narrow( object ) ;
 }
 
@@ -782,29 +782,22 @@ QString findFile( QString filename )
   // Try CSF_SaloameResources env.var directory ( or directory list )
   cenv = getenv( "CSF_SalomeResources" );
   if ( cenv ) {
-    dir.sprintf( "%s", cenv );
-    if ( !dir.isEmpty() ) {
-      QStringList dirList = QStringList::split( SEPARATOR, dir, false ); // skip empty entries
-      for ( int i = 0; i < dirList.count(); i++ ) {
-       QFileInfo fileInfo( addSlash( dirList[ i ] ) + filename );
-       if ( fileInfo.isFile() && fileInfo.exists() )
-         return fileInfo.filePath();
+  dir.sprintf( "%s", cenv );
+  if ( !dir.isEmpty() )
+  {
+    QStringList dirList = QStringList::split( SEPARATOR, dir, false ); // skip empty entries
+    for ( int i = 0; i < (int)dirList.count(); i++ )
+    {
+           QFileInfo fileInfo( addSlash( dirList[ i ] ) + filename );
+           if ( fileInfo.isFile() && fileInfo.exists() )
+             return fileInfo.filePath();
       }
     }
   }
   return filename;
 }
+
 QString addSlash( const QString& path )
 {
   return Qtx::addSlash( path );
-//  if (!path.isNull()) {
-//#ifdef WNT
-//    QChar slash ('\\');
-//#else
-//    QChar slash ('/');
-//#endif
-//    if ( path.at(path.length()-1) != slash )
-//      return path + slash;
-//  }
-//  return path;
 }
index b2ff850876ad34a25794e6c066f028d77566b41b..6d3a66f04cf461e816fe0886145fc53b378426db 100755 (executable)
 //  Module : SALOME
 //  $Header$
 
-# ifndef __REGWIDGET_H__
-# define __REGWIDGET_H__
-# include <qapplication.h>
-# include <qmainwindow.h>
+#ifndef __REGWIDGET_H__
+#define __REGWIDGET_H__
+#include <qapplication.h>
+#include <qmainwindow.h>
 
 #include <SALOMEconfig.h>
 #include CORBA_CLIENT_HEADER(SALOME_Registry)
@@ -50,7 +50,10 @@ class QPushButton;
 class ToolsGUI_HelpWindow;
 class ToolsGUI_IntervalWindow;
 
-class Standard_EXPORT  ToolsGUI_InfoWindow : public QMainWindow {
+class Standard_EXPORT  ToolsGUI_InfoWindow : public QMainWindow
+{
+  Q_OBJECT
+
 public:
   ToolsGUI_InfoWindow( QWidget* parent = 0, const char* name = 0);
 
@@ -64,9 +67,8 @@ private:
   QTextView* myTextView;
 };
 
-class Standard_EXPORT  ToolsGUI_RegWidget : public QMainWindow
+class Standard_EXPORT ToolsGUI_RegWidget : public QMainWindow
 {
-  
   Q_OBJECT
 
 public:
@@ -114,13 +116,4 @@ private:
   static     ToolsGUI_RegWidget* myRegWidgetPtr;
 };
 
-# endif         /* # ifndef __REGWIDGET_H__ */
-
-
-
-
-
-
-
-
-
+#endif