#ifndef STORYCHAINSPRESENT_H #define STORYCHAINSPRESENT_H #include "appcore.h" #include "tools.h" #include #include #include #include #include namespace Components { class StoryChainsPresent : public QWidget { Q_OBJECT public: explicit StoryChainsPresent(Core::AppCore *core, QWidget *parent = nullptr); void refresh(); signals: private: Core::AppCore *const core_ins; QStandardItemModel *const model_base; QTreeView *const tree_view; QPlainTextEdit *const details_show; Tools::ModelSyncs *const sync_tools; void action_details_show(const QModelIndex &curr); void click_to(const QModelIndex &curr); }; } #endif // STORYCHAINSPRESENT_H