Thu, 15 Jun 2023 16:18:03 +0300
Refactor, make selecting elements from the model select the corresponding line from the editor as well
#pragma once #include <QMdiSubWindow> #include <QCloseEvent> #include "src/basics.h" class ModelSubWindow : public QMdiSubWindow { Q_OBJECT public: const ModelId modelId; explicit ModelSubWindow(ModelId modelId, QWidget* widget = nullptr) : QMdiSubWindow{widget}, modelId{modelId} { } protected: void closeEvent(QCloseEvent* event) override { event->ignore(); } };