ui: graphView
Added basic graph view with simple nodes (just text, no edges or anything...) fortune cookie message = Don't be afraid to take that big step.
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#ifndef QT_GRAPH_VIEW_H
|
||||
#define QT_GRAPH_VIEW_H
|
||||
|
||||
#include "component/view/GraphView.h"
|
||||
|
||||
class QtGraphView : public GraphView
|
||||
{
|
||||
public:
|
||||
QtGraphView(ViewLayout* viewLayout);
|
||||
virtual ~QtGraphView();
|
||||
|
||||
// View implementation
|
||||
virtual void createWidgetWrapper();
|
||||
virtual void initGui();
|
||||
|
||||
virtual void addNode(const Vec2i& position, const std::string& name);
|
||||
};
|
||||
|
||||
#endif // QT_GRAPH_VIEW_H
|
||||
Reference in New Issue
Block a user