Salome HOME
Second integration of PV3D viewer:
[modules/gui.git] / src / TOOLSGUI / ToolsGUI_RegWidget.cxx
old mode 100755 (executable)
new mode 100644 (file)
index b36f8fd..0bbba47
@@ -1,65 +1,49 @@
-//  SALOME RegistryDisplay : GUI for Registry server implementation
+// Copyright (C) 2007-2024  CEA, EDF, OPEN CASCADE
 //
-//  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
-// 
-//  This library is free software; you can redistribute it and/or 
-//  modify it under the terms of the GNU Lesser General Public 
-//  License as published by the Free Software Foundation; either 
-//  version 2.1 of the License. 
-// 
-//  This library is distributed in the hope that it will be useful, 
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
-//  Lesser General Public License for more details. 
-// 
-//  You should have received a copy of the GNU Lesser General Public 
-//  License along with this library; if not, write to the Free Software 
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
-// 
-//  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 //
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
 //
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
-//  File   : ToolsGUI_RegWidget.cxx
-//  Author : Pascale NOYRET, EDF
-//  Module : SALOME
-//  $Header$
-
-# include <qpushbutton.h>
-# include <qlistview.h>
-# include <qtabwidget.h> 
-# include <qstatusbar.h>
-# include <qtextview.h>
-# include <qtimer.h>
-# include <qinputdialog.h>
-# include <qtoolbar.h>
-# include <qdir.h>
-# include <qtooltip.h>
-
-# include "SALOME_NamingService.hxx"
-# include "ServiceUnreachable.hxx"
-# include "Utils_SINGLETON.hxx"
-# include "Utils_CommException.hxx"
-
-# include "utilities.h"
-# include "OpUtil.hxx"
 
 # include "ToolsGUI_RegWidget.h"
-# include "ToolsGUI_HelpWindow.h"
-# include "ToolsGUI_IntervalWindow.h"
 
-# include "Qtx.h"
+#include <QApplication>
+#include <QInputDialog>
+#include <QMenuBar>
+#include <QStatusBar>
+#include <QTabWidget>
+#include <QTextEdit>
+#include <QTimer>
+#include <QToolBar>
+#include <QTreeWidget>
+#include <QVBoxLayout>
 
-using namespace std;
+#include <Qtx.h>
 
-typedef int PIXELS;
-ToolsGUI_RegWidget* ToolsGUI_RegWidget::myRegWidgetPtr = 0;
+#include <SALOME_NamingService.hxx>
+#include <Utils_SINGLETON.hxx>
+#include <Utils_CommException.hxx>
 
-QString addSlash( const QString& );
-QString findFile( QString filename );
+#define MARGIN_SIZE      11
+#define SPACING_SIZE      6
+#define MIN_SPIN_WIDTH  100 
 
-#define BOLD( text ) ( QString( "<b>" ) + QString( text ) + QString( "</b>" ) )
+#define BOLD( text ) QString( "<b>%1</b>" ).arg( QString( text ) )
 
 static const char* const time_data[] = { 
 "16 16 6 1",
@@ -136,675 +120,301 @@ static const char* const refresh_data[] = {
 "......aaaaa....."};
 
 /*!
-  Creates components list
+  \brief Get access to the Registry service
+  \internal
+  \param orb CORBA ORB reference
+  \return reference to the Registry service
 */
-
-Registry::Components_var MakeRegistry( CORBA::ORB_var &orb )
+static Registry::Components_ptr GetRegistry( CORBA::ORB_ptr orb )
 {
-
-  const char *registryName="Registry" ;
+  static const char* registryName = "Registry";
+  Registry::Components_var aRegistry;
   
-  SALOME_NamingService &naming = *SINGLETON_<SALOME_NamingService>::Instance() ;
-  naming.init_orb( orb ) ;
+  SALOME_NamingService& naming = *SINGLETON_<SALOME_NamingService>::Instance();
+  naming.init_orb( orb );
   
-  // Recuperation de la reference de l'objet
-  CORBA::Object_var object = 0 ;
+  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 ) ;
-    }
-  
-  // Specialisation de l'objet generique
-  
-  return Registry::Components::_narrow( object ) ;
+  {
+    object = naming.Resolve( registryName );
+    if ( CORBA::is_nil( object ) ) throw CommException( "Unable to find the Registry service" );
+    aRegistry = Registry::Components::_narrow( object );
+  }
+  catch( const CORBA::Exception& /*ex*/ ) //!< TODO: unused variable
+  {
+    MESSAGE( "Error: can't access Registry server" );
+  }
+
+  return aRegistry._retn();
 }
 
 /*!
-  Only one global registry window should exist at the moment
-  This method creates registry window if necessary and returns it
-  [ static ] 
+  \class ToolsGUI_RegWidget
+  \brief SALOME Registry tool window.
+*/
+
+//! The only instance of Registry window
+ToolsGUI_RegWidget* ToolsGUI_RegWidget::myRegWidgetPtr = 0;
+
+/*!
+  \brief Create/get the only instance of the Registry window.
+  \param orb CORBA ORB reference
+  \param parent parent widget
 */
