Salome HOME
Bugs 153, 154.
[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_ViewPort3d.h>
30 #include <OCCViewer_Utilities.h>
31 #include <OCCViewer_ViewManager.h>
32 #include <OCCViewer_ViewFrame.h>
33 #include <LightApp_Application.h>
34
35 #include <SUIT_Session.h>
36 #include <SUIT_ResourceMgr.h>
37
38 #include <QGroupBox>
39 #include <QHBoxLayout>
40 #include <QLabel>
41 #include <QLineEdit>
42
43 HYDROGUI_ProfileDlg::HYDROGUI_ProfileDlg( HYDROGUI_Module* theModule, const QString& theTitle )
44 : HYDROGUI_InputPanel( theModule, theTitle ), myName(NULL)
45 {
46   QHBoxLayout* aNameLayout = new QHBoxLayout();
47   QLabel* aNameLabel = new QLabel(tr("PROFILE_NAME_TLT"), this);
48   aNameLayout->addWidget(aNameLabel);
49   myName = new QLineEdit(this);
50   aNameLayout->addWidget(myName);
51
52   addLayout(aNameLayout);
53
54   int anActionFlags = 
55     CurveCreator_Widget::DisableNewSection | CurveCreator_Widget::DisableDetectionMode;
56   myEditorWidget = new CurveCreator_Widget( this, NULL, anActionFlags );
57   addWidget( myEditorWidget, 3 );
58
59   myAddElementBox = new QGroupBox( tr( "ADD_ELEMENT" ), this );
60   addWidget( myAddElementBox, 2 );
61
62   QBoxLayout* anAddElementLayout = new QVBoxLayout( myAddElementBox );
63   anAddElementLayout->setMargin( 0 );
64   anAddElementLayout->setSpacing( 5 );
65
66
67   OCCViewer_ViewManager* aViewMgr = new OCCViewer_ViewManager( theModule->getApp()->activeStudy(), 0 );
68   myViewer = new OCCViewer_Viewer( true );
69
70   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
71   myViewer->setBackground( OCCViewer_ViewFrame::TOP_LEFT,
72                      aResMgr->backgroundValue( "OCCViewer", "xz_background", myViewer->background(OCCViewer_ViewFrame::TOP_LEFT) ) );
73   myViewer->setBackground( OCCViewer_ViewFrame::TOP_RIGHT,
74                      aResMgr->backgroundValue( "OCCViewer", "yz_background", myViewer->background(OCCViewer_ViewFrame::TOP_RIGHT) ) );
75   myViewer->setBackground( OCCViewer_ViewFrame::BOTTOM_LEFT,
76                      aResMgr->backgroundValue( "OCCViewer", "xy_background", myViewer->background(OCCViewer_ViewFrame::BOTTOM_LEFT) ) );
77   myViewer->setBackground( OCCViewer_ViewFrame::BOTTOM_RIGHT,
78                      aResMgr->backgroundValue( "OCCViewer", "background", myViewer->background(OCCViewer_ViewFrame::MAIN_VIEW) ) );
79
80   myViewer->setTrihedronSize( aResMgr->doubleValue( "3DViewer", "trihedron_size", myViewer->trihedronSize() ),
81                         aResMgr->booleanValue( "3DViewer", "relative_size", myViewer->trihedronRelative() ));
82   myViewer->setInteractionStyle( aResMgr->integerValue( "3DViewer", "navigation_mode", myViewer->interactionStyle() ) );
83   myViewer->setZoomingStyle( aResMgr->integerValue( "3DViewer", "zooming_mode", myViewer->zoomingStyle() ) );
84   myViewer->enablePreselection( aResMgr->booleanValue( "OCCViewer", "enable_preselection", myViewer->isPreselectionEnabled() ) );
85   myViewer->enableSelection( aResMgr->booleanValue( "OCCViewer", "enable_selection", myViewer->isSelectionEnabled() ) );
86
87   aViewMgr->setViewModel( myViewer );// custom view model, which extends SALOME_View interface
88   SUIT_ViewWindow* aViewWin = aViewMgr->createViewWindow();
89   addWidget( aViewWin, 4 );
90   myEditorWidget->setOCCViewer( myViewer );
91
92   connect( myEditorWidget, SIGNAL( selectionChanged() ), this, SIGNAL( selectionChanged() ) );
93   connect( myEditorWidget, SIGNAL( subOperationStarted(QWidget*) ), this, SLOT( processStartedSubOperation(QWidget*) ) );
94   connect( myEditorWidget, SIGNAL( subOperationFinished(QWidget*) ), this, SLOT( processFinishedSubOperation(QWidget*) ) );
95
96   myAddElementBox->hide();
97 }
98
99 HYDROGUI_ProfileDlg::~HYDROGUI_ProfileDlg()
100 {
101 }
102
103 void HYDROGUI_ProfileDlg::reset()
104 {
105   myEditorWidget->reset();
106 }
107
108 Handle(AIS_InteractiveContext) HYDROGUI_ProfileDlg::getAISContext()
109 {
110   return myViewer->getAISContext();
111 }
112
113 void HYDROGUI_ProfileDlg::setProfileName( const QString& theName )
114 {
115   myName->setText(theName);
116 }
117
118 QString HYDROGUI_ProfileDlg::getProfileName() const
119 {
120   return myName->text();
121 }
122
123 void HYDROGUI_ProfileDlg::setProfile( CurveCreator_ICurve* theProfile )
124 {
125   myEditorWidget->setCurve( theProfile );
126 }
127
128 QList<int> HYDROGUI_ProfileDlg::getSelectedSections()
129 {
130   return myEditorWidget->getSelectedSections();
131 }
132
133 QList< QPair< int, int > > HYDROGUI_ProfileDlg::getSelectedPoints()
134 {
135   return myEditorWidget->getSelectedPoints();
136 }
137
138 /**
139  * Redirect the delete action to editor widget
140  */
141 void HYDROGUI_ProfileDlg::deleteSelected()
142 {
143   myEditorWidget->removeSelected();
144 }
145
146 /**
147  * Checks whether there are some to delete
148  */
149 bool HYDROGUI_ProfileDlg::deleteEnabled()
150 {
151   return myEditorWidget->removeEnabled();
152 }
153
154 void HYDROGUI_ProfileDlg::processStartedSubOperation( QWidget* theWidget )
155 {
156   myEditorWidget->setEnabled( false );
157
158   QBoxLayout* anAddElementLayout = dynamic_cast<QBoxLayout*>( myAddElementBox->layout() );
159   anAddElementLayout->addWidget( theWidget );
160
161   theWidget->show();
162   myAddElementBox->show();
163 }
164
165 void HYDROGUI_ProfileDlg::processFinishedSubOperation( QWidget* theWidget )
166 {
167   myEditorWidget->setEnabled( true );
168
169   QBoxLayout* anAddElementLayout = dynamic_cast<QBoxLayout*>( myAddElementBox->layout() );
170   anAddElementLayout->removeWidget( theWidget );
171
172   theWidget->hide();
173   myAddElementBox->hide();
174 }