Salome HOME
1) Data model draft.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Operation.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_Operation.h"
24 #include "HYDROGUI_Module.h"
25 #include "HYDROGUI_InputPanel.h"
26
27 #include <HYDROData_Document.h>
28 #include <HYDROData_Iterator.h>
29
30 #include <LightApp_Application.h>
31 #include <LightApp_SelectionMgr.h>
32
33 #include <SUIT_Desktop.h>
34 #include <SUIT_Study.h>
35
36 HYDROGUI_Operation::HYDROGUI_Operation( HYDROGUI_Module* theModule )
37 : LightApp_Operation(), myModule( theModule ), myPanel( 0 )
38 {
39 }
40
41 HYDROGUI_Operation::~HYDROGUI_Operation()
42 {
43 }
44
45 SUIT_SelectionMgr* HYDROGUI_Operation::selectionMgr() const
46 {
47   return myModule->getApp()->selectionMgr();
48 }
49
50 HYDROGUI_Module* HYDROGUI_Operation::module() const
51 {
52   return myModule;
53 }
54
55 void HYDROGUI_Operation::startOperation()
56 {
57   doc()->StartOperation();
58
59   if( inputPanel() )
60   {
61     connect( inputPanel(), SIGNAL( panelApply() ),  this, SLOT( OnApply() ) );
62     connect( inputPanel(), SIGNAL( panelCancel() ), this, SLOT( OnCancel() ) );
63
64     inputPanel()->show();
65     myModule->getApp()->desktop()->addDockWidget( Qt::RightDockWidgetArea, inputPanel() );
66   }
67 }
68
69 HYDROGUI_InputPanel* HYDROGUI_Operation::inputPanel() const
70 {
71   if( !myPanel )
72     ( ( HYDROGUI_Operation* )this )->myPanel = createInputPanel();
73   return myPanel;
74 }
75
76 Handle_HYDROData_Document HYDROGUI_Operation::doc() const
77 {
78   int aStudyId = myModule->application()->activeStudy()->id();
79   return HYDROData_Document::Document( aStudyId );
80 }
81
82 void HYDROGUI_Operation::OnApply()
83 {
84   doc()->CommitOperation();
85   inputPanel()->hide();
86 }
87
88 void HYDROGUI_Operation::OnCancel()
89 {
90   doc()->AbortOperation();
91   inputPanel()->hide();
92 }
93
94 Handle_HYDROData_Object HYDROGUI_Operation::FindObjectByName( const QString& theName, int theKind ) const
95 {
96   HYDROData_Iterator anIt( doc(), theKind );
97   for( ; anIt.More(); anIt.Next() )
98   {
99     if( anIt.Current()->GetName() == theName )
100       return anIt.Current();
101   }
102   return Handle_HYDROData_Object();
103 }