X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_InputPanel.cxx;h=0049fac767fe8fe0a6300fb991e0f88c1530e04b;hb=fce3f1240b6161d7cb837344078e5943b90eca65;hp=6e3181f93e409b6b0d1c7dc4f291335e87c14b36;hpb=c66fbd26a75a044039dc2b2f8dea2249582deabc;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_InputPanel.cxx b/src/HYDROGUI/HYDROGUI_InputPanel.cxx index 6e3181f9..0049fac7 100644 --- a/src/HYDROGUI/HYDROGUI_InputPanel.cxx +++ b/src/HYDROGUI/HYDROGUI_InputPanel.cxx @@ -1,45 +1,92 @@ +// Copyright (C) 2014-2015 EDF-R&D +// 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, 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 +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include -#include -#include -#include +#ifndef LIGHT_MODE + #include + #include + #include +#endif + +#include #include #include - -HYDROGUI_InputPanel::HYDROGUI_InputPanel( HYDROGUI_Module* theModule, const QString& theTitle ) +#include +#include + +HYDROGUI_InputPanel::HYDROGUI_InputPanel( HYDROGUI_Module* theModule, const QString& theTitle, + bool doInitLayout, bool isSplitter ) +#ifdef LIGHT_MODE +: QDockWidget( 0 ), +#else : QDockWidget( theModule->application()->desktop() ), +#endif myModule( theModule ) { setFloating( false ); 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 ); - myBtnFrame = new QFrame( this ); + myMainFrame = new QFrame( aFrame ); + QBoxLayout* aMainLayout = new QVBoxLayout( myMainFrame ); + aMainLayout->setMargin( 0 ); + aMainLayout->setSpacing( 5 ); + if( isSplitter ) + { + mySplitter = new QSplitter( myMainFrame ); + mySplitter->setOrientation( Qt::Vertical ); + aMainLayout->addWidget( mySplitter, 1 ); + } + else + mySplitter = 0; + 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 ); + myCancel = new QPushButton( tr( "CLOSE" ), 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 ) { + myApplyAndClose = new QPushButton( tr( "APPLY_AND_CLOSE" ), myBtnFrame ); + myApply = new QPushButton( tr( "APPLY" ), myBtnFrame ); + + aBtnsLayout->addWidget( myApplyAndClose, 0 ); + aBtnsLayout->addWidget( myApply, 0 ); + aBtnsLayout->addWidget( myCancel, 0 ); + aBtnsLayout->addStretch( 1 ); + aBtnsLayout->addWidget( myHelp, 0 ); + + connect( myApplyAndClose, SIGNAL( clicked() ), this, SLOT( onApplyAndClose() ) ); + 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() @@ -51,43 +98,106 @@ HYDROGUI_Module* HYDROGUI_InputPanel::module() const return myModule; } -void HYDROGUI_InputPanel::OnApply() +bool HYDROGUI_InputPanel::isApplyEnabled() const +{ + return myApply->isEnabled(); +} + +void HYDROGUI_InputPanel::setApplyEnabled( bool on ) +{ + myApplyAndClose->setEnabled( on ); + myApply->setEnabled( on ); +} + +void HYDROGUI_InputPanel::onApplyAndClose() +{ + emit panelApplyAndClose(); +} + +void HYDROGUI_InputPanel::onApply() { emit panelApply(); } -void HYDROGUI_InputPanel::OnCancel() +void HYDROGUI_InputPanel::onCancel() { emit panelCancel(); } -void HYDROGUI_InputPanel::OnHelp() +void HYDROGUI_InputPanel::onHelp() { + emit panelHelp(); } -void HYDROGUI_InputPanel::addWidget( const QString& theLabel, QWidget* theWidget ) +void HYDROGUI_InputPanel::closeEvent ( QCloseEvent * event ) { - QGridLayout* aMainLayout = dynamic_cast( myMainFrame->layout() ); - int aRow = aMainLayout->rowCount(); - aMainLayout->addWidget( new QLabel( theLabel, this ), aRow, 0 ); - aMainLayout->addWidget( theWidget, aRow, 1 ); + emit panelCancel(); +} + +void HYDROGUI_InputPanel::insertWidget( QWidget* theWidget, int theIndex, int theStretch ) +{ + if( mySplitter ) + { + mySplitter->insertWidget( theIndex, theWidget ); + mySplitter->setStretchFactor( theIndex, theStretch ); + } + else + { + QBoxLayout* aMainLayout = dynamic_cast( myMainFrame->layout() ); + aMainLayout->insertWidget( theIndex, theWidget, theStretch ); + } +} + +void HYDROGUI_InputPanel::addWidget( QWidget* theWidget, int theStretch ) +{ + if( mySplitter ) + { + int s = mySplitter->count(); + mySplitter->addWidget( theWidget ); + mySplitter->setStretchFactor( s, theStretch ); + } + else + { + QBoxLayout* aMainLayout = dynamic_cast( myMainFrame->layout() ); + aMainLayout->addWidget( theWidget, theStretch ); + } } -void HYDROGUI_InputPanel::addSeparator() +void HYDROGUI_InputPanel::addLayout( QLayout* theLayout, int theStretch ) { - QGridLayout* aMainLayout = dynamic_cast( myMainFrame->layout() ); - int aRow = aMainLayout->rowCount(); + if( mySplitter ) + { + } + else + { + QBoxLayout* aMainLayout = dynamic_cast( myMainFrame->layout() ); + aMainLayout->addLayout( theLayout, theStretch ); + } +} - QFrame* aLine = new QFrame(); - aLine->setFrameShape( QFrame::HLine ); - aLine->setFrameShadow( QFrame::Sunken ); +void HYDROGUI_InputPanel::addStretch() +{ + if( mySplitter ) + { + } + else + { + QBoxLayout* aMainLayout = dynamic_cast( myMainFrame->layout() ); + aMainLayout->addStretch(); + } +} - aMainLayout->addWidget( aLine, aRow, 0, 1, 2 ); +QFrame* HYDROGUI_InputPanel::mainFrame() const +{ + return myMainFrame; +} + +QFrame* HYDROGUI_InputPanel::buttonFrame() const +{ + return myBtnFrame; } -void HYDROGUI_InputPanel::setRowStretch() +QSplitter* HYDROGUI_InputPanel::splitter() const { - QGridLayout* aMainLayout = dynamic_cast( myMainFrame->layout() ); - int aRow = aMainLayout->rowCount(); - aMainLayout->setRowStretch( aRow, 1 ); + return mySplitter; }