Salome HOME
Image positioning by two points.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_InputPanel.cxx
index a20c755bcfb3d782e399589d54e65d6deae0892f..23a9c06e756b29500bc2c3a13b384cce7b696f28 100644 (file)
@@ -28,9 +28,8 @@
 
 #include <QLayout>
 #include <QPushButton>
-#include <QStackedLayout>
 
-HYDROGUI_InputPanel::HYDROGUI_InputPanel( HYDROGUI_Module* theModule, const QString& theTitle )
+HYDROGUI_InputPanel::HYDROGUI_InputPanel( HYDROGUI_Module* theModule, const QString& theTitle, bool doInitLayout )
 : QDockWidget( theModule->application()->desktop() ),
   myModule( theModule )
 {
@@ -38,39 +37,39 @@ HYDROGUI_InputPanel::HYDROGUI_InputPanel( HYDROGUI_Module* theModule, const QStr
   setWindowTitle( theTitle );
   setAllowedAreas( Qt::RightDockWidgetArea );
 
-  QFrame* aFrame = new QFrame( this );
-  setWidget( aFrame );
-  QVBoxLayout* aLayout = new QVBoxLayout( aFrame );
-  
-  myMainFrame = new QFrame( aFrame );
-  QVBoxLayout* aMainLayout = new QVBoxLayout( myMainFrame );
-  aMainLayout->setMargin( 0 );
-  aMainLayout->setSpacing( 5 );
-
-  myStackedLayout = new QStackedLayout();
-
-  myBtnFrame = new QFrame( aFrame );
-  activateWidget( myBtnFrame );
-  
-  aLayout->addWidget( myMainFrame, 3 );
-  aLayout->addLayout( myStackedLayout, 1 );
-
-  QHBoxLayout* aBtnsLayout = new QHBoxLayout( myBtnFrame );
-  aBtnsLayout->setMargin( 5 );
-  aBtnsLayout->setSpacing( 5 );
-
-  myApply = new QPushButton( tr( "APPLY" ), myBtnFrame );
-  myCancel = new QPushButton( tr( "CANCEL" ), myBtnFrame );
-  myHelp = new QPushButton( tr( "HELP" ), myBtnFrame );
-
-  aBtnsLayout->addWidget( myApply, 0 );
-  aBtnsLayout->addWidget( myCancel, 0 );
-  aBtnsLayout->addStretch( 1 );
-  aBtnsLayout->addWidget( myHelp, 0 );
-
-  connect( myApply,  SIGNAL( clicked() ), this, SLOT( onApply()  ) );
-  connect( myCancel, SIGNAL( clicked() ), this, SLOT( onCancel() ) );
-  connect( myHelp,   SIGNAL( clicked() ), this, SLOT( onHelp()   ) );
+  if ( doInitLayout ) {
+
+    QFrame* aFrame = new QFrame( this );
+    setWidget( aFrame );
+    QVBoxLayout* aLayout = new QVBoxLayout( aFrame );
+    
+    myMainFrame = new QFrame( aFrame );
+    QBoxLayout* aMainLayout = new QVBoxLayout( myMainFrame );
+    aMainLayout->setMargin( 0 );
+    aMainLayout->setSpacing( 5 );
+      
+    aLayout->addWidget( myMainFrame, 1 );
+
+    myBtnFrame = new QFrame( aFrame );
+    aLayout->addWidget( myBtnFrame, 0 );
+
+    QHBoxLayout* aBtnsLayout = new QHBoxLayout( myBtnFrame );
+    aBtnsLayout->setMargin( 5 );
+    aBtnsLayout->setSpacing( 5 );
+
+    myApply = new QPushButton( tr( "APPLY" ), myBtnFrame );
+    myCancel = new QPushButton( tr( "CANCEL" ), myBtnFrame );
+    myHelp = new QPushButton( tr( "HELP" ), myBtnFrame );
+
+    aBtnsLayout->addWidget( myApply, 0 );
+    aBtnsLayout->addWidget( myCancel, 0 );
+    aBtnsLayout->addStretch( 1 );
+    aBtnsLayout->addWidget( myHelp, 0 );
+
+    connect( myApply,  SIGNAL( clicked() ), this, SLOT( onApply()  ) );
+    connect( myCancel, SIGNAL( clicked() ), this, SLOT( onCancel() ) );
+    connect( myHelp,   SIGNAL( clicked() ), this, SLOT( onHelp()   ) );
+  }
 }
 
 HYDROGUI_InputPanel::~HYDROGUI_InputPanel()
@@ -96,10 +95,15 @@ void HYDROGUI_InputPanel::onHelp()
 {
 }
 
-void HYDROGUI_InputPanel::addWidget( QWidget* theWidget )
+void HYDROGUI_InputPanel::closeEvent ( QCloseEvent * event )
+{
+  emit panelCancel();
+}
+
+void HYDROGUI_InputPanel::addWidget( QWidget* theWidget, int theStretch )
 {
   QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );
-  aMainLayout->addWidget( theWidget );
+  aMainLayout->addWidget( theWidget, theStretch );
 }
 
 void HYDROGUI_InputPanel::addLayout( QLayout* theLayout )
@@ -118,15 +122,3 @@ QFrame* HYDROGUI_InputPanel::mainFrame() const
 {
   return myMainFrame;
 }
-
-void HYDROGUI_InputPanel::activateWidget( QWidget* theWidget )
-{
-  if (theWidget == 0) {
-    myStackedLayout->setCurrentIndex( 0 );
-  }
-  else { 
-    if ( myStackedLayout->indexOf( theWidget ) == -1 )
-      myStackedLayout->addWidget( theWidget );
-    myStackedLayout->setCurrentWidget( theWidget );
-  }
-}