Salome HOME
refs #514: add 'Cursor for specific operations' section into preferences of HYDRO...
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_InputPanel.cxx
index 68c084a2534e12904e1ad29f1da8b200adbd862a..a496a82d7c416e31d2e9832ebab8dd8b45edd65f 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -6,7 +6,7 @@
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -28,8 +28,9 @@
 
 #include <QLayout>
 #include <QPushButton>
+#include <QDir>
 
-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,6 +38,7 @@ 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 );
@@ -45,25 +47,29 @@ HYDROGUI_InputPanel::HYDROGUI_InputPanel( HYDROGUI_Module* theModule, const QStr
   QBoxLayout* aMainLayout = new QVBoxLayout( myMainFrame );
   aMainLayout->setMargin( 0 );
   aMainLayout->setSpacing( 5 );
+    
+  aLayout->addWidget( myMainFrame, 1 );
 
   myBtnFrame = new QFrame( aFrame );
-  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 );
+  if ( doInitLayout ) {
+    myApply = new QPushButton( tr( "APPLY" ), myBtnFrame );
+
+    aBtnsLayout->addWidget( myApply, 0 );
+    aBtnsLayout->addWidget( myCancel, 0 );
+    aBtnsLayout->addStretch( 1 );
+    aBtnsLayout->addWidget( myHelp, 0 );
 
-  connect( myApply,  SIGNAL( clicked() ), this, SLOT( onApply()  ) );
+    connect( myApply,  SIGNAL( clicked() ), this, SLOT( onApply()  ) );
+  }
   connect( myCancel, SIGNAL( clicked() ), this, SLOT( onCancel() ) );
   connect( myHelp,   SIGNAL( clicked() ), this, SLOT( onHelp()   ) );
 }
@@ -77,6 +83,16 @@ HYDROGUI_Module* HYDROGUI_InputPanel::module() const
   return myModule;
 }
 
+bool HYDROGUI_InputPanel::isApplyEnabled() const
+{
+    return myApply->isEnabled();
+}
+
+void HYDROGUI_InputPanel::setApplyEnabled( bool on )
+{
+    myApply->setEnabled( on );
+}
+
 void HYDROGUI_InputPanel::onApply()
 {
   emit panelApply(); 
@@ -89,12 +105,18 @@ void HYDROGUI_InputPanel::onCancel()
 
 void HYDROGUI_InputPanel::onHelp()
 {
+  emit panelHelp();
+}
+
+void HYDROGUI_InputPanel::closeEvent ( QCloseEvent * event )
+{
+  emit panelCancel();
 }
 
-void HYDROGUI_InputPanel::addWidget( QWidget* theWidget )
+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 )
@@ -114,3 +136,7 @@ QFrame* HYDROGUI_InputPanel::mainFrame() const
   return myMainFrame;
 }
 
+QFrame* HYDROGUI_InputPanel::buttonFrame() const
+{
+  return myBtnFrame;
+}