Salome HOME
Image positioning by two points.
[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, bool doInitLayout )
33 : QDockWidget( theModule->application()->desktop() ),
34   myModule( theModule )
35 {
36   setFloating( false );
37   setWindowTitle( theTitle );
38   setAllowedAreas( Qt::RightDockWidgetArea );
39
40   if ( doInitLayout ) {
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     myApply = new QPushButton( tr( "APPLY" ), myBtnFrame );
61     myCancel = new QPushButton( tr( "CANCEL" ), myBtnFrame );
62     myHelp = new QPushButton( tr( "HELP" ), myBtnFrame );
63
64     aBtnsLayout->addWidget( myApply, 0 );
65     aBtnsLayout->addWidget( myCancel, 0 );
66     aBtnsLayout->addStretch( 1 );
67     aBtnsLayout->addWidget( myHelp, 0 );
68
69     connect( myApply,  SIGNAL( clicked() ), this, SLOT( onApply()  ) );
70     connect( myCancel, SIGNAL( clicked() ), this, SLOT( onCancel() ) );
71     connect( myHelp,   SIGNAL( clicked() ), this, SLOT( onHelp()   ) );
72   }
73 }
74
75 HYDROGUI_InputPanel::~HYDROGUI_InputPanel()
76 {
77 }
78
79 HYDROGUI_Module* HYDROGUI_InputPanel::module() const
80 {
81   return myModule;
82 }
83
84 void HYDROGUI_InputPanel::onApply()
85 {
86   emit panelApply(); 
87 }
88
89 void HYDROGUI_InputPanel::onCancel()
90 {
91   emit panelCancel();
92 }
93
94 void HYDROGUI_InputPanel::onHelp()
95 {
96 }
97
98 void HYDROGUI_InputPanel::closeEvent ( QCloseEvent * event )
99 {
100   emit panelCancel();
101 }
102
103 void HYDROGUI_InputPanel::addWidget( QWidget* theWidget, int theStretch )
104 {
105   QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );
106   aMainLayout->addWidget( theWidget, theStretch );
107 }
108
109 void HYDROGUI_InputPanel::addLayout( QLayout* theLayout )
110 {
111   QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );
112   aMainLayout->addLayout( theLayout );
113 }
114
115 void HYDROGUI_InputPanel::addStretch()
116 {
117   QBoxLayout* aMainLayout = dynamic_cast<QBoxLayout*>( myMainFrame->layout() );
118   aMainLayout->addStretch();
119 }
120
121 QFrame* HYDROGUI_InputPanel::mainFrame() const
122 {
123   return myMainFrame;
124 }