Salome HOME
Profile object creation.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ProfileDlg.cxx
index 37a295ca44e1e5ce1bbe5db307f07638c5407365..e6e24a486302691f93e9e895cabd9dc51d060ebe 100644 (file)
@@ -28,6 +28,7 @@
 
 #include <OCCViewer_ViewWidget.h>
 #include <OCCViewer_ViewPort3d.h>
+#include <OCCViewer_Utilities.h>
 
 #include <SUIT_Session.h>
 #include <SUIT_ResourceMgr.h>
@@ -51,12 +52,13 @@ HYDROGUI_ProfileDlg::HYDROGUI_ProfileDlg( HYDROGUI_Module* theModule, const QStr
   myEditorWidget = new CurveCreator_Widget( this, NULL );
   addWidget( myEditorWidget, 3 );
 
-  myViewWidget = new OCCViewer_ViewWidget( this );
+  myViewWidget = new OCCViewer_ViewWidget( this, false );
   OCCViewer_ViewPort3d* aViewPort = myViewWidget->getViewPort();
   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
   if ( aResMgr )
     aViewPort->setBackground( aResMgr->backgroundValue( "OCCViewer", "background",
                                                          Qtx::BackgroundData( Qt::black ) ) );
+  OCCViewer_Utilities::setViewWidget2DMode( myViewWidget, OCCViewer_ViewWidget::XZPlane );
   addWidget( myViewWidget, 4 );
 
   //myAddElementBox = new QGroupBox( tr( "ADD_ELEMENT" ), this );
@@ -71,15 +73,12 @@ HYDROGUI_ProfileDlg::HYDROGUI_ProfileDlg( HYDROGUI_Module* theModule, const QStr
   connect( myEditorWidget, SIGNAL( subOperationFinished(QWidget*) ), this, SLOT( processFinishedSubOperation(QWidget*) ) );
 
   //myAddElementBox->hide();
-}
 
-HYDROGUI_ProfileDlg::~HYDROGUI_ProfileDlg()
-{
+  myEditorWidget->setOCCViewWidget( myViewWidget );
 }
 
-void HYDROGUI_ProfileDlg::setOCCViewer( OCCViewer_Viewer* theViewer )
+HYDROGUI_ProfileDlg::~HYDROGUI_ProfileDlg()
 {
-  myEditorWidget->setOCCViewer( theViewer );
 }
 
 void HYDROGUI_ProfileDlg::processStartedSubOperation( QWidget* theWidget )
@@ -106,6 +105,12 @@ void HYDROGUI_ProfileDlg::processFinishedSubOperation( QWidget* theWidget )
 
 void HYDROGUI_ProfileDlg::reset()
 {
+  myEditorWidget->reset();
+}
+
+Handle(AIS_InteractiveContext) HYDROGUI_ProfileDlg::getAISContext()
+{
+  return myViewWidget->getAISContext();
 }
 
 void HYDROGUI_ProfileDlg::setProfileName( const QString& theName )
@@ -118,9 +123,9 @@ QString HYDROGUI_ProfileDlg::getProfileName() const
   return myName->text();
 }
 
-void HYDROGUI_ProfileDlg::setCurve( CurveCreator_ICurve* theCurve )
+void HYDROGUI_ProfileDlg::setProfile( CurveCreator_ICurve* theProfile )
 {
-  myEditorWidget->setCurve( theCurve );
+  myEditorWidget->setCurve( theProfile );
 }
 
 QList<int> HYDROGUI_ProfileDlg::getSelectedSections()