Salome HOME
d813fb7abac05097a9c8f6f5b9bc4d431831693c
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ProfileDlg.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_ProfileDlg.h"
24
25 #include "HYDROGUI_Module.h"
26 #include <CurveCreator_Widget.h>
27 #include <CurveCreator_ICurve.hxx>
28
29 #include <OCCViewer_ViewModel.h>
30 #include <OCCViewer_ViewWidget.h>
31
32 #include <QGroupBox>
33 #include <QHBoxLayout>
34 #include <QLabel>
35 #include <QLineEdit>
36
37 HYDROGUI_ProfileDlg::HYDROGUI_ProfileDlg( HYDROGUI_Module* theModule, const QString& theTitle )
38 : HYDROGUI_InputPanel( theModule, theTitle ), myName(NULL)
39 {
40   QHBoxLayout* aNameLayout = new QHBoxLayout();
41   QLabel* aNameLabel = new QLabel(tr("PROFILE_NAME_TLT"), this);
42   aNameLayout->addWidget(aNameLabel);
43   myName = new QLineEdit(this);
44   aNameLayout->addWidget(myName);
45
46   addLayout(aNameLayout);
47
48   myEditorWidget = new CurveCreator_Widget( this, NULL );
49   addWidget( myEditorWidget, 3 );
50
51   myViewWidget = new OCCViewer_ViewWidget( this );
52   addWidget( myViewWidget, 4 );
53
54   //myAddElementBox = new QGroupBox( tr( "ADD_ELEMENT" ), this );
55   //addWidget( myAddElementBox, 2 );
56
57   //QBoxLayout* anAddElementLayout = new QVBoxLayout( myAddElementBox );
58   //anAddElementLayout->setMargin( 0 );
59   //anAddElementLayout->setSpacing( 5 );
60
61   connect( myEditorWidget, SIGNAL( selectionChanged() ), this, SIGNAL( selectionChanged() ) );
62   connect( myEditorWidget, SIGNAL( subOperationStarted(QWidget*) ), this, SLOT( processStartedSubOperation(QWidget*) ) );
63   connect( myEditorWidget, SIGNAL( subOperationFinished(QWidget*) ), this, SLOT( processFinishedSubOperation(QWidget*) ) );
64
65   //myAddElementBox->hide();
66 }
67
68 HYDROGUI_ProfileDlg::~HYDROGUI_ProfileDlg()
69 {
70 }
71
72 void HYDROGUI_ProfileDlg::setOCCViewer( OCCViewer_Viewer* theViewer )
73 {
74   myEditorWidget->setOCCViewer( theViewer );
75 }
76
77 void HYDROGUI_ProfileDlg::processStartedSubOperation( QWidget* theWidget )
78 {
79   //myEditorWidget->setEnabled( false );
80
81   //QBoxLayout* anAddElementLayout = dynamic_cast<QBoxLayout*>( myAddElementBox->layout() );
82   //anAddElementLayout->addWidget( theWidget );
83
84   //theWidget->show();
85   //myAddElementBox->show();
86 }
87
88 void HYDROGUI_ProfileDlg::processFinishedSubOperation( QWidget* theWidget )
89 {
90   /*myEditorWidget->setEnabled( true );
91
92   QBoxLayout* anAddElementLayout = dynamic_cast<QBoxLayout*>( myAddElementBox->layout() );
93   anAddElementLayout->removeWidget( theWidget );
94
95   theWidget->hide();
96   myAddElementBox->hide();*/
97 }
98
99 void HYDROGUI_ProfileDlg::reset()
100 {
101 }
102
103 void HYDROGUI_ProfileDlg::setProfileName( const QString& theName )
104 {
105   myName->setText(theName);
106 }
107
108 QString HYDROGUI_ProfileDlg::getProfileName() const
109 {
110   return myName->text();
111 }
112
113 void HYDROGUI_ProfileDlg::setCurve( CurveCreator_ICurve* theCurve )
114 {
115   myEditorWidget->setCurve( theCurve );
116 }
117
118 QList<int> HYDROGUI_ProfileDlg::getSelectedSections()
119 {
120   return myEditorWidget->getSelectedSections();
121 }
122
123 QList< QPair< int, int > > HYDROGUI_ProfileDlg::getSelectedPoints()
124 {
125   return myEditorWidget->getSelectedPoints();
126 }
127
128 /**
129  * Redirect the delete action to editor widget
130  */
131 void HYDROGUI_ProfileDlg::deleteSelected()
132 {
133   myEditorWidget->removeSelected();
134 }
135
136 /**
137  * Checks whether there are some to delete
138  */
139 bool HYDROGUI_ProfileDlg::deleteEnabled()
140 {
141   return myEditorWidget->removeEnabled();
142 }