|
| 1 | +/* |
| 2 | +
|
| 3 | +Pencil2D - Traditional Animation Software |
| 4 | +Copyright (C) 2005-2007 Patrick Corrieri & Pascal Naidon |
| 5 | +Copyright (C) 2012-2020 Matthew Chiawen Chang |
| 6 | +
|
| 7 | +This program is free software; you can redistribute it and/or |
| 8 | +modify it under the terms of the GNU General Public License |
| 9 | +as published by the Free Software Foundation; version 2 of the License. |
| 10 | +
|
| 11 | +This program is distributed in the hope that it will be useful, |
| 12 | +but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | +GNU General Public License for more details. |
| 15 | +
|
| 16 | +*/ |
| 17 | +#include "transformoptionswidget.h" |
| 18 | +#include "ui_transformoptionswidget.h" |
| 19 | + |
| 20 | +#include "editor.h" |
| 21 | +#include "toolmanager.h" |
| 22 | +#include "transformtool.h"" |
| 23 | +
|
| 24 | +TransformOptionsWidget::TransformOptionsWidget(Editor* editor, QWidget *parent) : |
| 25 | + QWidget(parent), |
| 26 | + ui(new Ui::TransformOptionsWidget), mEditor(editor) |
| 27 | +{ |
| 28 | + ui->setupUi(this); |
| 29 | + initUI(); |
| 30 | +} |
| 31 | +
|
| 32 | +TransformOptionsWidget::~TransformOptionsWidget() |
| 33 | +{ |
| 34 | + delete ui; |
| 35 | +} |
| 36 | +
|
| 37 | +void TransformOptionsWidget::initUI() |
| 38 | +{ |
| 39 | + makeConnectionsFromUIToModel(); |
| 40 | +} |
| 41 | +
|
| 42 | +void TransformOptionsWidget::updateUI() |
| 43 | +{ |
| 44 | + if (!isVisible()) { |
| 45 | + return; |
| 46 | + } |
| 47 | +
|
| 48 | + BaseTool* currentTool = mEditor->tools()->currentTool(); |
| 49 | + if (currentTool->category() != TRANSFORMTOOL) { return; } |
| 50 | +
|
| 51 | + updateToolConnections(currentTool); |
| 52 | + const TransformSettings* selectP = static_cast<const TransformSettings*>(currentTool->settings()); |
| 53 | +
|
| 54 | + if (currentTool->isPropertyEnabled(TransformSettings::SHOWSELECTIONINFO_ON)) { |
| 55 | + setShowSelectionInfo(selectP->showSelectionInfo()); |
| 56 | + } |
| 57 | +} |
| 58 | +
|
| 59 | +void TransformOptionsWidget::updateToolConnections(BaseTool* tool) |
| 60 | +{ |
| 61 | + if (mTransformTool) { |
| 62 | + disconnect(mTransformTool, nullptr, this, nullptr); |
| 63 | + } |
| 64 | +
|
| 65 | + mTransformTool = static_cast<TransformTool*>(tool); |
| 66 | +
|
| 67 | + makeConnectionFromModelToUI(mTransformTool); |
| 68 | +} |
| 69 | +
|
| 70 | +void TransformOptionsWidget::makeConnectionsFromUIToModel() |
| 71 | +{ |
| 72 | + connect(ui->showSelectionInfoCheckBox, &QCheckBox::clicked, this, [=](bool isOn) { |
| 73 | + mTransformTool->setShowSelectionInfo(isOn); |
| 74 | + }); |
| 75 | +} |
| 76 | +
|
| 77 | +void TransformOptionsWidget::makeConnectionFromModelToUI(TransformTool* transformTool) |
| 78 | +{ |
| 79 | + connect(transformTool, &TransformTool::showSelectionInfoChanged, this, &TransformOptionsWidget::setShowSelectionInfo); |
| 80 | +} |
| 81 | +
|
| 82 | +void TransformOptionsWidget::setShowSelectionInfo(bool isOn) |
| 83 | +{ |
| 84 | + QSignalBlocker b(ui->showSelectionInfoCheckBox); |
| 85 | + ui->showSelectionInfoCheckBox->setChecked(isOn); |
| 86 | +} |
0 commit comments