added nodes.

This commit is contained in:
Christoph Holzheuer
2026-04-02 15:15:28 +02:00
parent b05180f575
commit 0b54793b08
43 changed files with 4371 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
#include <ntxheadnode.h>
namespace ntx
{
bool NtxHeadNode::copyNode(NtxNodePtr node)
{
return false;
}
bool NtxHeadNode::cutNode(NtxNodePtr node)
{
return false;
}
NtxNodePtr NtxHeadNode::pasteNode(NtxNodePtr parent, int index)
{
return nullptr;
}
bool NtxHeadNode::addNode(NtxNodePtr parent, NtxNodePtr node, int index)
{
return false;
}
bool NtxHeadNode::deleteNode(NtxNodePtr node)
{
return false;
}
bool NtxHeadNode::hasClipboard() const
{
return false;
}
void NtxHeadNode::clearClipboard()
{
}
NtxNodePtr NtxHeadNode::peekClipboard() const
{
return nullptr;
}
bool NtxHeadNode::validateNode(NtxNodePtr node) const
{
return false;
}
bool NtxHeadNode::canAddToParent(NtxNodePtr parent, NtxNodePtr child) const
{
return false;
}
} // namespace ntx