Salome HOME
5b9fa21d02f1ce9bb94b2cc4c5213dd1b6b99fed
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_InputPanel.cxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include "HYDROGUI_InputPanel.h"
24 #include "HYDROGUI_Module.h"
25
26 #include <CAM_Application.h>
27 #include <SUIT_Desktop.h>
28
29 #include <QLayout>
30 #include <QPushButton>
31
32 HYDROGUI_InputPanel::HYDROGUI_InputPanel( HYDROGUI_Module* theModule, const QString& theTitle )
33 : QDockWidget( theModule->application()->desktop() ),
34   myModule( theModule )
35 {
36   setFloating( false );
37   setWindowTitle( theTitle );
38   setAllowedAreas( Qt::RightDockWidgetArea );
39
40   QFrame* aFrame = new QFrame( this );
41   setWidget( aFrame );
42   QVBoxLayout* aLayout = new QVBoxLayout( aFrame );
43   
44   myMainFrame = new QFrame( aFrame );
45   QBoxLayout* aMainLayout = new QVBoxLayout( myMainFrame );
46   aMainLayout->setMargin( 0 );
47   aMainLayout->setSpacing( 5 );
48
49   myBtnFrame = new QFrame( aFrame );
50   
51   aLayout->addWidget( myMainFrame, 1 );
52   aLayout->addWidget( myBtnFrame, 0 );
53
54   QHBoxLayout* aBtnsLayout = new QHBoxLayout( myBtnFrame );
55   aBtnsLayout->setMargin( 5 );
56   aBtnsLayout->setSpacing( 5 );
57
58   myApply = new QPushButton( tr( "APPLY" ), myBtnFrame );
59   myCancel = new QPushButton( tr( "CANCEL" ), myBtnFrame );
60   myHelp = new QPushButton( tr( "HELP" ), myBtnFrame );
61
62   aBtnsLayout->addWidget( myApply, 0 );
63   aBtnsLayout->addWidget( myCancel, 0 );
64   aBtnsLayout->addStretch( 1 );
65   aBtnsLayout->addWidget( myHelp, 0 );
66
67   connect( myApply,  SIGNAL( clicked() ), this, SLOT( onApply()  ) );
68   connect( myCancel, SIGNAL( clicked() ), this, SLOT( onCancel() ) );
69   connect( myHelp,   SIGNAL( clicked() ), this, SLOT( onHelp()   ) );
70 }
71
72 HYDROGUI_InputPanel::~HYDROGUI_InputPanel()
73 {
74 }
75
76 HYDROGUI_Module* HYDROGUI_InputPanel::module() const
77 {
78   return myModule;
79 }
80
81 void HYDROGUI_InputPanel::onApply()
82 {
83   emit panelApply(); 
84 }
85
86 void HYDROGUI_InputPanel::onCancel()
87 {
88   emit panelCancel();
89 }
90
91 void HYDROGUI_InputPanel::onHelp()
92 {
93 }
94
95 void HYDROGUI_InputPanel::addWidget( QWidget* theWidget, int theStretch )
96 {
97   QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );
98   aMainLayout->addWidget( theWidget, theStretch );
99 }
100
101 void HYDROGUI_InputPanel::addLayout( QLayout* theLayout )
102 {
103   QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );
104   aMainLayout->addLayout( theLayout );
105 }
106
107 void HYDROGUI_InputPanel::addStretch()
108 {
109   QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );
110   aMainLayout->addStretch();
111 }
112
113 QFrame* HYDROGUI_InputPanel::mainFrame() const
114 {
115   return myMainFrame;
116 }