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