/****************************************************************************** * Copyright (c) 2012 Jan Rheinländer * * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Library General Public * * License as published by the Free Software Foundation; either * * version 2 of the License, or (at your option) any later version. * * * * This library 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 Library General Public License for more details. * * * * You should have received a copy of the GNU Library General Public * * License along with this library; see the file COPYING.LIB. If not, * * write to the Free Software Foundation, Inc., 59 Temple Place, * * Suite 330, Boston, MA 02111-1307, USA * * * ******************************************************************************/ #include "PreCompiled.h" #ifndef _PreComp_ # include #endif #include #include #include #include #include #include #include #include "ui_TaskScaledParameters.h" #include "TaskScaledParameters.h" #include "TaskMultiTransformParameters.h" using namespace PartDesignGui; using namespace Gui; /* TRANSLATOR PartDesignGui::TaskScaledParameters */ TaskScaledParameters::TaskScaledParameters(ViewProviderTransformed *TransformedView,QWidget *parent) : TaskTransformedParameters(TransformedView, parent) , ui(new Ui_TaskScaledParameters) { // we need a separate container widget to add all controls to proxy = new QWidget(this); ui->setupUi(proxy); QMetaObject::connectSlotsByName(this); this->groupLayout()->addWidget(proxy); ui->buttonOK->hide(); ui->checkBoxUpdateView->setEnabled(true); blockUpdate = false; // Hack, sometimes it is NOT false although set to false in Transformed::Transformed()!! setupUI(); } TaskScaledParameters::TaskScaledParameters(TaskMultiTransformParameters *parentTask, QLayout *layout) : TaskTransformedParameters(parentTask), ui(new Ui_TaskScaledParameters) { proxy = new QWidget(parentTask); ui->setupUi(proxy); connect(ui->buttonOK, &QPushButton::pressed, parentTask, &TaskScaledParameters::onSubTaskButtonOK); QMetaObject::connectSlotsByName(this); layout->addWidget(proxy); ui->buttonOK->setEnabled(true); ui->buttonAddFeature->hide(); ui->buttonRemoveFeature->hide(); ui->listWidgetFeatures->hide(); ui->checkBoxUpdateView->hide(); blockUpdate = false; // Hack, sometimes it is NOT false although set to false in Transformed::Transformed()!! setupUI(); } void TaskScaledParameters::setupUI() { connect(ui->buttonAddFeature, &QPushButton::toggled, this, &TaskScaledParameters::onButtonAddFeature); connect(ui->buttonRemoveFeature, &QPushButton::toggled, this, &TaskScaledParameters::onButtonRemoveFeature); // Create context menu QAction* action = new QAction(tr("Remove"), this); action->setShortcut(QKeySequence::Delete); #if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) // display shortcut behind the context menu entry action->setShortcutVisibleInContextMenu(true); #endif ui->listWidgetFeatures->addAction(action); connect(action, &QAction::triggered, this, &TaskScaledParameters::onFeatureDeleted); ui->listWidgetFeatures->setContextMenuPolicy(Qt::ActionsContextMenu); connect(ui->spinFactor, qOverload(&Gui::QuantitySpinBox::valueChanged), this, &TaskScaledParameters::onFactor); connect(ui->spinOccurrences, &Gui::UIntSpinBox::unsignedChanged, this, &TaskScaledParameters::onOccurrences); connect(ui->checkBoxUpdateView, &QCheckBox::toggled, this, &TaskScaledParameters::onUpdateView); // Get the feature data PartDesign::Scaled* pcScaled = static_cast(getObject()); std::vector originals = pcScaled->Originals.getValues(); // Fill data into dialog elements for (std::vector::const_iterator i = originals.begin(); i != originals.end(); ++i) { const App::DocumentObject* obj = *i; if (obj) { QListWidgetItem* item = new QListWidgetItem(); item->setText(QString::fromUtf8(obj->Label.getValue())); item->setData(Qt::UserRole, QString::fromLatin1(obj->getNameInDocument())); ui->listWidgetFeatures->addItem(item); } } // --------------------- ui->spinFactor->bind(pcScaled->Factor); ui->spinOccurrences->setMaximum(INT_MAX); ui->spinOccurrences->bind(pcScaled->Occurrences); ui->spinFactor->setEnabled(true); ui->spinOccurrences->setEnabled(true); //ui->spinFactor->setDecimals(Base::UnitsApi::getDecimals()); updateUI(); } void TaskScaledParameters::updateUI() { if (blockUpdate) return; blockUpdate = true; PartDesign::Scaled* pcScaled = static_cast(getObject()); double factor = pcScaled->Factor.getValue(); unsigned occurrences = pcScaled->Occurrences.getValue(); ui->spinFactor->setValue(factor); ui->spinOccurrences->setValue(occurrences); blockUpdate = false; } void TaskScaledParameters::onSelectionChanged(const Gui::SelectionChanges& msg) { if (originalSelected(msg)) { Gui::SelectionObject selObj(msg); App::DocumentObject* obj = selObj.getObject(); Q_ASSERT(obj); QString label = QString::fromUtf8(obj->Label.getValue()); QString objectName = QString::fromLatin1(msg.pObjectName); if (selectionMode == addFeature) { QListWidgetItem* item = new QListWidgetItem(); item->setText(label); item->setData(Qt::UserRole, objectName); ui->listWidgetFeatures->addItem(item); } else { removeItemFromListWidget(ui->listWidgetFeatures, label); } exitSelectionMode(); } } void TaskScaledParameters::clearButtons() { ui->buttonAddFeature->setChecked(false); ui->buttonRemoveFeature->setChecked(false); } void TaskScaledParameters::onFactor(const double f) { if (blockUpdate) return; PartDesign::Scaled* pcScaled = static_cast(getObject()); pcScaled->Factor.setValue(f); recomputeFeature(); } void TaskScaledParameters::onOccurrences(const uint n) { if (blockUpdate) return; PartDesign::Scaled* pcScaled = static_cast(getObject()); pcScaled->Occurrences.setValue(n); recomputeFeature(); } void TaskScaledParameters::onUpdateView(bool on) { blockUpdate = !on; if (on) { // Do the same like in TaskDlgScaledParameters::accept() but without doCommand PartDesign::Scaled* pcScaled = static_cast(getObject()); pcScaled->Factor.setValue(getFactor()); pcScaled->Occurrences.setValue(getOccurrences()); recomputeFeature(); } } void TaskScaledParameters::onFeatureDeleted(void) { PartDesign::Transformed* pcTransformed = getObject(); std::vector originals = pcTransformed->Originals.getValues(); int currentRow = ui->listWidgetFeatures->currentRow(); if (currentRow < 0) { Base::Console().Error("PartDesign ScaledPattern: No feature selected for removing.\n"); return; //no current row selected } originals.erase(originals.begin() + currentRow); pcTransformed->Originals.setValues(originals); ui->listWidgetFeatures->model()->removeRow(currentRow); recomputeFeature(); } double TaskScaledParameters::getFactor(void) const { return ui->spinFactor->value().getValue(); } unsigned TaskScaledParameters::getOccurrences(void) const { return ui->spinOccurrences->value(); } TaskScaledParameters::~TaskScaledParameters() { if (proxy) delete proxy; } void TaskScaledParameters::changeEvent(QEvent *e) { TaskBox::changeEvent(e); if (e->type() == QEvent::LanguageChange) { ui->retranslateUi(proxy); } } void TaskScaledParameters::apply() { std::string name = TransformedView->getObject()->getNameInDocument(); Gui::Command::doCommand(Gui::Command::Doc,"App.ActiveDocument.%s.Factor = %f",name.c_str(), getFactor()); ui->spinOccurrences->apply(); } //************************************************************************** //************************************************************************** // TaskDialog //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ TaskDlgScaledParameters::TaskDlgScaledParameters(ViewProviderScaled *ScaledView) : TaskDlgTransformedParameters(ScaledView) { parameter = new TaskScaledParameters(ScaledView); Content.push_back(parameter); } //==== calls from the TaskView =============================================================== bool TaskDlgScaledParameters::accept() { parameter->apply(); return TaskDlgTransformedParameters::accept(); } #include "moc_TaskScaledParameters.cpp"