Salome HOME
Porting SMESH module to Qt 4
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_ObjectReferenceParamWdg.h
1 // Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 //
4 // This library is free software; you can redistribute it and/or 
5 // modify it under the terms of the GNU Lesser General Public 
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License. 
8 //
9 // This library is distributed in the hope that it will be useful, 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details. 
13 //
14 // You should have received a copy of the GNU Lesser General Public 
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 // File   : StdMeshersGUI_ObjectReferenceParamWdg.h
21 // Author : Open CASCADE S.A.S.
22 //
23
24 #ifndef STDMESHERSGUI_OBJECTREFERENCEPARAMWDG_H
25 #define STDMESHERSGUI_OBJECTREFERENCEPARAMWDG_H
26
27 // SMESH includes
28 #include "SMESH_StdMeshersGUI.hxx"
29
30 #include <SMESH_Type.h>
31
32 // Qt includes
33 #include <QWidget>
34
35 // CORBA includes
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 QWidget
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 // STDMESHERSGUI_OBJECTREFERENCEPARAMWDG_H