Salome HOME
Harmonisation of GUI.
[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 #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( applyOrder() ), this, SLOT( onApply() ) );
88     connect( myDlg, SIGNAL( rejected() ), this, SLOT( onCancel() ) );
89   }
90   myDlg->setObjects( anObject2VisibleList );
91
92   myDlg->exec();
93 }
94
95 /**
96 */
97 bool HYDROGUI_ZLevelsOp::processApply( int& theUpdateFlags,
98                                        QString& theErrorMsg,
99                                        QStringList& theBrowseObjectsEntries )
100 {
101   bool aRes = false;
102
103   if ( myDlg ) {
104     Handle(HYDROData_Document) aDoc = doc();
105     if( !aDoc.IsNull() ) {
106       HYDROGUI_ListModel::ObjectList anObjects = myDlg->getObjects();
107       HYDROData_SequenceOfObjects anOrderedObjects;
108       foreach ( const Handle(HYDROData_Entity) anObject, anObjects ) {
109         anOrderedObjects.Append( anObject );
110       }
111
112       aDoc->SetObjectsLayerOrder( anOrderedObjects );
113
114       theUpdateFlags = UF_Model | UF_OCCViewer;
115       aRes = true;
116     }
117   }
118
119   return aRes;
120 }
121
122 /**
123 */
124 bool HYDROGUI_ZLevelsOp::isGranted() const
125 {
126   return true;
127 }
128
129 /**
130 */
131 void HYDROGUI_ZLevelsOp::processCancel()
132 {
133   // Delete the dialog
134   if ( myDlg ) {
135     delete myDlg;
136     myDlg = 0;
137   }
138 }