Salome HOME
Profile object creation.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ProfileDlg.cxx
index a1ae6afd4b19857d1c4e55f2da35008f58bcb661..e6e24a486302691f93e9e895cabd9dc51d060ebe 100644 (file)
 #include <CurveCreator_Widget.h>
 #include <CurveCreator_ICurve.hxx>
 
-#include <OCCViewer_ViewModel.h>
 #include <OCCViewer_ViewWidget.h>
+#include <OCCViewer_ViewPort3d.h>
+#include <OCCViewer_Utilities.h>
+
+#include <SUIT_Session.h>
+#include <SUIT_ResourceMgr.h>
 
 #include <QGroupBox>
 #include <QHBoxLayout>
@@ -48,9 +52,14 @@ HYDROGUI_ProfileDlg::HYDROGUI_ProfileDlg( HYDROGUI_Module* theModule, const QStr
   myEditorWidget = new CurveCreator_Widget( this, NULL );
   addWidget( myEditorWidget, 3 );
 
-  //OCCViewer_ViewWindow* aPreview = new OCCViewer_ViewWindow(
-  OCCViewer_ViewWidget* aViewWidget = new OCCViewer_ViewWidget( this );
-  addWidget( aViewWidget, 4 );
+  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 );
   //addWidget( myAddElementBox, 2 );
@@ -64,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 )
@@ -99,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 )
@@ -111,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()