Salome HOME
debug of local CS
[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                                      QStringList& theBrowseObjectsEntries )
59 {
60   if ( !HYDROGUI_ChannelOp::processApply( theUpdateFlags, theErrorMsg, theBrowseObjectsEntries ) )
61     return false;
62
63   if ( !myIsEdit )
64   {
65     myEditedObject->SetFillingColor( HYDROData_Digue::DefaultFillingColor() );
66     myEditedObject->SetBorderColor( HYDROData_Digue::DefaultBorderColor() );
67   }
68
69   return true;
70 }
71
72 HYDROGUI_InputPanel* HYDROGUI_DigueOp::createInputPanel() const
73 {
74   HYDROGUI_DigueDlg* aPanel = new HYDROGUI_DigueDlg( module(), getName() );
75   connect( aPanel, SIGNAL( CreatePreview() ), this, SLOT( onCreatePreview() ) );
76   return aPanel;
77 }
78
79 Handle(HYDROData_Channel) HYDROGUI_DigueOp::createNewObject() const
80 {
81   return Handle(HYDROData_Digue)::DownCast( doc()->CreateObject( KIND_DIGUE ) );
82 }
83
84 QColor HYDROGUI_DigueOp::getDefaultFillingColor() const
85 {
86   return HYDROData_Digue::DefaultFillingColor();
87 }
88
89 QColor HYDROGUI_DigueOp::getDefaultBorderColor() const
90 {
91   return HYDROData_Digue::DefaultBorderColor();
92 }