1 // Copyright (C) 2014-2015 EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 // Lesser General Public License for more details.
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #include "HYDROGUI_ProfileDlg.h"
21 #include "HYDROGUI_Module.h"
22 #include "HYDROGUI_Tool.h"
23 #include "HYDROGUI_AISTrihedron.h"
25 #include <CurveCreator_Widget.h>
26 #include <CurveCreator_ICurve.hxx>
27 #include <CurveCreator_Utils.hxx>
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>
35 #include <SUIT_Session.h>
36 #include <SUIT_ResourceMgr.h>
39 #include <QHBoxLayout>
42 #include <QMouseEvent>
44 HYDROGUI_ProfileDlg::HYDROGUI_ProfileDlg( HYDROGUI_Module* theModule, const QString& theTitle )
45 : HYDROGUI_ViewerDlg( theModule, theTitle ),
48 QHBoxLayout* aNameLayout = new QHBoxLayout();
49 QLabel* aNameLabel = new QLabel(tr("PROFILE_NAME_TLT"), this);
50 aNameLayout->addWidget(aNameLabel);
51 myName = new QLineEdit(this);
52 aNameLayout->addWidget(myName);
54 addLayout(aNameLayout);
57 CurveCreator_Widget::DisableNewSection | CurveCreator_Widget::DisableDetectionMode |
58 CurveCreator_Widget::DisableClosedSection;
59 QStringList aCoordTitles;
60 aCoordTitles << tr( "U_TITLE" ) << tr( "Z_TITLE" );
61 myEditorWidget = new CurveCreator_Widget( this, NULL, anActionFlags, aCoordTitles );
62 addWidget( myEditorWidget, 3 );
64 myAddElementBox = new QGroupBox( tr( "ADD_ELEMENT" ), this );
65 addWidget( myAddElementBox, 2 );
67 QBoxLayout* anAddElementLayout = new QVBoxLayout( myAddElementBox );
68 anAddElementLayout->setMargin( 0 );
69 anAddElementLayout->setSpacing( 5 );
71 myEditorWidget->setOCCViewer( viewer() );
73 connect( myEditorWidget, SIGNAL( selectionChanged() ), this, SIGNAL( selectionChanged() ) );
74 connect( myEditorWidget, SIGNAL( subOperationStarted(QWidget*, bool) ), this, SLOT( processStartedSubOperation(QWidget*, bool) ) );
75 connect( myEditorWidget, SIGNAL( subOperationFinished(QWidget*) ), this, SLOT( processFinishedSubOperation(QWidget*) ) );
77 myAddElementBox->hide();
80 HYDROGUI_ProfileDlg::~HYDROGUI_ProfileDlg()
84 void HYDROGUI_ProfileDlg::reset()
86 myEditorWidget->reset();
87 myEditorWidget->setActionMode( CurveCreator_Widget::AdditionMode );
90 void HYDROGUI_ProfileDlg::setProfileName( const QString& theName )
92 myName->setText(theName);
95 QString HYDROGUI_ProfileDlg::getProfileName() const
97 return myName->text();
100 void HYDROGUI_ProfileDlg::setProfile( CurveCreator_ICurve* theProfile )
102 myEditorWidget->setCurve( theProfile );
104 // select the single section by default
105 QList<int> aSections;
107 myEditorWidget->setSelectedSections( aSections );
110 QList<int> HYDROGUI_ProfileDlg::getSelectedSections()
112 return myEditorWidget->getSelectedSections();
116 * Redirect the delete action to editor widget
118 void HYDROGUI_ProfileDlg::deleteSelected()
120 myEditorWidget->removeSelected();
124 * Checks whether there are some to delete
126 bool HYDROGUI_ProfileDlg::deleteEnabled()
128 return myEditorWidget->removeEnabled();
131 void HYDROGUI_ProfileDlg::processStartedSubOperation( QWidget* theWidget, bool theIsEdit )
133 myEditorWidget->setEnabled( false );
135 myAddElementBox->setTitle( theIsEdit ? tr( "EDIT_ELEMENT" ) : tr( "ADD_ELEMENT" ) );
136 QBoxLayout* anAddElementLayout = dynamic_cast<QBoxLayout*>( myAddElementBox->layout() );
137 anAddElementLayout->addWidget( theWidget );
140 myAddElementBox->show();
143 void HYDROGUI_ProfileDlg::processFinishedSubOperation( QWidget* theWidget )
145 myEditorWidget->setEnabled( true );
147 QBoxLayout* anAddElementLayout = dynamic_cast<QBoxLayout*>( myAddElementBox->layout() );
148 anAddElementLayout->removeWidget( theWidget );
151 myAddElementBox->hide();
154 Handle(AIS_Trihedron) HYDROGUI_ProfileDlg::trihedron()
156 SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
157 Handle(AIS_Trihedron) aTrihedron =
158 HYDROGUI_AISTrihedron::createTrihedron( aResMgr->doubleValue( "3DViewer", "trihedron_size", viewer()->trihedronSize() ) );