Version: 8.3.0
StdMeshersGUI_ObjectReferenceParamWdg.h
Go to the documentation of this file.
1 // Copyright (C) 2007-2016 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 
44 class SMESHGUI;
45 class LightApp_SelectionMgr;
46 class QLineEdit;
47 class QPushButton;
48 
53 {
54  Q_OBJECT
55 
56 public:
58  QWidget* parent,
59  bool multiSelection=false
60  /* ,bool stretch=true*/);
62  QWidget* parent,
63  bool multiSelection=false);
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(unsigned i=0) const {
72  if ( IsObjectSelected(i) ) return TInterface::_narrow(myObjects[i]);
73  return TInterface::_nil();
74  }
75 
76  int NbObjects() const { return myObjects.size(); }
77 
78  QString GetValue() const { return myParamValue; }
79 
80  bool IsObjectSelected(unsigned i=0) const
81  { return i < myObjects.size() && !CORBA::is_nil(myObjects[i]); }
82 
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:
103  void activateSelection();
104  void deactivateSelection();
105 
106 signals:
113  void selectionActivated();
114  void contentModified();
115 
116 private slots:
117  void onSelectionDone();
118 
119 private:
120  void init();
121 
122 private:
123 
125  std::vector<CORBA::Object_var> myObjects;
126 
130 
132  LightApp_SelectionMgr* mySelectionMgr;
133 
134  QLineEdit* myObjNameLineEdit;
135  QPushButton* mySelButton;
136  QString myParamValue;
137  QString myEmptyText;
139 };
140 
141 #endif // STDMESHERSGUI_OBJECTREFERENCEPARAMWDG_H