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.
18 lines
426 B
C++
18 lines
426 B
C++
#ifndef QT_GUI_FACTORY_H
|
|
#define QT_GUI_FACTORY_H
|
|
|
|
#include "gui/GuiFactory.h"
|
|
|
|
class QtGuiFactory: public GuiFactory
|
|
{
|
|
public:
|
|
QtGuiFactory();
|
|
virtual ~QtGuiFactory();
|
|
|
|
virtual std::shared_ptr<MainView> createMainView() const;
|
|
virtual std::shared_ptr<CodeView> createCodeView(ViewLayout* viewLayout) const;
|
|
virtual std::shared_ptr<GraphView> createGraphView(ViewLayout* viewLayout) const;
|
|
};
|
|
|
|
#endif // QT_GUI_FACTORY_H
|