Salome HOME
a1ae6afd4b19857d1c4e55f2da35008f58bcb661
[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   //OCCViewer_ViewWindow* aPreview = new OCCViewer_ViewWindow(
52   OCCViewer_ViewWidget* aViewWidget = new OCCViewer_ViewWidget( this );
53   addWidget( aViewWidget, 4 );
54
55   //myAddElementBox = new QGroupBox( tr( "ADD_ELEMENT" ), this );
56   //addWidget( myAddElementBox, 2 );
57
58   //QBoxLayout* anAddElementLayout = new QVBoxLayout( myAddElementBox );
59   //anAddElementLayout->setMargin( 0 );
60   //anAddElementLayout->setSpacing( 5 );
61
62   connect( myEditorWidget, SIGNAL( selectionChanged() ), this, SIGNAL( selectionChanged() ) );
63   connect( myEditorWidget, SIGNAL( subOperationStarted(QWidget*) ), this, SLOT( processStartedSubOperation(QWidget*) ) );
64   connect( myEditorWidget, SIGNAL( subOperationFinished(QWidget*) ), this, SLOT( processFinishedSubOperation(QWidget*) ) );
65
66   //myAddElementBox->hide();
67 }
68
69 HYDROGUI_ProfileDlg::~HYDROGUI_ProfileDlg()
70 {
71 }
72
73 void HYDROGUI_ProfileDlg::setOCCViewer( OCCViewer_Viewer* theViewer )
74 {
75   myEditorWidget->setOCCViewer( theViewer );
76 }
77
78 void HYDROGUI_ProfileDlg::processStartedSubOperation( QWidget* theWidget )
79 {
80   //myEditorWidget->setEnabled( false );
81
82   //QBoxLayout* anAddElementLayout = dynamic_cast<QBoxLayout*>( myAddElementBox->layout() );
83   //anAddElementLayout->addWidget( theWidget );
84
85   //theWidget->show();
86   //myAddElementBox->show();
87 }
88
89 void HYDROGUI_ProfileDlg::processFinishedSubOperation( QWidget* theWidget )
90 {
91   /*myEditorWidget->setEnabled( true );
92
93   QBoxLayout* anAddElementLayout = dynamic_cast<QBoxLayout*>( myAddElementBox->layout() );
94   anAddElementLayout->removeWidget( theWidget );
95
96   theWidget->hide();
97   myAddElementBox->hide();*/
98 }
99
100 void HYDROGUI_ProfileDlg::reset()
101 {
102 }
103
104 void HYDROGUI_ProfileDlg::setProfileName( const QString& theName )
105 {
106   myName->setText(theName);
107 }
108
109 QString HYDROGUI_ProfileDlg::getProfileName() const
110 {
111   return myName->text();
112 }
113
114 void HYDROGUI_ProfileDlg::setCurve( CurveCreator_ICurve* theCurve )
115 {
116   myEditorWidget->setCurve( theCurve );
117 }
118
119 QList<int> HYDROGUI_ProfileDlg::getSelectedSections()
120 {
121   return myEditorWidget->getSelectedSections();
122 }
123
124 QList< QPair< int, int > > HYDROGUI_ProfileDlg::getSelectedPoints()
125 {
126   return myEditorWidget->getSelectedPoints();
127 }
128
129 /**
130  * Redirect the delete action to editor widget
131  */
132 void HYDROGUI_ProfileDlg::deleteSelected()
133 {
134   myEditorWidget->removeSelected();
135 }
136
137 /**
138  * Checks whether there are some to delete
139  */
140 bool HYDROGUI_ProfileDlg::deleteEnabled()
141 {
142   return myEditorWidget->removeEnabled();
143 }