Salome HOME
Image positioning by two points.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_InputPanel.cxx
index 2186f2791da388f55693e551ce68eb438d7be587..23a9c06e756b29500bc2c3a13b384cce7b696f28 100644 (file)
@@ -29,7 +29,7 @@
 #include <QLayout>
 #include <QPushButton>
 
-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 )
 {
@@ -37,35 +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( this );
-  QGridLayout* aMainLayout = new QGridLayout( myMainFrame );
-  aMainLayout->setMargin( 0 );
-  aMainLayout->setSpacing( 5 );
-
-  myBtnFrame = new QFrame( this );
-  aLayout->addWidget( myMainFrame, 1 );
-  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()   ) );
+  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()
@@ -91,37 +95,30 @@ void HYDROGUI_InputPanel::onHelp()
 {
 }
 
-void HYDROGUI_InputPanel::addWidget( const QString& theLabel, QWidget* theWidget )
+void HYDROGUI_InputPanel::closeEvent ( QCloseEvent * event )
 {
-  QGridLayout* aMainLayout = dynamic_cast<QGridLayout*>( myMainFrame->layout() );
-  int aRow = aMainLayout->rowCount();
-  aMainLayout->addWidget( new QLabel( theLabel, this ), aRow, 0 );
-  aMainLayout->addWidget( theWidget, aRow, 1 );
+  emit panelCancel();
 }
 
-void HYDROGUI_InputPanel::addWidget( QWidget* theWidget,
-                                     const int theRow,
-                                     const int theColumn )
+void HYDROGUI_InputPanel::addWidget( QWidget* theWidget, int theStretch )
 {
-  QGridLayout* aMainLayout = dynamic_cast<QGridLayout*>( myMainFrame->layout() );
-  aMainLayout->addWidget( theWidget, theRow, theColumn );
+  QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );
+  aMainLayout->addWidget( theWidget, theStretch );
 }
 
-void HYDROGUI_InputPanel::addSeparator()
+void HYDROGUI_InputPanel::addLayout( QLayout* theLayout )
 {
-  QGridLayout* aMainLayout = dynamic_cast<QGridLayout*>( myMainFrame->layout() );
-  int aRow = aMainLayout->rowCount();
-
-  QFrame* aLine = new QFrame();
-  aLine->setFrameShape( QFrame::HLine );
-  aLine->setFrameShadow( QFrame::Sunken );
+  QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );
+  aMainLayout->addLayout( theLayout );
+}
 
-  aMainLayout->addWidget( aLine, aRow, 0, 1, 2 );
+void HYDROGUI_InputPanel::addStretch()
+{
+  QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );
+  aMainLayout->addStretch();
 }
 
-void HYDROGUI_InputPanel::setRowStretch()
+QFrame* HYDROGUI_InputPanel::mainFrame() const
 {
-  QGridLayout* aMainLayout = dynamic_cast<QGridLayout*>( myMainFrame->layout() );
-  int aRow = aMainLayout->rowCount();
-  aMainLayout->setRowStretch( aRow, 1 );
+  return myMainFrame;
 }