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