Salome HOME
bos #20256: [CEA 18523] Porting SMESH to int 64 bits
[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   QString GetValue() const { return myParamValue; }
79
80   bool IsObjectSelected(size_t i=0) const
81   { return i < myObjects.size() && !CORBA::is_nil(myObjects[i]); }
82
83   /*!
84    * \brief Get the selection status
85     *
86     * Useful to know which Object Reference param widget is activated
87     * to be able to activate the next one when the content of this
88     * one has been modified
89    */
90   bool IsSelectionActivated() const { return mySelectionActivated; }
91
92   void AvoidSimultaneousSelection( StdMeshersGUI_ObjectReferenceParamWdg* other);
93   
94   void SetDefaultText(QString defaultText="", QString styleSheet="");
95
96 public slots:
97   /*!
98    * \brief Activates selection (if not yet done), emits selectionActivated()
99     *
100     * Useful to deactivate one Object Reference param widget when an other
101     * one is activated
102    */
103   void activateSelection();
104   void deactivateSelection();
105
106 signals:
107   /*!
108    * \brief Emitted when selection is activated
109     *
110     * Useful to deactivate one Object Reference param widget when an other
111     * one is activated
112    */
113   void selectionActivated();
114   void contentModified();
115   
116 private slots:
117   void onSelectionDone(); 
118
119 private:
120   void init();
121   
122 private:
123
124   bool                                myMultiSelection;
125   std::vector<CORBA::Object_var>      myObjects;
126
127  SUIT_SelectionFilter*  myFilter;
128  bool                   mySelectionActivated;
129  bool                   myStretchActivated;
130
131  SMESHGUI*              mySMESHGUI;
132  LightApp_SelectionMgr* mySelectionMgr;
133
134  QLineEdit*             myObjNameLineEdit;
135  QPushButton*           mySelButton;
136  QString                myParamValue;
137  QString                myEmptyText;
138  QString                myEmptyStyleSheet;
139 };
140
141 #endif // STDMESHERSGUI_OBJECTREFERENCEPARAMWDG_H