-ToolsGUI_RegWidget* ToolsGUI_RegWidget::GetRegWidget( CORBA::ORB_var &orb , QWidget *parent, const char *name )
+ToolsGUI_RegWidget* ToolsGUI_RegWidget::GetRegWidget( CORBA::ORB_ptr orb,
+                                                      QWidget* parent )
 {
   if ( !myRegWidgetPtr ) 
-    myRegWidgetPtr = new ToolsGUI_RegWidget( orb, parent, name );
+    myRegWidgetPtr = new ToolsGUI_RegWidget( orb, parent );
   return myRegWidgetPtr;
 }
 
 /*!
-  Constructor  
+  \brief Constructor
+  \param orb CORBA ORB reference
+  \param parent parent widget
 */
-ToolsGUI_RegWidget::ToolsGUI_RegWidget(CORBA::ORB_var &orb, QWidget *parent, const char *name ) 
-     : QMainWindow( parent, name, WType_TopLevel | WDestructiveClose ),
-       _VarComponents( MakeRegistry(orb) ),
-       _clients(0), _history(0), _parent( parent ),
-       _tabWidget(0), _refresh(0), _interval(0),
-       myInfoWindow(0), myHelpWindow(0), myIntervalWindow(0)
+ToolsGUI_RegWidget::ToolsGUI_RegWidget( CORBA::ORB_ptr orb, QWidget* parent ) 
+: QMainWindow( parent )
 {
-   QString aFile = findFile("default.png");
- /* char* dir = getenv( "CSF_ResourcesDefaults" );
-  QString path( "" );
-  if ( dir ) {
-    QDir qDir( dir );
-    path = qDir.filePath( "default.png" );
-  }*/
-  QPixmap pm ( aFile );
-  if ( !pm.isNull() )
-    setIcon( pm );
-
-  // pixmap for buttons
-  QPixmap image_refresh ( ( const char** ) refresh_data );
-  QPixmap image_interval( ( const char** ) time_data );
-  QPixmap image_close   ( ( const char** ) close_data );
-
-  // Buttons definition
-  QToolBar* topbar = new QToolBar( tr("Toolbar"), this );
-  setDockEnabled( topbar, DockTornOff, false );
-  setDockMenuEnabled( false );
-
-  _refresh = new QPushButton( tr( "Refresh" ), topbar );
-  _refresh->setIconSet( image_refresh );
-  _refresh->setFocusPolicy( NoFocus );
-  connect( _refresh, SIGNAL( clicked() ), this, SLOT( slotListeSelect() ) );
-  QToolTip::add( _refresh, "", toolTipGroup(), tr("Immediately updates list of components") );
-  
-  /* PAL5540 - this button is needless
-  QPushButton* help = new QPushButton( tr( "Help" ), topbar );
-  connect( help, SIGNAL( clicked() ), this, SLOT( slotHelp() ) );
-  QToolTip::add( help, "", toolTipGroup(), tr("Opens Help window") );
-  */
-  
-  _interval = new QPushButton( tr( "Interval" ), topbar );
-  _interval->setIconSet( image_interval );
-  _interval->setFocusPolicy( NoFocus );
-  connect( _interval, SIGNAL( clicked() ), this, SLOT( slotSelectRefresh() ) );
-  QToolTip::add( _interval, "", toolTipGroup(), tr("Changes refresh interval") );
+  myOrb = CORBA::ORB::_duplicate( orb );
+
+  // set window attributes
+  setAttribute( Qt::WA_DeleteOnClose );
+  setWindowTitle( tr( "TLT_REGISTRY" ) );
+
+  // show status bar
+  statusBar();
+
+  // get main menu bar
+  QMenuBar* mainMenu = menuBar();
   
-  topbar->addSeparator();
-  _close = new QPushButton( tr("Close"), topbar );
-  _close->setIconSet( image_close );
-  _close->setFocusPolicy( NoFocus );
-  connect( _close, SIGNAL( clicked() ), this, SLOT( close() ) );
-  QToolTip::add( _close, "", toolTipGroup(), tr("Closes Registry window") );
+  // add 'Actions' menu
+  QMenu* m = mainMenu->addMenu( tr( "MNU_ACTIONS" ) );
+  // add 'Actions' toolbar
+  QToolBar* tb = addToolBar( tr( "TB_ACTIONS" ) );
+
+  // create actions
+  myActions[Refresh] = new QAction( QPixmap( refresh_data ), tr( "MEN_REFRESH" ), this );
+  myActions[Refresh]->setStatusTip( tr( "STB_REFRESH" ) );
+  connect( myActions[Refresh], SIGNAL( triggered() ), this, SLOT( refresh() ) );
+  m->addAction( myActions[Refresh] );
+  tb->addAction( myActions[Refresh] );
   
-  // Display area and associated slots definition
-  _tabWidget = new QTabWidget( this );
-  _clients   = new QListView( _tabWidget );
-  SetListe();
-  _history   = new QListView( _tabWidget );
-  SetListeHistory();
+  myActions[Interval] = new QAction( QPixmap( time_data ), tr( "MEN_INTERVAL" ), this );
+  myActions[Interval]->setStatusTip( tr( "STB_INTERVAL" ) );
+  connect( myActions[Interval], SIGNAL( triggered() ), this, SLOT( refreshInterval() ) );
+  m->addAction( myActions[Interval] );
+  tb->addAction( myActions[Interval] );
   
-  _tabWidget->addTab( _clients, tr( "Running" ) );
-  _tabWidget->addTab( _history, tr( "History" ) );
-  connect( _tabWidget, SIGNAL( currentChanged( QWidget* )), this, SLOT( slotListeSelect() ) );
-  connect( _clients,   SIGNAL( clicked( QListViewItem* ) ),        this, SLOT( slotClientChanged( QListViewItem* ) ) );
-  connect( _history,   SIGNAL( clicked( QListViewItem* ) ),        this, SLOT( slotHistoryChanged( QListViewItem* ) ) );
-  setCentralWidget( _tabWidget );
+  m->addSeparator();
+  tb->addSeparator();
+
+  myActions[Close] = new QAction( QPixmap( close_data ), tr( "MEN_CLOSE" ), this );
+  myActions[Close]->setStatusTip( tr( "STB_CLOSE" ) );
+  connect( myActions[Close], SIGNAL( triggered() ), this, SLOT( close() ) );
+  m->addAction( myActions[Close] );
+  tb->addAction( myActions[Close] );
+
+  // central widget
+  setCentralWidget( new QWidget( this ) );
+
+  // Create tab widget: SALOME serives list (running and history)
+  QTabWidget* tabWidget = new QTabWidget( centralWidget() );
+
+  myViews[Clients]   = new QTreeWidget( tabWidget );
+  myViews[Clients]->setColumnCount( 6 );
+  myViews[Clients]->setAllColumnsShowFocus( true );
+  myViews[Clients]->setRootIsDecorated( false );
+  QStringList runningLabels;
+  runningLabels << tr( "HDR_COMPONENT" ) << tr( "HDR_PID" )     << tr( "HDR_USERNAME" )
+               << tr( "HDR_HOSTNAME" )  << tr( "HDR_STARTED" ) << tr( "HDR_HELLO" );
+  myViews[Clients]->setHeaderLabels( runningLabels );
+  tabWidget->addTab( myViews[Clients], tr( "TAB_RUNNING" ) );
+
+  myViews[History]   = new QTreeWidget( tabWidget );
+  myViews[History]->setColumnCount(6);
+  myViews[History]->setAllColumnsShowFocus( true );
+  myViews[History]->setRootIsDecorated( false );
+  QStringList historyLabels;
+  historyLabels << tr( "HDR_COMPONENT" ) << tr( "HDR_PID" )     << tr( "HDR_USERNAME" )
+               << tr( "HDR_HOSTNAME" )  << tr( "HDR_STARTED" ) << tr( "HDR_FINISHED" );
+  myViews[History]->setHeaderLabels( historyLabels );
+  tabWidget->addTab( myViews[History], tr( "TAB_HISTORY" ) );
+
+  connect( tabWidget, SIGNAL( currentChanged( int ) ), this, SLOT( refresh() ) );
+  connect( myViews[Clients], SIGNAL( itemActivated( QTreeWidgetItem*, int ) ), 
+          this,             SLOT( showDetails( QTreeWidgetItem*, int ) ) );
+  connect( myViews[History], SIGNAL( itemActivated( QTreeWidgetItem*, int ) ),
+          this,             SLOT( showDetails( QTreeWidgetItem*, int ) ) );
+
+  // create information window
+  myDetails = new QTextEdit( centralWidget() );
+  myDetails->setReadOnly( true );
+  myDetails->setMinimumHeight( 100 );
+
+  // layout widgets
+  QVBoxLayout* topLayout = new QVBoxLayout( centralWidget() );
+  topLayout->setMargin( 0 );
+  topLayout->setSpacing( SPACING_SIZE );
+  topLayout->addWidget( tabWidget );
+  topLayout->addWidget( myDetails );
   
-  // Timer definition (used to automaticaly refresh the display area)
-  _counter = new QTimer( this );
-  connect( _counter, SIGNAL( timeout() ), this, SLOT( slotListeSelect() ) );
-  myRefreshInterval = 10;
-  _counter->start( myRefreshInterval * 1000 );
+  // install auto-update timer
+  myTimer = new QTimer( this );
+  connect( myTimer, SIGNAL( timeout() ), this, SLOT( refresh() ) );
+  myTimer->start( 10000 ); // 10 seconds by default
   
-  PIXELS xpos    = 160 ;
-  PIXELS ypos    = 100 ;
-  PIXELS largeur = 800 ;
-  PIXELS hauteur = 350 ;
-  setGeometry( xpos, ypos, largeur, hauteur ) ;
-  setCaption( name ) ;
-  statusBar()->message("    ");
+  // resize window and set its position
+  resize( 800, 400 );
+  Qtx::alignWidget( (QWidget*)this, (QWidget*)QApplication::desktop(), Qtx::AlignCenter );
+
+  // refresh registry information
+  refresh();
 }
 
 /*!
-  Destructor
+  \brief Destructor
 */
 ToolsGUI_RegWidget::~ToolsGUI_RegWidget()
 {
-  MESSAGE("Debut du Destructeur");
-  _counter->stop();
   myRegWidgetPtr = 0;
-};
-
-/*!
-  Event filter
-*/
-bool ToolsGUI_RegWidget::eventFilter( QObject* object, QEvent* event )
-{
-  if ( object ) {
-    if ( object == myHelpWindow && event->type() == QEvent::Close ) {
-      myHelpWindow = 0;
-    }
-    else if ( object == myInfoWindow && event->type() == QEvent::Close ) {
-      myInfoWindow = 0;
-    }
-    else if ( object == myIntervalWindow && event->type() == QEvent::Close ) {
-      myIntervalWindow = 0;
-    }
-    else if ( object == _clients && event->type() == QEvent::KeyPress ) {
-      QKeyEvent* ke = (QKeyEvent*)event;
-      if ( ke->key() == Key_Enter || ke->key() == Key_Return ) {
-       slotClientChanged( _clients->currentItem() );
-      }
-    }
-    else if ( object == _history && event->type() == QEvent::KeyPress ) {
-      QKeyEvent* ke = (QKeyEvent*)event;
-      if ( ke->key() == Key_Enter || ke->key() == Key_Return ) {
-       slotHistoryChanged( _history->currentItem() );
-      }
-    }
-  }
-  return QMainWindow::eventFilter( object, event );
 }
 
 /*!
-  Searches item in the list and returns it's index or -1 if not found
+  \brief Get description text, containing information about the service.
+  \param c_info client info data
+  \return formatted client description
 */
