Salome HOME
Image composing.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ObjSelector.cxx
index bbcc599bee90e98481b2f4874451948453175faf..737b19f3702e83acd49d40a45126fd30efc8ff42 100644 (file)
 //
 
 #include "HYDROGUI_ObjSelector.h"
+
+#include "HYDROGUI_DataModel.h"
 #include "HYDROGUI_Module.h"
 
 #include <GraphicsView_Object.h>
+
 #include <LightApp_Application.h>
+#include <LightApp_DataOwner.h>
 #include <LightApp_GVSelector.h>
 #include <LightApp_SelectionMgr.h>
 
+#include <SUIT_ResourceMgr.h>
+#include <SUIT_Session.h>
+
 #include <QLayout>
 #include <QLineEdit>
 #include <QToolButton>
@@ -36,6 +43,8 @@ HYDROGUI_ObjSelector::HYDROGUI_ObjSelector( HYDROGUI_Module* theModule, QWidget*
 : 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 );
@@ -44,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 ) ) );
@@ -79,7 +91,6 @@ void HYDROGUI_ObjSelector::OnToggled( bool isChecked )
 
 void HYDROGUI_ObjSelector::OnSelectionChanged()
 {
-  /* ouv: to do
   if( !myBtn->isChecked() )
     return;
 
@@ -87,21 +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 );
+}