Salome HOME
Profile object creation.
[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_ViewWidget.h>
30 #include <OCCViewer_ViewPort3d.h>
31 #include <OCCViewer_Utilities.h>
32
33 #include <SUIT_Session.h>
34 #include <SUIT_ResourceMgr.h>
35
36 #include <QGroupBox>
37 #include <QHBoxLayout>
38 #include <QLabel>
39 #include <QLineEdit>
40
41 HYDROGUI_ProfileDlg::HYDROGUI_ProfileDlg( HYDROGUI_Module* theModule, const QString& theTitle )
42 : HYDROGUI_InputPanel( theModule, theTitle ), myName(NULL)
43 {
44   QHBoxLayout* aNameLayout = new QHBoxLayout();
45   QLabel* aNameLabel = new QLabel(tr("PROFILE_NAME_TLT"), this);
46   aNameLayout->addWidget(aNameLabel);
47   myName = new QLineEdit(this);
48   aNameLayout->addWidget(myName);
49
50   addLayout(aNameLayout);
51
52   myEditorWidget = new CurveCreator_Widget( this, NULL );
53   addWidget( myEditorWidget, 3 );
54
55   myViewWidget = new OCCViewer_ViewWidget( this, false );
56   OCCViewer_ViewPort3d* aViewPort = myViewWidget->getViewPort();
57   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
58   if ( aResMgr )
59     aViewPort->setBackground( aResMgr->backgroundValue( "OCCViewer", "background",
60                                                          Qtx::BackgroundData( Qt::black ) ) );
61   OCCViewer_Utilities::setViewWidget2DMode( myViewWidget, OCCViewer_ViewWidget::XZPlane );
62   addWidget( myViewWidget, 4 );
63
64   //myAddElementBox = new QGroupBox( tr( "ADD_ELEMENT" ), this );
65   //addWidget( myAddElementBox, 2 );
66
67   //QBoxLayout* anAddElementLayout = new QVBoxLayout( myAddElementBox );
68   //anAddElementLayout->setMargin( 0 );
69   //anAddElementLayout->setSpacing( 5 );
70
71   connect( myEditorWidget, SIGNAL( selectionChanged() ), this, SIGNAL( selectionChanged() ) );
72   connect( myEditorWidget, SIGNAL( subOperationStarted(QWidget*) ), this, SLOT( processStartedSubOperation(QWidget*) ) );
73   connect( myEditorWidget, SIGNAL( subOperationFinished(QWidget*) ), this, SLOT( processFinishedSubOperation(QWidget*) ) );
74
75   //myAddElementBox->hide();
76
77   myEditorWidget->setOCCViewWidget( myViewWidget );
78 }
79
80 HYDROGUI_ProfileDlg::~HYDROGUI_ProfileDlg()
81 {
82 }
83
84 void HYDROGUI_ProfileDlg::processStartedSubOperation( QWidget* theWidget )
85 {
86   //myEditorWidget->setEnabled( false );
87
88   //QBoxLayout* anAddElementLayout = dynamic_cast<QBoxLayout*>( myAddElementBox->layout() );
89   //anAddElementLayout->addWidget( theWidget );
90
91   //theWidget->show();
92   //myAddElementBox->show();
93 }
94
95 void HYDROGUI_ProfileDlg::processFinishedSubOperation( QWidget* theWidget )
96 {
97   /*myEditorWidget->setEnabled( true );
98
99   QBoxLayout* anAddElementLayout = dynamic_cast<QBoxLayout*>( myAddElementBox->layout() );
100   anAddElementLayout->removeWidget( theWidget );
101
102   theWidget->hide();
103   myAddElementBox->hide();*/
104 }
105
106 void HYDROGUI_ProfileDlg::reset()
107 {
108   myEditorWidget->reset();
109 }
110
111 Handle(AIS_InteractiveContext) HYDROGUI_ProfileDlg::getAISContext()
112 {
113   return myViewWidget->getAISContext();
114 }
115
116 void HYDROGUI_ProfileDlg::setProfileName( const QString& theName )
117 {
118   myName->setText(theName);
119 }
120
121 QString HYDROGUI_ProfileDlg::getProfileName() const
122 {
123   return myName->text();
124 }
125
126 void HYDROGUI_ProfileDlg::setProfile( CurveCreator_ICurve* theProfile )
127 {
128   myEditorWidget->setCurve( theProfile );
129 }
130
131 QList<int> HYDROGUI_ProfileDlg::getSelectedSections()
132 {
133   return myEditorWidget->getSelectedSections();
134 }
135
136 QList< QPair< int, int > > HYDROGUI_ProfileDlg::getSelectedPoints()
137 {
138   return myEditorWidget->getSelectedPoints();
139 }
140
141 /**
142  * Redirect the delete action to editor widget
143  */
144 void HYDROGUI_ProfileDlg::deleteSelected()
145 {
146   myEditorWidget->removeSelected();
147 }
148
149 /**
150  * Checks whether there are some to delete
151  */
152 bool HYDROGUI_ProfileDlg::deleteEnabled()
153 {
154   return myEditorWidget->removeEnabled();
155 }