Salome HOME
Moved some functionality to VTKViewer_Utilities.h
[modules/kernel.git] / src / SALOMEGUI / QAD_NameBrowser.h
1 //  SALOME SALOMEGUI : implementation of desktop and GUI kernel
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : QAD_NameBrowser.h
25 //  Author : Nicolas REJNERI
26 //  Module : SALOME
27 //  $Header$
28
29 #ifndef QAD_NAMEBROWSER_H
30 #define QAD_NAMEBROWSER_H
31
32 #include <qvariant.h>
33 #include <qmainwindow.h>
34 class QVBoxLayout; 
35 class QHBoxLayout; 
36 class QGridLayout; 
37 class QComboBox;
38 class QGroupBox;
39 class QLabel;
40 class QListView;
41 class QListViewItem;
42 class QPushButton;
43 class QToolButton;
44
45 // IDL headers
46 #include <SALOMEconfig.h>
47 #include CORBA_SERVER_HEADER(SALOMEDS)
48 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
49
50 class QAD_NameBrowser : public QMainWindow
51
52     Q_OBJECT
53
54 public:
55     QAD_NameBrowser( QWidget* parent = 0, const char* name = 0);
56     ~QAD_NameBrowser();
57
58     QListView*             getListView() const;
59
60     void initFilters();
61
62     QListViewItem* AddItem(const QString&,
63                            const QString&,
64                            const QString&);
65     void Update(SALOMEDS::Study_ptr Study,
66                 SALOMEDS::SObject_ptr SO);
67     void Update(SALOMEDS::Study_ptr Study, 
68                 SALOMEDS::SComponent_ptr SC = SALOMEDS::SComponent::_narrow( CORBA::Object::_nil() ));
69
70
71     void closeEvent(QCloseEvent* e);
72
73 protected slots:
74     void selectAllFilteredObjects();
75     void updateFilters();
76
77     void onFilteredObjects();
78
79 private:
80     QGroupBox* GroupBox1;
81     QComboBox* ComboBox1;
82     QPushButton* PushButton5;
83     QComboBox* ComboBox2;
84     QGroupBox* GroupBox2;
85     QPushButton* PushButton1;
86     QListView* ListView1;
87
88 };
89
90 #endif // QAD_NAMEBROWSER_H