Salome HOME
bos #24400 [CEA] Option in SALOME for not storing in med files the indices (number...
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_ObjectReferenceParamWdg.h
1 // Copyright (C) 2007-2021  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, or (at your option) any later version.
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 // File   : StdMeshersGUI_ObjectReferenceParamWdg.h
24 // Author : Open CASCADE S.A.S.
25 //
26 #ifndef STDMESHERSGUI_OBJECTREFERENCEPARAMWDG_H
27 #define STDMESHERSGUI_OBJECTREFERENCEPARAMWDG_H
28
29 // SMESH includes
30 #include "SMESH_StdMeshersGUI.hxx"
31
32 #include <SMESH_Type.h>
33
34 // Qt includes
35 #include <QWidget>
36
37 // CORBA includes
38 #include <omniORB4/CORBA.h>
39
40 #include <SALOMEconfig.h>
41 #include CORBA_SERVER_HEADER(SMESH_Mesh)
42
43 class SUIT_SelectionFilter;
44 class SMESHGUI;
45 class LightApp_SelectionMgr;
46 class QLineEdit;
47 class QPushButton;
48
49 /*!
50  *  \brief Widget controlling hypothesis parameter that is an object reference
51  */
52 class STDMESHERSGUI_EXPORT StdMeshersGUI_ObjectReferenceParamWdg : public QWidget
53 {
54   Q_OBJECT
55
56  public:
57   StdMeshersGUI_ObjectReferenceParamWdg( SUIT_SelectionFilter* filter,
58                                          QWidget*              parent,
59                                          bool                  multiSelection=false
60                                          /* ,bool                  stretch=true*/);
61   StdMeshersGUI_ObjectReferenceParamWdg( SMESH::MeshObjectType objType,
62                                          QWidget*       parent,
63                                          bool           multiSelection=false);
64   ~StdMeshersGUI_ObjectReferenceParamWdg();
65
66   void SetObject(CORBA::Object_ptr obj);
67
68   void SetObjects(SMESH::string_array_var& objEntries);
69
70   template<class TInterface>
71     typename TInterface::_var_type GetObject(size_t i=0) const {
72     if ( IsObjectSelected(i) ) return TInterface::_narrow(myObjects[i]);
73     return TInterface::_nil();
74   }
75
76   size_t NbObjects() const { return myObjects.size(); }
77
78   // Return object entries
79   QString GetValue() const { return myParamValue; }
80
81   bool IsObjectSelected(size_t i=0) const
82   { return i < myObjects.size() && !CORBA::is_nil(myObjects[i]); }
83
84   /*!
85    * \brief Get the selection status
86    *
87    * Useful to know which Object Reference param widget is activated
88    * to be able to activate the next one when the content of this
89    * one has been modified
90    */
91   bool IsSelectionActivated() const { return mySelectionActivated; }
92
93   void AvoidSimultaneousSelection( StdMeshersGUI_ObjectReferenceParamWdg* other);
94
95   void SetDefaultText(QString defaultText="", QString styleSheet="");
96
97  public slots:
98   /*!
99    * \brief Activates selection (if not yet done), emits selectionActivated()
100    *
101    * Useful to deactivate one Object Reference param widget when an other
102    * one is activated
103    */
104   void activateSelection();
105   void deactivateSelection();
106
107  signals:
108   /*!
109    * \brief Emitted when selection is activated
110    *
111    * Useful to deactivate one Object Reference param widget when an other
112    * one is activated
113    */
114   void selectionActivated();
115   void contentModified();
116
117  private slots:
118   void onSelectionDone();
119
120  private:
121   void init();
122
123  private:
124
125   bool                                myMultiSelection;
126   std::vector<CORBA::Object_var>      myObjects;
127
128   SUIT_SelectionFilter*  myFilter;
129   bool                   mySelectionActivated;
130   bool                   myStretchActivated;
131
132   SMESHGUI*              mySMESHGUI;
133   LightApp_SelectionMgr* mySelectionMgr;
134
135   QLineEdit*             myObjNameLineEdit;
136   QPushButton*           mySelButton;
137   QString                myParamValue;
138   QString                myEmptyText;
139   QString                myEmptyStyleSheet;
140 };
141
142 #endif // STDMESHERSGUI_OBJECTREFERENCEPARAMWDG_H