-int ToolsGUI_RegWidget::numitem(const QString &name, const QString &pid, const QString &machine,const Registry::AllInfos *listclient)
+QString ToolsGUI_RegWidget::getDetails( const Registry::Infos& c_info )
 {
-  BEGIN_OF("numitem");
-  for (CORBA::ULong i=0; i<listclient->length(); i++)
-    {       
-      const Registry::Infos & c_info=(*listclient)[i];
-      ASSERT( c_info.name!=NULL);
-      QString b;
-      b.setNum(int(c_info.pid));
-      if ( (name.compare(QString(c_info.name)) == 0) && 
-         (machine.compare(QString(c_info.machine)) == 0) && 
-         (pid.compare(b) == 0) )
-       {
-         END_OF("numitem");
-         return i;
-       }
-    }
-  END_OF("numitem");
-  return -1;
-}
-
-/*!
-  Returns text, containing information about client [ static ]
-*/
-QString ToolsGUI_RegWidget::setlongText( const Registry::Infos &c_info)
-{
-  BEGIN_OF("setlongText");
-  ASSERT( c_info.name != NULL );
-  QString a = QString( "<hr><h2>" ) + tr( "Code" ) + QString( " : " );
-  a.append( QString( c_info.name ) );
-  a.append( "</h1><hr><br>" );
-  a.append( tr( "Process Id" ) + QString( " : " ) );
-  a.append( BOLD( QString::number( int( c_info.pid ) ) ) );
-  a.append( QString( " " ) + tr( "on machine" ) + QString( " " ) );
-  a.append( BOLD( c_info.machine ) ); 
-  a.append( QString( " " ) + tr( "ip address" ) + QString( " : " ) );
-  a.append( BOLD( c_info.adip ) );
-  a.append( "<br>" );
-  
-  a.append( tr( "launched by user" ) + QString( " " ) );
-  a.append( BOLD( c_info.pwname ) );
-  a.append( QString( " ( " ) + tr( "pid" ) + QString( " : " ) );
-  a.append( BOLD( QString::number( int( c_info.uid ) ) ) );
-  a.append( QString( " )<br> " ) + tr( "in directory" ) + QString( " " ));
-  a.append( BOLD( c_info.cdir ) );
-  
-  a.append( QString( "<br>" ) + tr( "begins" ) + QString( " " ) );
-  char * t1 = (char * )duplicate(ctime(&c_info.tc_start));
-  t1 [strlen(t1) -1 ] = ' ';
-  a.append( BOLD( t1 ) ); 
-  delete [] t1;
-  a.append( "<br>" );
-  
-  if (c_info.tc_hello != 0 )
-    {
-      char * t2 = (char * )duplicate(ctime(&c_info.tc_hello));
-      t2 [strlen(t2) -1 ] = ' ';
-      a.append( tr( "last signal" ) + QString(" : ") ); 
-      a.append( BOLD( t2 ) ); 
+  QString a;
+  if ( c_info.name != NULL ) {
+    time_t aStarted( c_info.tc_start );
+    time_t aLastPing( c_info.tc_hello );
+    time_t aFinished( c_info.tc_end );
+
+    a.append( BOLD( tr( "INFO_SERVICE" ).arg( QString( c_info.name ) ) ) );
+    a.append( "<br>" );
+    a.append( "<br>" );
+    a.append( tr( "INFO_PROCESS" ).arg( BOLD( QString::number( c_info.pid ) ),
+                                       BOLD( c_info.machine ),
+                                       BOLD( c_info.adip ),
+                                       BOLD( c_info.pwname ),
+                                       BOLD( QString::number( c_info.uid ) ),
+                                       BOLD( c_info.cdir ) ) );
+    a.append( "<br>" );
+    a.append( "<br>" );
+    a.append( tr( "INFO_STARTED" ).arg( BOLD( QString( ctime( &aStarted ) ).trimmed() ) ) );
+    a.append( "<br>" );
+    if ( c_info.tc_hello != 0 ) {
+      a.append( tr( "INFO_LAST_PING" ).arg( BOLD( QString( ctime( &aLastPing ) ).trimmed() ) ) );
       a.append( "<br>" );
-      delete [] t2;
     }
-  if ((c_info.tc_end - c_info.difftime) != 0)
-    {
-      char * t3 = (char * )duplicate(ctime(&c_info.tc_end));
-      t3 [strlen(t3) -1 ] = ' ';
-      a.append( tr( "ends" ) + QString( " " ) ); 
-      a.append( BOLD( t3 ) ); 
+    if ( c_info.tc_end - c_info.difftime != 0 ) {
+      a.append( tr( "INFO_FINISHED" ).arg( BOLD( QString( ctime( &aFinished ) ).trimmed() ) ) );
       a.append( "<br>" );
-      delete [] t3;
     }
-  else
-    {
-      a.append( tr( "still running" ) + QString( "<br>" ) );
+    else {
+      a.append( tr( "INFO_RUNNING" ) );
+      a.append( "<br>" );
     }
-  
-  SCRUTE(c_info.difftime);
-  if (c_info.difftime!= 0)
-    {
-      a.append( QString( "(" ) + tr( "Time on" ) + QString( " " ) ); 
-      a.append( BOLD( c_info.machine ) ); 
-      a.append( QString( " " ) + tr( "differs from server's time. The difference is" ) + QString( " " )); 
-      a.append( BOLD( QString::number( int( c_info.difftime ) ) ) );
-      a.append( QString( " " ) + tr( "seconds" ) + QString( ")<br>" ) );
+    if ( c_info.difftime != 0 ) {
+      a.append( tr( "INFO_TIME_DIFF" ).arg( BOLD( c_info.machine ), BOLD( QString::number( c_info.difftime ) ) ) ); 
+      a.append( "<br>" );
     }
-  END_OF("setlongText");  
+    a.append( "</code>" ); // ASV: 28.07.06 : added <code> tags to make the text font be 
+                           // fixed width (looks much better on Windows)
+  }
   return a;
-  
 }
 
 /*!
-  Close event
+  \brief Refresh registry information
 */
-void ToolsGUI_RegWidget::closeEvent( QCloseEvent *e)
+void ToolsGUI_RegWidget::refresh()
 {
-  BEGIN_OF("closeEvent");
-  if ( myInfoWindow )
-    myInfoWindow->close();
-  if ( myHelpWindow )
-    myHelpWindow->close();
-  if (myIntervalWindow)
-    myIntervalWindow->close();
-  e->accept();
-  END_OF("closeEvent");
-};
-
-/*!
-  Setups Clients list
-*/
-void ToolsGUI_RegWidget::SetListe()
-{
-  BEGIN_OF("SetListe");
-  _clients->installEventFilter( this );
-  _clients->setAllColumnsShowFocus( true );
-  _clients->addColumn( tr( "Component" ), -1);
-  _clients->addColumn( tr( "PID" ), -1 );
-  _clients->addColumn( tr( "User Name" ), -1 );
-  _clients->addColumn( tr( "Machine" ), -1 );
-  _clients->addColumn( tr( "begins" ), -1 );
-  _clients->addColumn( tr( "hello" ) , -1 );
-  _clients->setColumnAlignment( 1, Qt::AlignRight );
-  END_OF("SetListe");
-}
-
-/*!
-  Setups History list
-*/
-void ToolsGUI_RegWidget::SetListeHistory()
-{
-   BEGIN_OF("SetListeHistory")
-  _history->installEventFilter( this );
-  _history->setAllColumnsShowFocus( true );
-  _history->addColumn( tr( "Component" ), -1);
-  _history->addColumn( tr( "PID" ), -1 );
-  _history->addColumn( tr( "User Name" ), -1 );
-  _history->addColumn( tr( "Machine" ), -1 );
-  _history->addColumn( tr( "begins" ), -1 );
-  _history->addColumn( tr( "ends" ), -1 );
-  _history->setColumnAlignment( 1, Qt::AlignRight );
-   END_OF("SetListeHistory")
-}
-
-/*!
-  Updates History list
-*/
-void ToolsGUI_RegWidget::InfoHistory()
-{
-
-  BEGIN_OF("InfoHistory")
-    _history->clear();
-  try
-    {
-      _serverhistory = _VarComponents->history();
-      for (CORBA::ULong i=0; i<_serverhistory->length(); i++)
-       {       
-         const Registry::Infos & c_info=(*_serverhistory)[i];
-         ASSERT( c_info.name!=NULL);
-         QString a;
-         a.setNum(int(c_info.pid));
-         char * t1 = (char * )duplicate(ctime(&c_info.tc_start));
-         t1 [strlen(t1) -1 ] = ' ';
-         char * t2 = (char * )duplicate(ctime(&c_info.tc_end));
-         t2 [strlen(t2) -1 ] = ' ';
-         QListViewItem * item = new QListViewItem(_history, QString(c_info.name),\
-                                                  a, QString(c_info.pwname), QString(c_info.machine), \
-                                                  QString(t1), QString(t2));
-         item=0 ;
-         delete [] t1;
-         delete [] t2;
-         
-       }
-    }
-  catch( ... )
-    {
-      _interval->setDisabled( TRUE ) ;
-      _refresh->setDisabled( TRUE ) ;
-      _counter->stop();
-      MESSAGE("Sorry, No more Registry Server") ;
-      statusBar()->message( tr( "Sorry, No more Registry Server" ) ) ;
+  try {
+    // get reference to the Registry service
+    Registry::Components_var aRegistry = GetRegistry( myOrb );
+    if ( aRegistry->_is_nil() ) {
+      myActions[Interval]->setDisabled( true );
+      myActions[Refresh]->setDisabled( true );
+      myTimer->stop();
+      MESSAGE( "Sorry, no more Registry Server" );
+      statusBar()->showMessage( tr( "ERR_NO_REGISTRY" ) );
+      return;
     }
-  END_OF("InfoHistory")
-}
 
-/*!
-  Updates clients list
-*/
-void ToolsGUI_RegWidget::InfoReg()
-{
-  BEGIN_OF("InfoReg")
-  _clients->clear();
-  try
-    {
-      _serverclients = _VarComponents->getall();
-      for (CORBA::ULong i=0; i<_serverclients->length(); i++)
-       {       
-         const Registry::Infos & c_info=(*_serverclients)[i];
-         ASSERT( c_info.name!=NULL);
-         QString a;
-         a.setNum(int(c_info.pid));
-         char * t1 = (char * )duplicate(ctime(&c_info.tc_start));
-         t1 [strlen(t1) -1 ] = ' ';
-         char * t2 = (char * )duplicate(ctime(&c_info.tc_hello));
-         t2 [strlen(t2) -1 ] = ' ';
-         QListViewItem * item = new QListViewItem(_clients, QString(c_info.name),\
-                                                  a, QString(c_info.pwname), QString(c_info.machine), \
-                                                  QString(t1), QString(t2));
-         item=0 ;
-         delete [] t1;
-         delete [] t2;
-         
-       }
-    }
-  catch( ... )
-    {
-      _interval->setDisabled( TRUE ) ;
-      _refresh->setDisabled( TRUE ) ;
-      _counter->stop();
-      MESSAGE("Sorry, No more Registry Server") ;
-      statusBar()->message( tr( "Sorry, No more Registry Server" ) ) ;
+    myData[Clients] = aRegistry->getall();
+    myData[History] = aRegistry->history();
+
+    // update current services list
+    myViews[Clients]->clear();
+    for ( int i = 0; i < (int)myData[Clients]->length(); i++ ) { //!< TODO: mismatch signed/unsigned
+      const Registry::Infos& c_info = (*myData[Clients])[i];
+      time_t aStarted  = time_t( c_info.tc_start );
+      time_t aLastPing = time_t( c_info.tc_hello );
+      QStringList aData;
+      aData << QString( c_info.name )
+           << QString::number( c_info.pid )
+           << QString( c_info.pwname )
+           << QString( c_info.machine )
+           << QString( ctime( &aStarted ) ).trimmed()
+           << QString( ctime( &aLastPing ) ).trimmed();
+      myViews[Clients]->addTopLevelItem( new QTreeWidgetItem( aData ) );
     }
-  END_OF("InfoReg")
-}
 
-/*!
-  Called when <Refresh> button is clicked
-*/
-void ToolsGUI_RegWidget::slotListeSelect()
-{
-  try
-    {
-      ASSERT(_tabWidget->currentPage() != NULL);
-      if (_tabWidget->currentPage () == _clients) InfoReg();
-      else if (_tabWidget->currentPage () == _history) InfoHistory();
+    // update history
+    myViews[History]->clear();
+    for ( int i = 0; i < (int)myData[History]->length(); i++ ) {  //!< TODO: mismatch signed/unsigned     
+      const Registry::Infos& c_info = (*myData[History])[i];
+      time_t aStarted  = time_t( c_info.tc_start );
+      time_t aFinished = time_t( c_info.tc_end );
+      QStringList aData;
+      aData << QString( c_info.name )
+           << QString::number( c_info.pid )
+           << QString( c_info.pwname )
+           << QString( c_info.machine )
+           << QString( ctime( &aStarted ) ).trimmed()
+           << QString( ctime( &aFinished ) ).trimmed();
+      myViews[History]->addTopLevelItem( new QTreeWidgetItem( aData ) );
     }
-  catch( ... )
-    {
-      MESSAGE("Sorry, No more Registry Server") ;
-      statusBar()->message( tr( "Sorry, No more Registry Server" ) ) ;
-    }
-}
-
-/*!
-  Called when <Interval> button is clicked (changing refresh interval)
-*/
-void ToolsGUI_RegWidget::slotSelectRefresh()
-{
-  BEGIN_OF("slotSelectRefresh");
-  myIntervalWindow = new ToolsGUI_IntervalWindow(this);
-  myIntervalWindow->installEventFilter( this );
-  myIntervalWindow->setValue(myRefreshInterval);
-  myIntervalWindow->show();
-  connect( myIntervalWindow->Cancel(), SIGNAL( clicked() ), myIntervalWindow, SLOT( close() ) );
-  connect( myIntervalWindow->Ok(), SIGNAL( clicked() ), this, SLOT( slotIntervalOk() ) );
-  END_OF("slotSelectRefresh");
-}
-
-void ToolsGUI_RegWidget::slotIntervalOk()
-{
-  BEGIN_OF("slotIntervalOk");
-  myRefreshInterval = myIntervalWindow->getValue();
-  _counter->changeInterval( myRefreshInterval * 1000 );
-  SCRUTE(myRefreshInterval);
-  myIntervalWindow->close();
-  END_OF("slotIntervalOk");
-}
-/*!
-  Called when <Help> button is clicked
-*/
-void ToolsGUI_RegWidget::slotHelp()
-{
-  BEGIN_OF("slotHelp()");
-
-  if ( !myHelpWindow ) {
-    myHelpWindow  = new ToolsGUI_HelpWindow( this );
-    myHelpWindow->installEventFilter( this );
   }
-  myHelpWindow->show();
-  myHelpWindow->raise();
-  myHelpWindow->setActiveWindow();
-  
-  END_OF("slotHelp()") ;
-}
-
-/*!
-  Called when user clicks on item in <Running> list
-*/
-void ToolsGUI_RegWidget::slotClientChanged( QListViewItem* item )
-{
-  BEGIN_OF("slotClientChanged()") ;
-
-  if ( item <= 0)
-    return;
-
-  blockSignals( true ); // for sure that item will not be deleted when refreshing
-
-  int numeroItem = numitem(item->text(0), item->text(1), item->text(3), _serverclients);
-  SCRUTE(numeroItem) ;
-  SCRUTE(item->text(1)) ;
-  
-  ASSERT(numeroItem>=0) ;
-  ASSERT((size_t)numeroItem<_serverclients->length()) ;
-  const Registry::Infos & c_info=(*_serverclients)[numeroItem];
-  ASSERT( c_info.name!=NULL);
-  
-  if ( !myInfoWindow ) {
-    myInfoWindow  = new ToolsGUI_InfoWindow( this );
-    myInfoWindow->installEventFilter( this );
-  }
-  QString a = tr( "More about" ) + QString( " " ) + QString( c_info.name );
-  myInfoWindow->setCaption(a);
-  myInfoWindow->setText( ToolsGUI_RegWidget::setlongText( c_info) );
-  myInfoWindow->show();
-  myInfoWindow->raise();
-  myInfoWindow->setActiveWindow();
-
-  blockSignals( false ); // enabling signals again
-
-  END_OF("slotClientChanged()") ;
-  return ;
-}
-
-/*!
-  Called when user clicks on item in <History> list
-*/
-void ToolsGUI_RegWidget::slotHistoryChanged( QListViewItem* item )
-{
-
-  BEGIN_OF("slotHistoryChanged()") ;
-  
-  if ( item <= 0)
-    return;
-
-  blockSignals( true ); // for sure that item will not be deleted when refreshing
-
-  int numeroItem = numitem(item->text(0), item->text(1), item->text(3), _serverhistory);
-  
-  SCRUTE(numeroItem) ;
-  SCRUTE(item->text(1)) ;
-  ASSERT(numeroItem>=0) ;
-  ASSERT((size_t)numeroItem<_serverhistory->length()) ;
-  const Registry::Infos & c_info=(*_serverhistory)[numeroItem];
-  ASSERT( c_info.name!=NULL);
-  
-  if ( !myInfoWindow ) {
-    myInfoWindow  = new ToolsGUI_InfoWindow( this );
-    myInfoWindow->installEventFilter( this );
+  catch( ... ) {
+    myActions[Interval]->setDisabled( true );
+    myActions[Refresh]->setDisabled( true );
+    myTimer->stop();
+    MESSAGE( "Sorry, no more Registry Server" );
+    statusBar()->showMessage( tr( "ERR_NO_REGISTRY" ) );
   }
-  QString a = tr( "More about" ) + QString( " " ) + QString( c_info.name );
-  myInfoWindow->setCaption(a);
-  myInfoWindow->setText( ToolsGUI_RegWidget::setlongText( c_info ) );
-  myInfoWindow->show();
-  myInfoWindow->raise();
-  myInfoWindow->setActiveWindow();
-
-  blockSignals( false ); // enabling signals again
-
-  END_OF("slotHistoryChanged()") ;
-  return ;
 }
 
 /*!
-  Constructor
+  \brief Called when \c Interval button is clicked (open dialog box to 
+  change refresh interval).
 */
-ToolsGUI_InfoWindow::ToolsGUI_InfoWindow( QWidget* parent, const char* name )
-     : QMainWindow( parent, name, WType_TopLevel | WDestructiveClose )
+void ToolsGUI_RegWidget::refreshInterval()
 {
-  BEGIN_OF("InfoWindow");
-  myTextView = new QTextView( this, "myTextView" );
-  setCentralWidget( myTextView );
-  setMinimumSize( 450, 250 );
-  END_OF("InfoWindow");
+  bool ok;
+  int sec = QInputDialog::getInt( this, tr( "TLT_REFRESH_INTERVAL" ), tr( "LAB_REFRESH_INTERVAL" ), 
+                                 myTimer->interval() / 1000, 1, 24 * 60 * 60, 1, &ok );
+  if ( ok )
+    myTimer->start( sec * 1000 );
 }
 
 /*!
-  Sets text
+  \brief Show details about the chosen service.
+  \param item item activated by the user
+  \param column column index
 */
-void ToolsGUI_InfoWindow::setText( const QString& text )
-{
-  myTextView->setText( text );
-}
-
-/*!
-  Key press event
-*/
-void ToolsGUI_InfoWindow::keyPressEvent( QKeyEvent * e )
-{
-  QMainWindow::keyPressEvent( e );
-  if ( e->key() == Key_Escape )
-    close();
-}
-
-static const char* SEPARATOR    = ":";
-
-QString findFile( QString filename )
-{
-  QString dir;
-  char* cenv;
-  
-  // Try ${HOME}/.salome/resources directory
-  cenv = getenv( "HOME" );
-  if ( cenv ) {
-    dir.sprintf( "%s", cenv );
-    if ( !dir.isEmpty() ) {
-      dir = addSlash(dir) ;
-      dir = dir + ".salome" ;
-      dir = addSlash(dir) ;
-      dir = dir + "resources" ;
-      dir = addSlash(dir) ;
-      QFileInfo fileInfo( dir + filename );
-      if ( fileInfo.isFile() && fileInfo.exists() )
-       return fileInfo.filePath();
-    }
-  }
-  // Try ${SALOME_SITE_DIR}/share/salome/resources directory
-  cenv = getenv( "SALOME_SITE_DIR" );
-  if ( cenv ) {
-    dir.sprintf( "%s", cenv );
-    if ( !dir.isEmpty() ) {
-      dir = addSlash(dir) ;
-      dir = dir + "share" ;
-      dir = addSlash(dir) ;
-      cenv = getenv("SALOME_SITE_NAME");
-      if (cenv)  dir = dir + cenv;
-      else       dir = dir + "salome" ;
-      dir = addSlash(dir) ;
-      dir = dir + "resources" ;
-      dir = addSlash(dir) ;
-      QFileInfo fileInfo( dir + filename );
-      if ( fileInfo.isFile() && fileInfo.exists() )
-       return fileInfo.filePath();
-    }
-  }
-  // Try ${KERNEL_ROOT_DIR}/share/salome/resources directory
-  cenv = getenv( "KERNEL_ROOT_DIR" );
-  if ( cenv ) {
-    dir.sprintf( "%s", cenv );
-    if ( !dir.isEmpty() ) {
-      dir = addSlash(dir) ;
-      dir = dir + "share" ;
-      dir = addSlash(dir) ;
-      dir = dir + "salome" ;
-      dir = addSlash(dir) ;
-      dir = dir + "resources" ;
-      dir = addSlash(dir) ;
-      QFileInfo fileInfo( dir + filename );
-      if ( fileInfo.isFile() && fileInfo.exists() )
-       return fileInfo.filePath();
-    }
-  }
-
-  //SRN Added support for SALOMEGUI
-  cenv = getenv( "SALOMEGUI_ROOT_DIR" );
-  if ( cenv ) {
-    dir.sprintf( "%s", cenv );
-    if ( !dir.isEmpty() ) {
-      dir = addSlash(dir) ;
-      dir = dir + "share" ;
-      dir = addSlash(dir) ;
-      dir = dir + "salome" ;
-      dir = addSlash(dir) ;
-      dir = dir + "resources" ;
-      dir = addSlash(dir) ;
-      QFileInfo fileInfo( dir + filename );
-      if ( fileInfo.isFile() && fileInfo.exists() )
-       return fileInfo.filePath();
-    }
-  }
-
-  // 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();
-      }
-    }
-  }
-  return filename;
-}
-QString addSlash( const QString& path )
+void ToolsGUI_RegWidget::showDetails( QTreeWidgetItem* item, int column )
 {
-  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;
+  if ( !item || column < 0 ) return;
+  int i = sender() == myViews[Clients] ? Clients : History;
+  int idx  = myViews[i]->indexOfTopLevelItem( item );
+  int size = myData[i]->length();
+  if ( idx < 0 || idx > size-1 ) return;
+  const Registry::Infos& c_info = (*myData[i])[idx];
+  myDetails->setText( getDetails( c_info ) );
 }