X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_SelectionMgr.cpp;h=bafdeda30423f348fe2e8ca03a30d978d22df891;hb=38afbd899a8645c83e17f2c24a17a2b7414911b4;hp=c4c09491de67d2fe34635116cb1ee8888ef4fc70;hpb=bfc592b7af1751c4a64d5e545f5ac1dc513ecd01;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_SelectionMgr.cpp b/src/XGUI/XGUI_SelectionMgr.cpp index c4c09491d..bafdeda30 100644 --- a/src/XGUI/XGUI_SelectionMgr.cpp +++ b/src/XGUI/XGUI_SelectionMgr.cpp @@ -1,42 +1,101 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> + #include "XGUI_SelectionMgr.h" + #include "XGUI_Workshop.h" -#include "XGUI_MainWindow.h" #include "XGUI_ObjectsBrowser.h" +#include "XGUI_SalomeConnector.h" +#include "XGUI_ViewerProxy.h" +#include "XGUI_Displayer.h" +#include "XGUI_Selection.h" + +#include #include -#include +#include #include +#include +#include #include +XGUI_SelectionMgr::XGUI_SelectionMgr(XGUI_Workshop* theParent) + : QObject(theParent), + myWorkshop(theParent) +{ + mySelection = new XGUI_Selection(myWorkshop); +} +XGUI_SelectionMgr::~XGUI_SelectionMgr() +{ + delete mySelection; +} -XGUI_SelectionMgr::XGUI_SelectionMgr(XGUI_Workshop* theParent) : - QObject(theParent), myWorkshop(theParent) +//************************************************************** +void XGUI_SelectionMgr::connectViewers() { - XGUI_ObjectsBrowser* aObjBrowser = myWorkshop->mainWindow()->objectBrowser(); + connect(myWorkshop->objectBrowser(), SIGNAL(selectionChanged()), this, + SLOT(onObjectBrowserSelection())); - connect(aObjBrowser, SIGNAL(selectionChanged()), this, SLOT(onSelectionChanged())); + //Connect to other viewers + connect(myWorkshop->viewer(), SIGNAL(selectionChanged()), this, SLOT(onViewerSelection())); } - -XGUI_SelectionMgr::~XGUI_SelectionMgr() +//************************************************************** +void XGUI_SelectionMgr::onObjectBrowserSelection() { + QObjectPtrList aObjects = myWorkshop->objectBrowser()->selectedObjects(); + XGUI_Displayer* aDisplayer = myWorkshop->displayer(); + aDisplayer->setSelected(aObjects); + emit selectionChanged(); } -void XGUI_SelectionMgr::onSelectionChanged() +//************************************************************** +void XGUI_SelectionMgr::onViewerSelection() { - XGUI_ObjectsBrowser* aObjBrowser = myWorkshop->mainWindow()->objectBrowser(); - mySelectedData = aObjBrowser->selectedData(); - - // Set current document - if (mySelectedData.size() > 0) { - FeaturePtr aFeature = mySelectedData.first(); - - std::shared_ptr aMgr = ModelAPI_PluginManager::get(); - std::shared_ptr aDocRef = aFeature->data()->docRef("PartDocument"); - if (aDocRef) - aMgr->setCurrentDocument(aDocRef->value()); + QObjectPtrList aFeatures; + Handle(AIS_InteractiveContext) aContext = myWorkshop->viewer()->AISContext(); + for (aContext->InitSelected(); aContext->MoreSelected(); aContext->NextSelected()) { + Handle(AIS_InteractiveObject) anIO = aContext->SelectedInteractive(); + ObjectPtr aResult = myWorkshop->displayer()->getObject(anIO); + if (aResult) + aFeatures.append(aResult); } + bool aBlocked = myWorkshop->objectBrowser()->blockSignals(true); + myWorkshop->objectBrowser()->setObjectsSelected(aFeatures); + myWorkshop->objectBrowser()->blockSignals(aBlocked); emit selectionChanged(); -} \ No newline at end of file +} + +//************************************************************** +/*QFeatureList XGUI_SelectionMgr::selectedFeatures() const + { + return myWorkshop->objectBrowser()->selectedFeatures(); + } + + //************************************************************** + QModelIndexList XGUI_SelectionMgr::selectedIndexes() const + { + return myWorkshop->objectBrowser()->selectedIndexes(); + } + + //************************************************************** + void XGUI_SelectionMgr::selectedAISObjects(AIS_ListOfInteractive& theList) const + { + Handle(AIS_InteractiveContext) aContext = myWorkshop->viewer()->AISContext(); + theList.Clear(); + for (aContext->InitSelected(); aContext->MoreSelected(); aContext->NextSelected()) + theList.Append(aContext->SelectedInteractive()); + } + + //************************************************************** + void XGUI_SelectionMgr::selectedShapes(NCollection_List& theList) const + { + theList.Clear(); + Handle(AIS_InteractiveContext) aContext = myWorkshop->viewer()->AISContext(); + for (aContext->InitSelected(); aContext->MoreSelected(); aContext->NextSelected()) { + TopoDS_Shape aShape = aContext->SelectedShape(); + if (!aShape.IsNull()) + theList.Append(aShape); + } + }*/