X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_InputPanel.cxx;h=03831fc4ec7ab069d5a690afa9034b6759cb2f85;hb=81c9f5cdf82909d0aebd2c491c50fa7516cc80b7;hp=269e5ca3882d2997030779c6f4f0003bd231fb65;hpb=d74afc6389ed4e656c9451ac01b4065470746fd8;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_InputPanel.cxx b/src/HYDROGUI/HYDROGUI_InputPanel.cxx index 269e5ca3..03831fc4 100644 --- a/src/HYDROGUI/HYDROGUI_InputPanel.cxx +++ b/src/HYDROGUI/HYDROGUI_InputPanel.cxx @@ -28,8 +28,9 @@ #include #include +#include -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 +38,40 @@ 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 ); + myMainFrame = new QFrame( aFrame ); + QBoxLayout* aMainLayout = new QVBoxLayout( myMainFrame ); aMainLayout->setMargin( 0 ); aMainLayout->setSpacing( 5 ); - - myBtnFrame = new QFrame( this ); + 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 ); + if ( doInitLayout ) { + myApply = new QPushButton( tr( "APPLY" ), myBtnFrame ); - connect( myApply, SIGNAL( clicked() ), this, SLOT( OnApply() ) ); - connect( myCancel, SIGNAL( clicked() ), this, SLOT( OnCancel() ) ); - connect( myHelp, SIGNAL( clicked() ), this, SLOT( OnHelp() ) ); + 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() @@ -77,51 +83,50 @@ HYDROGUI_Module* HYDROGUI_InputPanel::module() const return myModule; } -void HYDROGUI_InputPanel::OnApply() +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::addWidget( QWidget* theWidget, - const int theRow, - const int theColumn ) +void HYDROGUI_InputPanel::addWidget( QWidget* theWidget, int theStretch ) { - QGridLayout* aMainLayout = dynamic_cast( myMainFrame->layout() ); - aMainLayout->addWidget( theWidget, theRow, theColumn ); + QBoxLayout* aMainLayout = dynamic_cast( myMainFrame->layout() ); + aMainLayout->addWidget( theWidget, theStretch ); } -void HYDROGUI_InputPanel::addSeparator() +void HYDROGUI_InputPanel::addLayout( QLayout* theLayout ) { - QGridLayout* aMainLayout = dynamic_cast( myMainFrame->layout() ); - int aRow = aMainLayout->rowCount(); + QBoxLayout* aMainLayout = dynamic_cast( myMainFrame->layout() ); + aMainLayout->addLayout( theLayout ); +} - QFrame* aLine = new QFrame(); - aLine->setFrameShape( QFrame::HLine ); - aLine->setFrameShadow( QFrame::Sunken ); +void HYDROGUI_InputPanel::addStretch() +{ + QBoxLayout* aMainLayout = dynamic_cast( myMainFrame->layout() ); + aMainLayout->addStretch(); +} - aMainLayout->addWidget( aLine, aRow, 0, 1, 2 ); +QFrame* HYDROGUI_InputPanel::mainFrame() const +{ + return myMainFrame; } -void HYDROGUI_InputPanel::setRowStretch() +QFrame* HYDROGUI_InputPanel::buttonFrame() const { - QGridLayout* aMainLayout = dynamic_cast( myMainFrame->layout() ); - int aRow = aMainLayout->rowCount(); - aMainLayout->setRowStretch( aRow, 1 ); + return myBtnFrame; }