1 // Copyright (C) 2014-2015 EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 // Lesser General Public License for more details.
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #include <HYDROGUI_BathymetrySelectionOp.h>
21 #include <HYDROGUI_Module.h>
22 #include <HYDROGUI_BathymetryPrs.h>
23 #include <HYDROGUI_BathymetryOp.h>
24 #include <HYDROGUI_ShapeBathymetry.h>
25 #include <HYDROGUI_Operations.h>
26 #include <OCCViewer_ViewManager.h>
27 #include <LightApp_Application.h>
29 #include <QApplication>
31 HYDROGUI_BathymetrySelectionOp::HYDROGUI_BathymetrySelectionOp( HYDROGUI_Module* theModule )
32 : HYDROGUI_Operation( theModule ), myIsActive( false )
36 HYDROGUI_BathymetrySelectionOp::~HYDROGUI_BathymetrySelectionOp()
40 void HYDROGUI_BathymetrySelectionOp::startOperation()
42 activateSelection( true );
45 void HYDROGUI_BathymetrySelectionOp::abortOperation()
47 activateSelection( false );
49 module()->action( BathymetrySelectionId )->setChecked( false );
50 module()->action( BathymetryTextId )->setChecked( false );
53 bool HYDROGUI_BathymetrySelectionOp::isValid( SUIT_Operation* theOtherOp ) const
55 HYDROGUI_BathymetryOp* aBathOp = dynamic_cast<HYDROGUI_BathymetryOp*>( theOtherOp );
56 return ( aBathOp != 0 );
59 OCCViewer_Viewer* getViewer( HYDROGUI_Module* theModule )
61 LightApp_Application* app = theModule->getApp();
62 OCCViewer_ViewManager* mgr = dynamic_cast<OCCViewer_ViewManager*>
63 ( app->getViewManager( OCCViewer_Viewer::Type(), true ) );
64 return mgr->getOCCViewer();
67 Handle(AIS_InteractiveContext) getContext( HYDROGUI_Module* theModule )
69 return getViewer( theModule )->getAISContext();
72 QList<Handle(HYDROGUI_BathymetryPrs)> getShownBathymetries( HYDROGUI_Module* theModule )
74 QList<Handle(HYDROGUI_BathymetryPrs)> baths;
75 Handle(AIS_InteractiveContext) ctx = getContext( theModule );
77 AIS_ListOfInteractive objs;
78 ctx->DisplayedObjects( objs );
79 AIS_ListIteratorOfListOfInteractive it( objs );
80 for( ; it.More(); it.Next() )
82 Handle(HYDROGUI_BathymetryPrs) bath = Handle(HYDROGUI_BathymetryPrs)::DownCast( it.Value() );
89 void HYDROGUI_BathymetrySelectionOp::activateSelection( bool isActive )
91 if( myIsActive==isActive )
94 getContext( module() )->ClearSelected(true);
95 qApp->setOverrideCursor( Qt::WaitCursor );
96 getContext( module() )->ClearSelected(true);
97 Handle(AIS_InteractiveContext) ctx = getContext( module() );
98 QList<Handle(HYDROGUI_BathymetryPrs)> baths = getShownBathymetries( module() );
101 const int aSelectionMode = 1;
102 ctx->OpenLocalContext( Standard_True );
103 foreach( Handle(HYDROGUI_BathymetryPrs) bath, baths )
105 ctx->Activate( bath, aSelectionMode, Standard_True );
106 bath->SetAutoHilight( Standard_False );
108 ctx->UpdateCurrentViewer();
112 foreach( Handle(HYDROGUI_BathymetryPrs) bath, baths )
114 bath->ClearSelected();
115 bath->SetAutoHilight( Standard_True );
116 bath->GetShape()->TextLabels( false );
117 ctx->Deactivate( bath );
119 ctx->CloseLocalContext( -1, Standard_True );
122 myIsActive = isActive;
124 qApp->restoreOverrideCursor();