Salome HOME
Exlude the user input during process events by application (Bug #325).
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_DigueOp.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_DigueOp.h"
24
25 #include "HYDROGUI_DigueDlg.h"
26 #include "HYDROGUI_Tool.h"
27 #include "HYDROGUI_Shape.h"
28
29 #include <HYDROData_Document.h>
30 #include <HYDROData_Digue.h>
31
32 HYDROGUI_DigueOp::HYDROGUI_DigueOp( HYDROGUI_Module* theModule,
33                                     const bool theIsEdit )
34 : HYDROGUI_ChannelOp( theModule, theIsEdit )
35 {
36   setName( theIsEdit ? tr( "EDIT_DIGUE" ) : tr( "CREATE_DIGUE" ) );
37 }
38
39 HYDROGUI_DigueOp::~HYDROGUI_DigueOp()
40 {
41 }
42
43 void HYDROGUI_DigueOp::startOperation()
44 {
45   HYDROGUI_ChannelOp::startOperation();
46
47   HYDROGUI_DigueDlg* aPanel = ::qobject_cast<HYDROGUI_DigueDlg*>( inputPanel() );
48
49   if ( !myIsEdit || myEditedObject.IsNull() )
50   {
51     QString anObjectName = HYDROGUI_Tool::GenerateObjectName( module(), tr( "DEFAULT_DIGUE_NAME" ) );
52     aPanel->setObjectName( anObjectName );
53   }
54 }
55
56 bool HYDROGUI_DigueOp::processApply( int& theUpdateFlags,
57                                      QString& theErrorMsg )
58 {
59   if ( !HYDROGUI_ChannelOp::processApply( theUpdateFlags, theErrorMsg ) )
60     return false;
61
62   if ( !myIsEdit )
63   {
64     myEditedObject->SetFillingColor( HYDROData_Digue::DefaultFillingColor() );
65     myEditedObject->SetBorderColor( HYDROData_Digue::DefaultBorderColor() );
66   }
67
68   return true;
69 }
70
71 HYDROGUI_InputPanel* HYDROGUI_DigueOp::createInputPanel() const
72 {
73   HYDROGUI_DigueDlg* aPanel = new HYDROGUI_DigueDlg( module(), getName() );
74   connect( aPanel, SIGNAL( CreatePreview() ), this, SLOT( onCreatePreview() ) );
75   return aPanel;
76 }
77
78 Handle(HYDROData_Channel) HYDROGUI_DigueOp::getObjectToEdit() const
79 {
80   return myIsEdit ? Handle(HYDROData_Digue)::DownCast( HYDROGUI_Tool::GetSelectedObject( module() ) ) :
81                     Handle(HYDROData_Digue)::DownCast( doc()->CreateObject( KIND_DIGUE ) );
82 }