Salome HOME
Dump Bathymetry data to python script (Feature #13).
[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   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( QWidget* theWidget )
95 {
96   QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );
97   aMainLayout->addWidget( theWidget );
98 }
99
100 void HYDROGUI_InputPanel::addLayout( QLayout* theLayout )
101 {
102   QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );
103   aMainLayout->addLayout( theLayout );
104 }
105
106 void HYDROGUI_InputPanel::addStretch()
107 {
108   QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );
109   aMainLayout->addStretch();
110 }