Salome HOME
GUI for HP containers.
[modules/yacs.git] / src / genericgui / FormContainer.cxx
1 // Copyright (C) 2006-2014  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 "FormContainer.hxx"
21 #include "FormAdvParamContainer.hxx"
22 #include "Container.hxx"
23 //#define _DEVDEBUG_
24 #include "YacsTrace.hxx"
25
26 #include <QComboBox>
27 #include <QList>
28
29 #include <sstream>
30
31 using namespace std;
32
33 FormContainer::FormContainer(QWidget *parent):FormContainerBase(parent),cb_type(new QComboBox(this))
34
35   gridLayout_2_2->addWidget(cb_type);
36   FormContainer::FillPanel(0); // --- set widgets before signal connexion to avoid false modif detection
37   connect(cb_type, SIGNAL(activated(const QString&)),this, SLOT(onModifyType(const QString&)));
38   connect(ch_aoc,SIGNAL(stateChanged(int)),this,SLOT(onModifyAOC(int)));
39 }
40
41 FormContainer::~FormContainer()
42 {
43 }
44
45 void FormContainer::FillPanel(YACS::ENGINE::Container *container)
46 {
47   DEBTRACE("FormContainer::FillPanel");
48   FormContainerBase::FillPanel(container);
49   if(container)
50     ch_aoc->setCheckState(container->isAttachedOnCloning()?Qt::Checked:Qt::Unchecked);
51   cb_type->clear();
52   cb_type->addItem("mono");
53   cb_type->addItem("multi");
54   if(_properties.count("type") && _properties["type"]=="multi")
55     cb_type->setCurrentIndex(1);
56 }
57
58 QString FormContainer::getTypeStr() const
59 {
60   return QString("Container");
61 }
62
63 void FormContainer::onModifyType(const QString &text)
64 {
65   DEBTRACE("onModifyType " << text.toStdString());
66   if (!_container)
67     return;
68   std::string prop=_container->getProperty("type");
69   _properties["type"] = text.toStdString();
70   if (_properties["type"] == "mono")
71     _advancedParams->setModeText("mono");
72   else
73     _advancedParams->setModeText("multi");
74   if (prop != text.toStdString())
75     onModified();
76 }
77
78 void FormContainer::onModifyAOC(int val)
79 {
80   if (!_container)
81     return;
82   bool val2(false);
83   if(val==Qt::Unchecked)
84     val2=false;
85   if(val==Qt::Checked)
86     val2=true;
87   bool prop(_container->isAttachedOnCloning());
88   int prop2((int)val2);
89   std::ostringstream oss; oss << prop2;
90   _properties[YACS::ENGINE::Container::AOC_ENTRY]=oss.str();
91   _container->setAttachOnCloningStatus(val2);
92   if(prop!=val2)
93     onModified();
94 }