build: trial version target
builds now app and trail target, lib_gui added, istrail function
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
#ifndef QT_GRAPH_NODE_ACCESS_H
|
||||
#define QT_GRAPH_NODE_ACCESS_H
|
||||
|
||||
#include "data/graph/token_component/TokenComponentAccess.h"
|
||||
#include "qt/view/graphElements/QtGraphNode.h"
|
||||
|
||||
class QtGraphNodeAccess
|
||||
: public QtGraphNode
|
||||
{
|
||||
public:
|
||||
QtGraphNodeAccess(TokenComponentAccess::AccessType accessType);
|
||||
virtual ~QtGraphNodeAccess();
|
||||
|
||||
TokenComponentAccess::AccessType getAccessType() const;
|
||||
|
||||
// QtGraphNode implementation
|
||||
virtual bool isAccessNode() const;
|
||||
|
||||
virtual void addSubNode(const std::shared_ptr<QtGraphNode>& node);
|
||||
virtual void updateStyle();
|
||||
|
||||
void hideLabel();
|
||||
|
||||
private:
|
||||
TokenComponentAccess::AccessType m_access;
|
||||
|
||||
QGraphicsPixmapItem* m_accessIcon;
|
||||
int m_accessIconSize;
|
||||
};
|
||||
|
||||
#endif // QT_GRAPH_NODE_ACCESS_H
|
||||
Reference in New Issue
Block a user