Salome HOME
Add tests for drag and drop algo.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ZLevelsOp.cxx
1 // Copyright (C) 2007-2013  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.
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 #include "HYDROGUI_ZLevelsOp.h"
24
25 #include "HYDROGUI_ZLevelsDlg.h"
26 #include "HYDROGUI_DataModel.h"
27 #include "HYDROGUI_Module.h"
28 #include "HYDROGUI_Tool.h"
29 #include "HYDROGUI_UpdateFlags.h"
30
31 #include <HYDROData_Entity.h>
32
33 #include <LightApp_Application.h>
34 #include <LightApp_UpdateFlags.h>
35
36 #include <SUIT_Desktop.h>
37
38 HYDROGUI_ZLevelsOp::HYDROGUI_ZLevelsOp( HYDROGUI_Module* theModule )
39 : HYDROGUI_Operation( theModule ),
40   myZLevelsDlg( NULL )
41 {
42   setName( tr( "SET_Z_LEVELS" ) );
43 }
44
45 HYDROGUI_ZLevelsOp::~HYDROGUI_ZLevelsOp()
46 {
47 }
48
49 void HYDROGUI_ZLevelsOp::startOperation()
50 {
51   HYDROGUI_Operation::startOperation();
52
53   HYDROGUI_ZLevelsModel::Object2VisibleList anObject2VisibleList;
54
55   // Get the document
56   Handle(HYDROData_Document) aDoc = doc();
57   if( !aDoc.IsNull() ) {
58     // Get active OCC view id
59     size_t anActiveOCCViewId = HYDROGUI_Tool::GetActiveOCCViewId( module() );
60
61     // Get objects list
62     HYDROData_SequenceOfObjects aSeqOfObjects = aDoc->GetObjectsLayerOrder( Standard_True );
63     HYDROData_SequenceOfObjects::Iterator anIter( aSeqOfObjects );
64     for ( ; anIter.More(); anIter.Next() ) {
65       Handle(HYDROData_Entity) anObject = anIter.Value();
66       if ( !anObject.IsNull() ) {
67         bool isVisible = module()->isObjectVisible( anActiveOCCViewId, anObject );
68         anObject2VisibleList << HYDROGUI_ZLevelsModel::Object2Visible( anObject, isVisible );
69       }
70     }
71   }
72
73   // Show the dialog
74   myZLevelsDlg = new HYDROGUI_ZLevelsDlg( module()->getApp()->desktop() );
75   myZLevelsDlg->setModal( true );
76   myZLevelsDlg->setObjects( anObject2VisibleList );
77
78   //TODO: reimplement
79   connect( myZLevelsDlg, SIGNAL( accepted() ), this, SLOT( commit() ) );
80   connect( myZLevelsDlg, SIGNAL( rejected() ), this, SLOT( abort() ) );
81
82   myZLevelsDlg->exec();
83 }
84
85 bool HYDROGUI_ZLevelsOp::processApply( int& theUpdateFlags,
86                                        QString& theErrorMsg )
87 {
88   // TODO
89   return false;
90 }