Version: 8.3.0
EditionNode.cxx
Go to the documentation of this file.
1 // Copyright (C) 2006-2016 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);
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 
56  _le_fullName->setText((proc->getChildName(_subjectNode->getNode())).c_str());
57  }
58 }
59 
61 {
62 }
63 
64 void EditionNode::update(GuiEvent event, int type, Subject* son)
65 {
66  DEBTRACE("EditionNode::update ");
67  ItemEdition::update(event, type, son);
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 }