// // Created by grimmauld on 03.03.24. // #ifndef SWAYMUX_SWAYTREEMODEL_H #define SWAYMUX_SWAYTREEMODEL_H #include #include #include "pstree.h" #include "AbstractTreeModel.h" #include "swaytree.h" #include "../sway_bindings/Sway.h" #include #include #include using json = nlohmann::json; class SwayTreeModel : public AbstractTreeModel { Q_OBJECT public: inline static Sway sway = Sway(); Q_DISABLE_COPY_MOVE(SwayTreeModel) explicit SwayTreeModel(QObject *parent = nullptr) : AbstractTreeModel(parent) { auto res = sway.sendIPC(SWAY_GET_TREE); auto rep = json::parse(res.msg); rootItem = new SwayTreeNode(rep); } ~SwayTreeModel() override = default; explicit SwayTreeModel(SwayTreeNode * rootItem, QObject *parent = nullptr) : rootItem(rootItem), AbstractTreeModel( parent) {}; [[nodiscard]] const SwayTreeNode *getRoot() const override { return rootItem; }; [[nodiscard]] QModelIndex findFocusedWindowIndex() const; [[nodiscard]] std::set getSelectedNodes(const QTreeView* treeView) const; private: SwayTreeNode * rootItem; }; #endif //SWAYMUX_SWAYTREEMODEL_H