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