Version: 9.15.0
EditionNode.cxx
Go to the documentation of this file.
1
// Copyright (C) 2006-2025 CEA, EDF
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
}
EditionNode.hxx
Proc.hxx
QtGuiContext.hxx
YacsTrace.hxx
YASSERT
#define YASSERT(val)
YASSERT macro is always defined, used like assert, but throw a YACS::Exception instead of abort.
Definition:
YacsTrace.hxx:59
DEBTRACE
#define DEBTRACE(msg)
Definition:
YacsTrace.hxx:31
FormEditItem::_wid
WidEditItem * _wid
Definition:
FormEditItem.hxx:53
QLineEdit
QWidget
YACS::ENGINE::ComposedNode::getChildName
std::string getChildName(const Node *node) const
Definition:
ComposedNode.cxx:968
YACS::ENGINE::Proc
Base class for all schema objects.
Definition:
Proc.hxx:44
YACS::HMI::EditionNode::_le_fullName
QLineEdit * _le_fullName
Definition:
EditionNode.hxx:47
YACS::HMI::EditionNode::~EditionNode
virtual ~EditionNode()
Definition:
EditionNode.cxx:60
YACS::HMI::EditionNode::_subjectNode
SubjectNode * _subjectNode
Definition:
EditionNode.hxx:48
YACS::HMI::EditionNode::update
virtual void update(GuiEvent event, int type, Subject *son)
Definition:
EditionNode.cxx:64
YACS::HMI::GuiContext::getProc
YACS::ENGINE::Proc * getProc()
Definition:
guiContext.hxx:50
YACS::HMI::ItemEditionBase::_subject
Subject * _subject
Definition:
ItemEdition.hxx:46
YACS::HMI::ItemEdition
Definition:
ItemEdition.hxx:54
YACS::HMI::ItemEdition::update
virtual void update(GuiEvent event, int type, Subject *son)
Definition:
ItemEdition.cxx:298
YACS::HMI::QtGuiContext::getQtCurrent
static QtGuiContext * getQtCurrent()
Definition:
QtGuiContext.hxx:92
YACS::HMI::SubjectNode
Definition:
guiObservers.hxx:286
YACS::HMI::SubjectNode::getNode
virtual YACS::ENGINE::Node * getNode()
Definition:
guiObservers.cxx:863
YACS::HMI::SubjectProc
Definition:
guiObservers.hxx:508
YACS::HMI::Subject
Definition:
guiObservers.hxx:118
YACS::ENGINE
Definition:
AbstractPoint.hxx:37
YACS::HMI
Definition:
commands.hxx:37
YACS::HMI::GuiEvent
GuiEvent
Definition:
guiObservers.hxx:83
YACS::HMI::RENAME
@ RENAME
Definition:
guiObservers.hxx:95
YACS
Definition:
AlternateThreadPT.hxx:27
src
genericgui
EditionNode.cxx
Copyright © 2006-2024 CEA, EDF