Salome HOME
Image composing.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ObjSelector.cxx
index 9a6016eea887e7f5c1eb04e77f24a3a9783a7fad..737b19f3702e83acd49d40a45126fd30efc8ff42 100644 (file)
@@ -1,18 +1,50 @@
+// Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+#include "HYDROGUI_ObjSelector.h"
+
+#include "HYDROGUI_DataModel.h"
+#include "HYDROGUI_Module.h"
+
+#include <GraphicsView_Object.h>
 
-#include <HYDROGUI_ObjSelector.h>
-#include <HYDROGUI_Module.h>
 #include <LightApp_Application.h>
-#include <LightApp_SelectionMgr.h>
+#include <LightApp_DataOwner.h>
 #include <LightApp_GVSelector.h>
-#include <GraphicsView_Object.h>
+#include <LightApp_SelectionMgr.h>
+
+#include <SUIT_ResourceMgr.h>
+#include <SUIT_Session.h>
+
 #include <QLayout>
-#include <QToolButton>
 #include <QLineEdit>
+#include <QToolButton>
 
 HYDROGUI_ObjSelector::HYDROGUI_ObjSelector( HYDROGUI_Module* theModule, QWidget* theParent )
 : QAbstractButton( theParent ), myModule( theModule )
 {
   QHBoxLayout* aLayout = new QHBoxLayout( this );
+  aLayout->setMargin( 0 );
+  aLayout->setSpacing( 5 );
   myBtn = new QToolButton( this );
   myBtn->setCheckable( true );
   myBtn->setChecked( false );
@@ -21,6 +53,9 @@ HYDROGUI_ObjSelector::HYDROGUI_ObjSelector( HYDROGUI_Module* theModule, QWidget*
   aLayout->addWidget( myBtn, 0 );
   aLayout->addWidget( myObjName, 1 );
 
+  SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
+  myBtn->setIcon( QIcon( aResMgr->loadPixmap( "HYDRO", tr( "SELECT_ICO" ) ) ) );
+
   SUIT_SelectionMgr* aSelMgr = theModule->getApp()->selectionMgr();
 
   connect( myBtn, SIGNAL( toggled( bool ) ), this, SLOT( OnToggled( bool ) ) );
@@ -63,15 +98,33 @@ void HYDROGUI_ObjSelector::OnSelectionChanged()
   SUIT_DataOwnerPtrList anOwners;
   aSelMgr->selected( anOwners );
 
+  HYDROGUI_DataModel* aModel = myModule->getDataModel();
+
   QString anObjName;
   foreach( SUIT_DataOwner* anOwner, anOwners )
   {
-    LightApp_GVDataOwner* aGrDOwner = dynamic_cast<LightApp_GVDataOwner*>( anOwner );
+    LightApp_DataOwner* aGrDOwner = dynamic_cast<LightApp_DataOwner*>( anOwner );
     if( aGrDOwner )
     {
-      anObjName = aGrDOwner->object()->getName();
-      break;
+      QString anEntry = aGrDOwner->entry();
+      Handle(HYDROData_Object) anObject = aModel->objectByEntry( anEntry, KIND_IMAGE );
+      if( !anObject.IsNull() )
+      {
+        anObjName = anObject->GetName();
+        break;
+      }
     }
   }
   myObjName->setText( anObjName );
 }
+
+QString HYDROGUI_ObjSelector::GetName() const
+{
+  return myObjName->text();
+}
+
+void HYDROGUI_ObjSelector::Clear()
+{
+  myObjName->clear();
+  myBtn->setChecked( false );
+}