Salome HOME
Update copyrights
[modules/paravis.git] / src / Plugins / TableReader / ParaViewPlugin / pqTableTo3DPanel.cxx
1 // Copyright (C) 2010-2019  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "pqTableTo3DPanel.h"
21
22 #include <QLineEdit>
23 #include <QCheckBox>
24 #include <QComboBox>
25
26 pqTableTo3DPanel::pqTableTo3DPanel(pqProxy* proxy, QWidget* p) :
27 Superclass(proxy, p)
28 {
29   QLineEdit* scaleFactor = this->findChild<QLineEdit*>("ScaleFactor");
30   QCheckBox* useOptimusScale = this->findChild<QCheckBox*>("UseOptimusScale");
31   QComboBox* presentationType = this->findChild<QComboBox*>("PresentationType");
32   QWidget* numberContours = this->findChild<QWidget*>("NumberOfContours");
33
34   if (scaleFactor && useOptimusScale)
35   {
36     this->connect(useOptimusScale, SIGNAL(toggled(bool)),
37         this, SLOT(onScaleModeChanged(bool)));
38     onScaleModeChanged(useOptimusScale->isChecked());
39   }
40
41   if (presentationType && numberContours)
42   {
43     this->connect(presentationType, SIGNAL(currentIndexChanged(const QString &)),
44         this, SLOT(onPrsTypeChanged(const QString &)));
45     onPrsTypeChanged(presentationType->currentText());
46   }
47 }
48
49 pqTableTo3DPanel::~pqTableTo3DPanel()
50 {
51 }
52
53 void pqTableTo3DPanel::onScaleModeChanged(bool checked)
54 {
55   QLineEdit* scaleFactor = this->findChild<QLineEdit*>("ScaleFactor");
56   if (scaleFactor)
57   {
58     scaleFactor->setEnabled(!checked);
59   }
60 }
61
62 void pqTableTo3DPanel::onPrsTypeChanged(const QString& type)
63 {
64   QWidget* numberContours = this->findChild<QWidget*>("NumberOfContours");
65   if (numberContours)
66   {
67     numberContours->setEnabled(type == "Contour");
68   }
69 }