Salome HOME
Mantis issue 0020626: the discretisation of the circles in the OCC viewer is too...
[modules/geom.git] / src / GEOMToolsGUI / GEOMToolsGUI_DeflectionDlg.cxx
1 //  Copyright (C) 2007-2008  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 //  GEOM GEOMGUI : GUI for Geometry component
23 //  File   : GEOMToolsGUI_DeflectionDlg.cxx
24 //  Author : OCC Team
25
26 #include "GEOMToolsGUI_DeflectionDlg.h"
27 #include <GeometryGUI.h>
28 #include <LightApp_Application.h>
29 #include <SalomeApp_DoubleSpinBox.h>
30
31 #include <SUIT_MessageBox.h>
32 #include <SUIT_ResourceMgr.h>
33 #include <SUIT_Session.h>
34 #include <SUIT_Tools.h>
35
36 #include <QLabel>
37 #include <QPushButton>
38 #include <QGroupBox>
39 #include <QGridLayout>
40 #include <QKeyEvent>
41
42 //=================================================================================
43 // class    : GEOMToolsGUI_DeflectionDlg()
44 // purpose  : Constructs a GEOMToolsGUI_DeflectionDlg which is a child of 'parent', with the
45 //            name 'name' and widget flags set to 'f'.
46 //            The dialog will by default be modeless, unless you set 'modal' to
47 //            TRUE to construct a modal dialog.
48 //=================================================================================
49 GEOMToolsGUI_DeflectionDlg::GEOMToolsGUI_DeflectionDlg (QWidget* parent)
50   : QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint)
51 {
52   setObjectName("GEOMToolsGUI_DeflectionDlg");
53   setModal(true);
54
55   setWindowTitle(tr("GEOM_DEFLECTION_TLT"));
56   setSizeGripEnabled(TRUE);
57   QGridLayout* MyDialogLayout = new QGridLayout(this);
58   MyDialogLayout->setSpacing(6);
59   MyDialogLayout->setMargin(11);
60
61   /***************************************************************/
62   QGroupBox* GroupC1 = new QGroupBox (this);
63   GroupC1->setObjectName("GroupC1");
64   QGridLayout* GroupC1Layout = new QGridLayout (GroupC1);
65   GroupC1Layout->setAlignment(Qt::AlignTop);
66   GroupC1Layout->setSpacing(6);
67   GroupC1Layout->setMargin(11);
68
69   QLabel* TextLabel1 = new QLabel (GroupC1);
70   TextLabel1->setObjectName("TextLabel1");
71   TextLabel1->setText(tr("GEOM_DEFLECTION"));
72   GroupC1Layout->addWidget(TextLabel1, 0, 0);
73
74   SpinBox = new SalomeApp_DoubleSpinBox (GroupC1);
75   SpinBox->setObjectName("SpinBoxU");
76   SpinBox->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed));
77   SpinBox->setMinimum(0);
78   SpinBox->setValue(1);
79   GroupC1Layout->addWidget(SpinBox, 0, 1);
80
81   /***************************************************************/
82   QGroupBox* GroupButtons = new QGroupBox (this);
83   GroupButtons->setObjectName("GroupButtons");
84   QGridLayout* GroupButtonsLayout = new QGridLayout (GroupButtons);
85   GroupButtonsLayout->setAlignment(Qt::AlignTop);
86   GroupButtonsLayout->setSpacing(6);
87   GroupButtonsLayout->setMargin(11);
88
89   QPushButton* buttonOk = new QPushButton (GroupButtons);
90   buttonOk->setObjectName("buttonOk");
91   buttonOk->setText(tr("GEOM_BUT_OK"));
92   buttonOk->setAutoDefault(TRUE);
93   buttonOk->setDefault(TRUE);
94   GroupButtonsLayout->addWidget(buttonOk, 0, 0);
95
96   GroupButtonsLayout->addItem(new QSpacerItem (20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum), 0, 1);
97
98   QPushButton* buttonCancel = new QPushButton (GroupButtons);
99   buttonCancel->setObjectName("buttonCancel");
100   buttonCancel->setText(tr("GEOM_BUT_CANCEL"));
101   buttonCancel->setAutoDefault(TRUE);
102   GroupButtonsLayout->addWidget(buttonCancel, 0, 1);
103
104   QPushButton* buttonHelp = new QPushButton (GroupButtons);
105   buttonHelp->setObjectName("buttonHelp");
106   buttonHelp->setText(tr("GEOM_BUT_HELP"));
107   buttonHelp->setAutoDefault(TRUE);
108   GroupButtonsLayout->addWidget(buttonHelp, 0, 2);
109   /***************************************************************/
110
111   MyDialogLayout->addWidget(GroupC1, 0, 0);
112   MyDialogLayout->addWidget(GroupButtons, 1, 0);
113
114   myHelpFileName = "deflection_page.html";
115
116   // signals and slots connections
117   connect(buttonOk, SIGNAL(clicked()), this, SLOT(accept()));
118   connect(buttonCancel, SIGNAL(clicked()), this, SLOT(reject()));
119   connect(buttonHelp, SIGNAL(clicked()), this, SLOT(ClickOnHelp()));
120
121   // Move widget on the botton right corner of main widget
122   SUIT_Tools::centerWidget(this, parent);
123 }
124
125 //=================================================================================
126 // function : ~GEOMToolsGUI_DeflectionDlg()
127 // purpose  : Destroys the object and frees any allocated resources
128 //=================================================================================
129 GEOMToolsGUI_DeflectionDlg::~GEOMToolsGUI_DeflectionDlg()
130 {
131   // no need to delete child widgets, Qt does it all for us
132 }
133
134 double GEOMToolsGUI_DeflectionDlg::getDC() const
135 {
136   return SpinBox->text().toDouble();
137 }
138
139 void GEOMToolsGUI_DeflectionDlg::setDC (const double v)
140 {
141   SpinBox->setValue(v);
142 }
143
144 //=================================================================================
145 // function : ClickOnHelp()
146 // purpose  :
147 //=================================================================================
148 void GEOMToolsGUI_DeflectionDlg::ClickOnHelp()
149 {
150   LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
151   if (app) {
152     GeometryGUI* aGeomGUI = dynamic_cast<GeometryGUI*>(app->module("Geometry"));
153     app->onHelpContextModule(aGeomGUI ? app->moduleName(aGeomGUI->moduleName()) : QString(""), myHelpFileName);
154   }
155   else {
156     QString platform;
157 #ifdef WIN32
158     platform = "winapplication";
159 #else
160     platform = "application";
161 #endif
162     SUIT_MessageBox::warning
163       (0, QObject::tr("WRN_WARNING"),
164        QObject::tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
165        arg(app->resourceMgr()->stringValue("ExternalBrowser", platform)).arg(myHelpFileName),
166        QObject::tr("BUT_OK"));
167   }
168 }
169
170 //=================================================================================
171 // function : keyPressEvent()
172 // purpose  :
173 //=================================================================================
174 void GEOMToolsGUI_DeflectionDlg::keyPressEvent (QKeyEvent* e)
175 {
176   QDialog::keyPressEvent(e);
177   if (e->isAccepted())
178     return;
179
180   if (e->key() == Qt::Key_F1) {
181     e->accept();
182     ClickOnHelp();
183   }
184 }