Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/gui.git] / src / TOOLSGUI / ToolsGUI_RegWidget.h
1 //  SALOME RegistryDisplay : GUI for Registry server implementation
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : RegWidget.h
25 //  Author : Pascale NOYRET, EDF
26 //  Module : SALOME
27 //  $Header$
28
29 # ifndef __REGWIDGET_H__
30 # define __REGWIDGET_H__
31 # include <qapplication.h>
32 # include <qmainwindow.h>
33
34 #include <SALOMEconfig.h>
35 #include CORBA_CLIENT_HEADER(SALOME_Registry)
36
37 class QTabWidget;
38 class QListView;
39 class QListViewItem;
40 class QWidget;
41 class QTimer;
42 class QCloseEvent;
43 class QTextView;
44 #if QT_VERSION > 300
45 class QPushButton;
46 #endif
47
48 #include <Standard_Macro.hxx>
49
50 class ToolsGUI_HelpWindow;
51 class ToolsGUI_IntervalWindow;
52
53 class Standard_EXPORT  ToolsGUI_InfoWindow : public QMainWindow {
54 public:
55   ToolsGUI_InfoWindow( QWidget* parent = 0, const char* name = 0);
56
57   void setText( const QString& text );
58   QTextView* textView() const { return myTextView; }
59
60 protected:
61   void keyPressEvent( QKeyEvent * e );
62
63 private:
64   QTextView* myTextView;
65 };
66
67 class Standard_EXPORT  ToolsGUI_RegWidget : public QMainWindow
68 {
69   
70   Q_OBJECT
71
72 public:
73   ToolsGUI_RegWidget( CORBA::ORB_var &orb , QWidget *parent = 0, const char *name = 0 );
74   ~ToolsGUI_RegWidget();
75   void       SetListe();
76   void       SetListeHistory();
77   void       InfoReg();
78   void       InfoHistory();
79
80   bool       eventFilter( QObject* object, QEvent* event );
81
82   static ToolsGUI_RegWidget* GetRegWidget( CORBA::ORB_var &orb , QWidget *parent = 0, const char *name = 0 );
83
84 public slots:
85   void       slotHelp();
86   void       slotListeSelect();
87   void       slotClientChanged( QListViewItem* );
88   void       slotHistoryChanged( QListViewItem* );
89   void       slotSelectRefresh();
90   void       slotIntervalOk();
91 protected:  
92   static QString setlongText( const Registry::Infos &c_info );
93   int            numitem( const QString& name, const QString& pid, const QString& machine, const Registry::AllInfos* c_info );
94   void           closeEvent( QCloseEvent *e);
95    
96 protected :
97   QListView*               _clients;
98   QListView*               _history;
99   QWidget*                 _parent;
100   QTabWidget*              _tabWidget;
101   QPushButton*             _refresh;
102   QPushButton*             _interval;
103   QPushButton*             _close;
104   QTimer*                  _counter;
105   Registry::AllInfos*      _serverhistory;
106   Registry::AllInfos*      _serverclients;
107   ToolsGUI_InfoWindow*     myInfoWindow;
108   ToolsGUI_HelpWindow*     myHelpWindow;
109   ToolsGUI_IntervalWindow* myIntervalWindow;
110   int                      myRefreshInterval;
111
112 private:
113   const      Registry::Components_var _VarComponents;
114   static     ToolsGUI_RegWidget* myRegWidgetPtr;
115 };
116
117 # endif         /* # ifndef __REGWIDGET_H__ */
118
119
120
121
122
123
124
125
126