Salome HOME
a68365189a6c2be028c35fe96b9e70aacd3cf366
[modules/yacs.git] / src / genericgui / EditionNode.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 "EditionNode.hxx"
21 #include "QtGuiContext.hxx"
22 #include "Proc.hxx"
23
24 #include <cassert>
25
26 //#define _DEVDEBUG_
27 #include "YacsTrace.hxx"
28
29 using namespace std;
30
31 using namespace YACS;
32 using namespace YACS::HMI;
33 using namespace YACS::ENGINE;
34
35 EditionNode::EditionNode(Subject* subject,
36                          QWidget* parent,
37                          const char* name)
38   : ItemEdition(subject, parent, name)
39 {
40   DEBTRACE("EditionNode::EditionNode");
41   if (QtGuiContext::getQtCurrent()->isEdition())
42     _wid->le_name->setReadOnly(false);
43
44   _subjectNode = dynamic_cast<SubjectNode*>(_subject);
45   YASSERT(_subjectNode);
46
47   _le_fullName = 0;
48   if (!dynamic_cast<SubjectProc*>(_subject))
49     {
50       _le_fullName = new QLineEdit(this);
51       _le_fullName->setToolTip("Full name of the node in schema");
52       _le_fullName->setReadOnly(true);
53       _wid->gridLayout1->addWidget(_le_fullName);
54
55       YACS::ENGINE::Proc* proc = QtGuiContext::getQtCurrent()->getProc();
56       _le_fullName->setText((proc->getChildName(_subjectNode->getNode())).c_str());
57     }
58 }
59
60 EditionNode::~EditionNode()
61 {
62 }
63
64 void EditionNode::update(GuiEvent event, int type, Subject* son)
65 {
66   DEBTRACE("EditionNode::update ");
67   ItemEdition::update(event, type, son);
68   YACS::ENGINE::Proc* proc = QtGuiContext::getQtCurrent()->getProc();
69   switch (event)
70     {
71     case RENAME:
72       if (_le_fullName)
73         _le_fullName->setText((proc->getChildName(_subjectNode->getNode())).c_str());
74       break;
75     default:
76       ;
77     }
78 }