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