Salome HOME
bfbe5aa71d5485620da23994fc95a5f4b021fcc4
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ZLevelsOp.cxx
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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 #include "HYDROGUI_ListSelector.h"
31
32 #include <HYDROData_Entity.h>
33
34 #include <LightApp_Application.h>
35 #include <LightApp_UpdateFlags.h>
36
37 #include <SUIT_Desktop.h>
38
39 /**
40   Constructor.
41   @param theModule the module
42 */
43 HYDROGUI_ZLevelsOp::HYDROGUI_ZLevelsOp( HYDROGUI_Module* theModule )
44 : HYDROGUI_Operation( theModule ),
45   myDlg( NULL )
46 {
47   setName( tr( "SET_Z_LEVELS" ) );
48 }
49
50 /**
51   Destructor.
52 */
53 HYDROGUI_ZLevelsOp::~HYDROGUI_ZLevelsOp()
54 {
55 }
56
57 /**
58 */
59 void HYDROGUI_ZLevelsOp::startOperation()
60 {
61   HYDROGUI_Operation::startOperation();
62
63   // Prepare the list of objects
64   HYDROGUI_ListModel::Object2VisibleList anObject2VisibleList;
65
66   // get the document
67   Handle(HYDROData_Document) aDoc = doc();
68   if( !aDoc.IsNull() ) {
69     // get active OCC view id
70     size_t anActiveOCCViewId = HYDROGUI_Tool::GetActiveOCCViewId( module() );
71
72     // get objects list
73     HYDROData_SequenceOfObjects aSeqOfObjects = aDoc->GetObjectsLayerOrder( Standard_True );
74     HYDROData_SequenceOfObjects::Iterator anIter( aSeqOfObjects );
75     for ( ; anIter.More(); anIter.Next() ) {
76       Handle(HYDROData_Entity) anObject = anIter.Value();
77       if ( !anObject.IsNull() ) {
78         bool isVisible = module()->isObjectVisible( anActiveOCCViewId, anObject );
79         anObject2VisibleList << HYDROGUI_ListModel::Object2Visible( anObject, isVisible );
80       }
81     }
82   }
83
84   // Show the dialog
85   if ( !myDlg ) {
86     myDlg = new HYDROGUI_ZLevelsDlg( module()->getApp()->desktop(), module() );
87         connect( myDlg, SIGNAL( applyOrderAndClose() ), this, SLOT( onApplyAndClose() ) );
88     connect( myDlg, SIGNAL( applyOrder() ), this, SLOT( onApply() ) );
89     connect( myDlg, SIGNAL( rejected() ), this, SLOT( onCancel() ) );
90   }
91   myDlg->setObjects( anObject2VisibleList );
92
93   myDlg->exec();
94 }
95
96 /**
97 */
98 bool HYDROGUI_ZLevelsOp::processApply( int& theUpdateFlags,
99                                        QString& theErrorMsg,
100                                        QStringList& theBrowseObjectsEntries )
101 {
102   bool aRes = false;
103
104   if ( myDlg ) {
105     Handle(HYDROData_Document) aDoc = doc();
106     if( !aDoc.IsNull() ) {
107       HYDROGUI_ListModel::ObjectList anObjects = myDlg->getObjects();
108       HYDROData_SequenceOfObjects anOrderedObjects;
109       foreach ( const Handle(HYDROData_Entity) anObject, anObjects ) {
110         anOrderedObjects.Append( anObject );
111       }
112
113       aDoc->SetObjectsLayerOrder( anOrderedObjects );
114
115       theUpdateFlags = UF_Model | UF_OCCViewer;
116       aRes = true;
117     }
118   }
119
120   return aRes;
121 }
122
123 /**
124 */
125 bool HYDROGUI_ZLevelsOp::isGranted() const
126 {
127   return true;
128 }
129
130 /**
131 */
132 void HYDROGUI_ZLevelsOp::processCancel()
133 {
134   // Delete the dialog
135   if ( myDlg ) {
136     delete myDlg;
137     myDlg = 0;
138   }
139 }
140
141 void HYDROGUI_ZLevelsOp::onApplyAndClose()
142 {
143   HYDROGUI_Operation::onApplyAndClose();
144   if ( myDlg )
145     myDlg->reject();
146 }