build: trial version target
builds now app and trail target, lib_gui added, istrail function
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#ifndef QT_EXPAND_TOGGLE_H
|
||||
#define QT_EXPAND_TOGGLE_H
|
||||
|
||||
#include <QGraphicsItem>
|
||||
|
||||
#include "qt/view/graphElements/QtGraphNode.h"
|
||||
|
||||
class QtGraphNodeExpandToggle
|
||||
: public QtGraphNode
|
||||
{
|
||||
public:
|
||||
QtGraphNodeExpandToggle(bool expanded, int invisibleSubNodeCount);
|
||||
virtual ~QtGraphNodeExpandToggle();
|
||||
|
||||
// QtGraphNode implementation
|
||||
virtual bool isExpandToggleNode() const;
|
||||
|
||||
virtual void onClick();
|
||||
virtual void updateStyle();
|
||||
|
||||
private:
|
||||
QGraphicsPixmapItem* m_icon;
|
||||
bool m_invisibleSubNodeCount;
|
||||
bool m_expanded;
|
||||
};
|
||||
|
||||
#endif // QT_EXPAND_TOGGLE_H
|
||||
Reference in New Issue
Block a user