Salome HOME
refs #441: crash in digue construction
[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 #include <QDir>
32
33 HYDROGUI_InputPanel::HYDROGUI_InputPanel( HYDROGUI_Module* theModule, const QString& theTitle, bool doInitLayout )
34 : QDockWidget( theModule->application()->desktop() ),
35   myModule( theModule )
36 {
37   setFloating( false );
38   setWindowTitle( theTitle );
39   setAllowedAreas( Qt::RightDockWidgetArea );
40
41
42   QFrame* aFrame = new QFrame( this );
43   setWidget( aFrame );
44   QVBoxLayout* aLayout = new QVBoxLayout( aFrame );
45   
46   myMainFrame = new QFrame( aFrame );
47   QBoxLayout* aMainLayout = new QVBoxLayout( myMainFrame );
48   aMainLayout->setMargin( 0 );
49   aMainLayout->setSpacing( 5 );
50     
51   aLayout->addWidget( myMainFrame, 1 );
52
53   myBtnFrame = new QFrame( aFrame );
54   aLayout->addWidget( myBtnFrame, 0 );
55
56   QHBoxLayout* aBtnsLayout = new QHBoxLayout( myBtnFrame );
57   aBtnsLayout->setMargin( 5 );
58   aBtnsLayout->setSpacing( 5 );
59
60   myCancel = new QPushButton( tr( "CANCEL" ), myBtnFrame );
61   myHelp = new QPushButton( tr( "HELP" ), myBtnFrame );
62
63   if ( doInitLayout ) {
64     myApply = new QPushButton( tr( "APPLY" ), myBtnFrame );
65
66     aBtnsLayout->addWidget( myApply, 0 );
67     aBtnsLayout->addWidget( myCancel, 0 );
68     aBtnsLayout->addStretch( 1 );
69     aBtnsLayout->addWidget( myHelp, 0 );
70
71     connect( myApply,  SIGNAL( clicked() ), this, SLOT( onApply()  ) );
72   }
73   connect( myCancel, SIGNAL( clicked() ), this, SLOT( onCancel() ) );
74   connect( myHelp,   SIGNAL( clicked() ), this, SLOT( onHelp()   ) );
75 }
76
77 HYDROGUI_InputPanel::~HYDROGUI_InputPanel()
78 {
79 }
80
81 HYDROGUI_Module* HYDROGUI_InputPanel::module() const
82 {
83   return myModule;
84 }
85
86 void HYDROGUI_InputPanel::onApply()
87 {
88   emit panelApply(); 
89 }
90
91 void HYDROGUI_InputPanel::onCancel()
92 {
93   emit panelCancel();
94 }
95
96 void HYDROGUI_InputPanel::onHelp()
97 {
98   emit panelHelp();
99 }
100
101 void HYDROGUI_InputPanel::closeEvent ( QCloseEvent * event )
102 {
103   emit panelCancel();
104 }
105
106 void HYDROGUI_InputPanel::addWidget( QWidget* theWidget, int theStretch )
107 {
108   QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );
109   aMainLayout->addWidget( theWidget, theStretch );
110 }
111
112 void HYDROGUI_InputPanel::addLayout( QLayout* theLayout )
113 {
114   QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );
115   aMainLayout->addLayout( theLayout );
116 }
117
118 void HYDROGUI_InputPanel::addStretch()
119 {
120   QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );
121   aMainLayout->addStretch();
122 }
123
124 QFrame* HYDROGUI_InputPanel::mainFrame() const
125 {
126   return myMainFrame;
127 }
128
129 QFrame* HYDROGUI_InputPanel::buttonFrame() const
130 {
131   return myBtnFrame;
132 }