Salome HOME
updated copyright message
[modules/yacs.git] / src / genericgui / FormContainer.cxx
1 // Copyright (C) 2006-2023  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   {
51     ch_aoc->setCheckState(container->isAttachedOnCloning()?Qt::Checked:Qt::Unchecked);
52   }
53   cb_type->clear();
54   cb_type->addItem("mono");
55   cb_type->addItem("multi");
56   if(_properties.count("type") && _properties["type"]=="multi")
57     cb_type->setCurrentIndex(1);
58 }
59
60 QString FormContainer::getTypeStr() const
61 {
62   return QString("Container");
63 }
64
65 void FormContainer::onModifyType(const QString &text)
66 {
67   DEBTRACE("onModifyType " << text.toStdString());
68   if (!_container)
69     return;
70   std::string prop=_container->getProperty("type");
71   _properties["type"] = text.toStdString();
72   if (_properties["type"] == "mono")
73     _advancedParams->setModeText("mono");
74   else
75     _advancedParams->setModeText("multi");
76   if (prop != text.toStdString())
77     onModified();
78 }
79
80 void FormContainer::onModifyAOC(int val)
81 {
82   if (!_container)
83     return;
84   bool val2(false);
85   if(val==Qt::Unchecked)
86     val2=false;
87   if(val==Qt::Checked)
88     val2=true;
89   bool prop(_container->isAttachedOnCloning());
90   int prop2((int)val2);
91   std::ostringstream oss; oss << prop2;
92   _properties[YACS::ENGINE::Container::AOC_ENTRY]=oss.str();
93   _container->setAttachOnCloningStatus(val2);
94   if(prop!=val2)
95     onModified();
96 }