Salome HOME
269e5ca3882d2997030779c6f4f0003bd231fb65
[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( this );
45   QGridLayout* aMainLayout = new QGridLayout( myMainFrame );
46   aMainLayout->setMargin( 0 );
47   aMainLayout->setSpacing( 5 );
48
49   myBtnFrame = new QFrame( this );
50   aLayout->addWidget( myMainFrame, 1 );
51   aLayout->addWidget( myBtnFrame, 0 );
52
53   QHBoxLayout* aBtnsLayout = new QHBoxLayout( myBtnFrame );
54   aBtnsLayout->setMargin( 5 );
55   aBtnsLayout->setSpacing( 5 );
56
57   myApply = new QPushButton( tr( "APPLY" ), myBtnFrame ),
58   myCancel = new QPushButton( tr( "CANCEL" ), myBtnFrame );
59   myHelp = new QPushButton( tr( "HELP" ), myBtnFrame );
60
61   aBtnsLayout->addWidget( myApply, 0 );
62   aBtnsLayout->addWidget( myCancel, 0 );
63   aBtnsLayout->addStretch( 1 );
64   aBtnsLayout->addWidget( myHelp, 0 );
65
66   connect( myApply,  SIGNAL( clicked() ), this, SLOT( OnApply()  ) );
67   connect( myCancel, SIGNAL( clicked() ), this, SLOT( OnCancel() ) );
68   connect( myHelp,   SIGNAL( clicked() ), this, SLOT( OnHelp()   ) );
69 }
70
71 HYDROGUI_InputPanel::~HYDROGUI_InputPanel()
72 {
73 }
74
75 HYDROGUI_Module* HYDROGUI_InputPanel::module() const
76 {
77   return myModule;
78 }
79
80 void HYDROGUI_InputPanel::OnApply()
81 {
82   emit panelApply(); 
83 }
84
85 void HYDROGUI_InputPanel::OnCancel()
86 {
87   emit panelCancel();
88 }
89
90 void HYDROGUI_InputPanel::OnHelp()
91 {
92 }
93
94 void HYDROGUI_InputPanel::addWidget( const QString& theLabel, QWidget* theWidget )
95 {
96   QGridLayout* aMainLayout = dynamic_cast<QGridLayout*>( myMainFrame->layout() );
97   int aRow = aMainLayout->rowCount();
98   aMainLayout->addWidget( new QLabel( theLabel, this ), aRow, 0 );
99   aMainLayout->addWidget( theWidget, aRow, 1 );
100 }
101
102 void HYDROGUI_InputPanel::addWidget( QWidget* theWidget,
103                                      const int theRow,
104                                      const int theColumn )
105 {
106   QGridLayout* aMainLayout = dynamic_cast<QGridLayout*>( myMainFrame->layout() );
107   aMainLayout->addWidget( theWidget, theRow, theColumn );
108 }
109
110 void HYDROGUI_InputPanel::addSeparator()
111 {
112   QGridLayout* aMainLayout = dynamic_cast<QGridLayout*>( myMainFrame->layout() );
113   int aRow = aMainLayout->rowCount();
114
115   QFrame* aLine = new QFrame();
116   aLine->setFrameShape( QFrame::HLine );
117   aLine->setFrameShadow( QFrame::Sunken );
118
119   aMainLayout->addWidget( aLine, aRow, 0, 1, 2 );
120 }
121
122 void HYDROGUI_InputPanel::setRowStretch()
123 {
124   QGridLayout* aMainLayout = dynamic_cast<QGridLayout*>( myMainFrame->layout() );
125   int aRow = aMainLayout->rowCount();
126   aMainLayout->setRowStretch( aRow, 1 );
127 }