]> SALOME platform Git repositories - modules/yacs.git/blob - src/genericgui/EditionForEachLoop.cxx
Salome HOME
d5502ba755c5c82bb9a4fac86ac27056a3660308
[modules/yacs.git] / src / genericgui / EditionForEachLoop.cxx
1 //  Copyright (C) 2006-2008  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.
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 #include "EditionForEachLoop.hxx"
20 #include "FormEachLoop.hxx"
21
22 //#define _DEVDEBUG_
23 #include "YacsTrace.hxx"
24
25 #include <cassert>
26 #include <sstream>
27
28 using namespace std;
29
30 using namespace YACS;
31 using namespace YACS::HMI;
32
33 EditionForEachLoop::EditionForEachLoop(Subject* subject,
34                                        QWidget* parent,
35                                        const char* name)
36   : EditionNode(subject, parent, name)
37 {
38   _formEachLoop = new FormEachLoop(this);
39   _wid->gridLayout1->addWidget(_formEachLoop);
40   _formEachLoop->sb_nbranch->setMinimum(1);
41   _formEachLoop->sb_nbranch->setMaximum(INT_MAX);
42   connect(_formEachLoop->sb_nbranch, SIGNAL(valueChanged(const QString &)),
43           this, SLOT(onModifyNbBranches(const QString &)));
44 }
45
46 EditionForEachLoop::~EditionForEachLoop()
47 {
48 }
49
50 void EditionForEachLoop::onModifyNbBranches(const QString &text)
51 {
52   SubjectForEachLoop *sfe = dynamic_cast<SubjectForEachLoop*>(_subject);
53   assert(sfe);
54   sfe->setNbBranches(text.toStdString());
55 }
56
57 void EditionForEachLoop::synchronize()
58 {
59   _subject->update(SETVALUE, 0, _subject);
60 }
61
62 void EditionForEachLoop::update(GuiEvent event, int type, Subject* son)
63 {
64   DEBTRACE("EditionForEachLoop::update " << eventName(event) << " " << type);
65   EditionNode::update(event, type, son);
66   switch (event)
67     {
68     case SETVALUE:
69       SubjectComposedNode * scn = dynamic_cast<SubjectComposedNode*>(_subject);
70       string val = scn->getValue();
71       istringstream ss(val);
72       DEBTRACE( val);
73       int i = 0;
74       ss >> i;
75       DEBTRACE(i);
76       _formEachLoop->sb_nbranch->setValue(i);
77       break;
78     }
79 }