1 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // File : StdMeshersGUI_ObjectReferenceParamWdg.h
24 // Author : Open CASCADE S.A.S.
26 #ifndef STDMESHERSGUI_OBJECTREFERENCEPARAMWDG_H
27 #define STDMESHERSGUI_OBJECTREFERENCEPARAMWDG_H
30 #include "SMESH_StdMeshersGUI.hxx"
32 #include <SMESH_Type.h>
40 #include <SALOMEconfig.h>
41 #include CORBA_SERVER_HEADER(SMESH_Mesh)
43 class SUIT_SelectionFilter;
45 class LightApp_SelectionMgr;
50 * \brief Widget controlling hypothesis parameter that is an object reference
52 class STDMESHERSGUI_EXPORT StdMeshersGUI_ObjectReferenceParamWdg : public QWidget
57 StdMeshersGUI_ObjectReferenceParamWdg( SUIT_SelectionFilter* filter,
59 bool multiSelection=false,
61 StdMeshersGUI_ObjectReferenceParamWdg( MeshObjectType objType,
63 bool multiSelection=false);
64 ~StdMeshersGUI_ObjectReferenceParamWdg();
66 void SetObject(CORBA::Object_ptr obj);
68 void SetObjects(SMESH::string_array_var& objEntries);
70 template<class TInterface>
71 typename TInterface::_var_type GetObject(unsigned i=0) const {
72 if ( IsObjectSelected(i) ) return TInterface::_narrow(myObjects[i]);
73 return TInterface::_nil();
76 int NbObjects() const { return myObjects.size(); }
78 QString GetValue() const { return myParamValue; }
80 bool IsObjectSelected(unsigned i=0) const
81 { return i < myObjects.size() && !CORBA::is_nil(myObjects[i]); }
83 void AvoidSimultaneousSelection( StdMeshersGUI_ObjectReferenceParamWdg* other);
85 void SetDefaultText(QString defaultText="", QString styleSheet="");
89 * \brief Activates selection (if not yet done), emits selectionActivated()
91 * Useful to deactivate one Object Reference param widget when an other
94 void activateSelection();
95 void deactivateSelection();
99 * \brief Emitted when selection is activated
101 * Useful to deactivate one Object Reference param widget when an other
104 void selectionActivated();
105 void contentModified();
108 void onSelectionDone();
115 bool myMultiSelection;
116 std::vector<CORBA::Object_var> myObjects;
118 SUIT_SelectionFilter* myFilter;
119 bool mySelectionActivated;
120 bool myStretchActivated;
122 SMESHGUI* mySMESHGUI;
123 LightApp_SelectionMgr* mySelectionMgr;
125 QLineEdit* myObjNameLineEdit;
126 QPushButton* mySelButton;
127 QString myParamValue;
129 QString myEmptyStyleSheet;
132 #endif // STDMESHERSGUI_OBJECTREFERENCEPARAMWDG_H