/* Copyright 2006-2022 The QElectroTech Team This file is part of QElectroTech. QElectroTech is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. QElectroTech is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with QElectroTech. If not, see . */ #include "freeterminaleditor.h" #include "ui_freeterminaleditor.h" #include "../../elementprovider.h" #include "freeterminalmodel.h" #include "../../diagram.h" /** * @brief FreeTerminalEditor::FreeTerminalEditor * @param project * @param parent */ FreeTerminalEditor::FreeTerminalEditor(QETProject *project, QWidget *parent) : QWidget(parent), ui(new Ui::FreeTerminalEditor), m_project(project) { ui->setupUi(this); ui->m_table_view->setItemDelegate(new FreeTerminalModelDelegate(ui->m_table_view)); m_model = new FreeTerminalModel(m_project, this); ui->m_table_view->setModel(m_model); ui->m_table_view->setCurrentIndex(m_model->index(0,0)); connect(ui->m_table_view, &QAbstractItemView::doubleClicked, this, [=](const QModelIndex &index) { if (m_model->columnTypeForIndex(index) == FreeTerminalModel::XRef) { auto mrtd = m_model->dataAtRow(index.row()); if (mrtd.element_) { auto elmt = mrtd.element_; auto diagram = elmt->diagram(); if (diagram) { diagram->showMe(); if (diagram->views().size()) { auto fit_view = elmt->sceneBoundingRect(); fit_view.adjust(-200,-200,200,200); diagram->views().at(0)->fitInView(fit_view, Qt::KeepAspectRatioByExpanding); } } } } }); } /** * @brief FreeTerminalEditor::~FreeTerminalEditor */ FreeTerminalEditor::~FreeTerminalEditor() { delete ui; } /** * @brief FreeTerminalEditor::reload * Reload the editor to be up to date with * the current state of the project. * Every not applied change will be lost. */ void FreeTerminalEditor::reload() { m_model->clear(); }