#ifndef STORYGRAPHSCENE_H #define STORYGRAPHSCENE_H #include #include #include #include #include #include #include #include using QtNodes::BasicGraphicsScene; using QtNodes::DataFlowGraphicsScene; using QtNodes::ConnectionStyle; using QtNodes::GraphicsView; using QtNodes::NodeRole; using QtNodes::StyleCollection; using QtNodes::DataFlowGraphModel; using QtNodes::NodeDelegateModelRegistry; #include "story_graph_model.h" class StoryGraphScene : public BasicGraphicsScene { public: StoryGraphScene(StoryGraphModel &model); QMenu *createSceneMenu(QPointF const scenePos) override; private: StoryGraphModel &m_model; }; #endif // STORYGRAPHSCENE_H