Salome HOME
Merge from BR_V5_DEV 16Feb09
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_ObjectReferenceParamWdg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 // File   : StdMeshersGUI_ObjectReferenceParamWdg.h
23 // Author : Open CASCADE S.A.S.
24 //
25 #ifndef STDMESHERSGUI_OBJECTREFERENCEPARAMWDG_H
26 #define STDMESHERSGUI_OBJECTREFERENCEPARAMWDG_H
27
28 // SMESH includes
29 #include "SMESH_StdMeshersGUI.hxx"
30
31 #include <SMESH_Type.h>
32
33 // Qt includes
34 #include <QWidget>
35
36 // CORBA includes
37 #include <CORBA.h>
38
39 class SUIT_SelectionFilter;
40 class SMESHGUI;
41 class LightApp_SelectionMgr;
42 class QLineEdit;
43 class QPushButton;
44
45 /*!
46  *  \brief Widget controlling hypothesis parameter that is an object reference
47  */
48 class STDMESHERSGUI_EXPORT StdMeshersGUI_ObjectReferenceParamWdg : public QWidget
49 {
50   Q_OBJECT
51
52 public:
53   StdMeshersGUI_ObjectReferenceParamWdg( SUIT_SelectionFilter* filter, 
54                                          QWidget*              parent);
55   StdMeshersGUI_ObjectReferenceParamWdg( MeshObjectType objType,
56                                          QWidget*       parent);
57   ~StdMeshersGUI_ObjectReferenceParamWdg();
58
59   void SetObject(CORBA::Object_ptr obj);
60
61   template<class TInterface> 
62     typename TInterface::_var_type GetObject() const {
63     if ( IsObjectSelected() ) return TInterface::_narrow(myObject);
64     return TInterface::_nil();
65   }
66
67   QString GetValue() const { return myParamValue; }
68
69   bool IsObjectSelected() const { return !CORBA::is_nil(myObject); }
70
71   void AvoidSimultaneousSelection( StdMeshersGUI_ObjectReferenceParamWdg* other);
72
73 public slots:
74   /*!
75    * \brief Activates selection (if not yet done), emits selectionActivated()
76     *
77     * Useful to deactivate one Object Reference param widget when an other
78     * one is activated
79    */
80   void activateSelection();
81   void deactivateSelection();
82
83 signals:
84   /*!
85    * \brief Emitted when selection is activated
86     *
87     * Useful to deactivate one Object Reference param widget when an other
88     * one is activated
89    */
90   void selectionActivated();
91   
92 private slots:
93   void onSelectionDone(); 
94
95 private:
96   void init();
97   
98 private:
99  CORBA::Object_var      myObject;
100  SUIT_SelectionFilter*  myFilter;
101  bool                   mySelectionActivated;
102
103  SMESHGUI*              mySMESHGUI;
104  LightApp_SelectionMgr* mySelectionMgr;
105
106  QLineEdit*             myObjNameLineEdit;
107  QPushButton*           mySelButton;
108  QString                myParamValue;
109 };
110
111 #endif // STDMESHERSGUI_OBJECTREFERENCEPARAMWDG_H