logic: Show non-indexed nodes within their parents and their childs

* Added support for access nodes without title
This commit is contained in:
Eberhard Graether
2017-02-10 14:49:26 +01:00
parent e2a6d4e237
commit 3a540285a3
7 changed files with 156 additions and 61 deletions
@@ -63,6 +63,7 @@ public:
, hasParent(true)
, hasQualifier(false)
, accessKind(ACCESS_NONE)
, isAccess(false)
, invisibleSubNodeCount(0)
, bundleId(0)
, layoutBucket(0, 0)
@@ -79,7 +80,7 @@ public:
bool isAccessNode() const
{
return accessKind != ACCESS_NONE;
return isAccess;
}
bool isExpandToggleNode() const
@@ -261,6 +262,7 @@ public:
// AccessNode
AccessKind accessKind;
bool isAccess;
// ExpandToggleNode
size_t invisibleSubNodeCount;