/*************************************************************************** * Copyright (c) 2011 Juergen Riegel * * * * 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 "ui_TaskChamferParameters.h" #include "TaskChamferParameters.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace PartDesignGui; using namespace Gui; /* TRANSLATOR PartDesignGui::TaskChamferParameters */ TaskChamferParameters::TaskChamferParameters(ViewProviderDressUp *DressUpView,QWidget *parent) : TaskDressUpParameters(DressUpView, true, true, parent) { // we need a separate container widget to add all controls to proxy = new QWidget(this); ui = new Ui_TaskChamferParameters(); ui->setupUi(proxy); this->groupLayout()->addWidget(proxy); PartDesign::Chamfer* pcChamfer = static_cast(DressUpView->getObject()); double r = pcChamfer->Size.getValue(); ui->chamferDistance->setUnit(Base::Unit::Length); ui->chamferDistance->setValue(r); ui->chamferDistance->setMinimum(0); ui->chamferDistance->selectNumber(); ui->chamferDistance->bind(pcChamfer->Size); QMetaObject::invokeMethod(ui->chamferDistance, "setFocus", Qt::QueuedConnection); std::vector strings = pcChamfer->Base.getSubValues(); for (std::vector::const_iterator i = strings.begin(); i != strings.end(); i++) { ui->listWidgetReferences->addItem(QString::fromStdString(*i)); } QMetaObject::connectSlotsByName(this); connect(ui->chamferDistance, SIGNAL(valueChanged(double)), this, SLOT(onLengthChanged(double))); connect(ui->buttonRefAdd, SIGNAL(toggled(bool)), this, SLOT(onButtonRefAdd(bool))); connect(ui->buttonRefRemove, SIGNAL(toggled(bool)), this, SLOT(onButtonRefRemove(bool))); // Create context menu QAction* action = new QAction(tr("Remove"), this); action->setShortcut(QString::fromLatin1("Del")); ui->listWidgetReferences->addAction(action); connect(action, SIGNAL(triggered()), this, SLOT(onRefDeleted())); ui->listWidgetReferences->setContextMenuPolicy(Qt::ActionsContextMenu); } void TaskChamferParameters::onSelectionChanged(const Gui::SelectionChanges& msg) { if (selectionMode == none) return; if (msg.Type == Gui::SelectionChanges::AddSelection) { if (referenceSelected(msg)) { if (selectionMode == refAdd) ui->listWidgetReferences->addItem(QString::fromStdString(msg.pSubName)); else removeItemFromListWidget(ui->listWidgetReferences, msg.pSubName); clearButtons(none); exitSelectionMode(); } } } void TaskChamferParameters::clearButtons(const selectionModes notThis) { if (notThis != refAdd) ui->buttonRefAdd->setChecked(false); if (notThis != refRemove) ui->buttonRefRemove->setChecked(false); DressUpView->highlightReferences(false); } void TaskChamferParameters::onRefDeleted(void) { PartDesign::Chamfer* pcChamfer = static_cast(DressUpView->getObject()); App::DocumentObject* base = pcChamfer->Base.getValue(); std::vector refs = pcChamfer->Base.getSubValues(); refs.erase(refs.begin() + ui->listWidgetReferences->currentRow()); setupTransaction(); pcChamfer->Base.setValue(base, refs); ui->listWidgetReferences->model()->removeRow(ui->listWidgetReferences->currentRow()); pcChamfer->getDocument()->recomputeFeature(pcChamfer); } void TaskChamferParameters::onLengthChanged(double len) { PartDesign::Chamfer* pcChamfer = static_cast(DressUpView->getObject()); setupTransaction(); pcChamfer->Size.setValue(len); pcChamfer->getDocument()->recomputeFeature(pcChamfer); } double TaskChamferParameters::getLength(void) const { return ui->chamferDistance->value().getValue(); } TaskChamferParameters::~TaskChamferParameters() { Gui::Selection().rmvSelectionGate(); delete ui; } void TaskChamferParameters::changeEvent(QEvent *e) { TaskBox::changeEvent(e); if (e->type() == QEvent::LanguageChange) { ui->retranslateUi(proxy); } } void TaskChamferParameters::apply() { std::string name = DressUpView->getObject()->getNameInDocument(); //Gui::Command::openCommand("Chamfer changed"); ui->chamferDistance->apply(); } //************************************************************************** //************************************************************************** // TaskDialog //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ TaskDlgChamferParameters::TaskDlgChamferParameters(ViewProviderChamfer *DressUpView) : TaskDlgDressUpParameters(DressUpView) { parameter = new TaskChamferParameters(DressUpView); Content.push_back(parameter); } TaskDlgChamferParameters::~TaskDlgChamferParameters() { } //==== calls from the TaskView =============================================================== //void TaskDlgChamferParameters::open() //{ // // a transaction is already open at creation time of the chamfer // if (!Gui::Command::hasPendingCommand()) { // QString msg = tr("Edit chamfer"); // Gui::Command::openCommand((const char*)msg.toUtf8()); // } //} bool TaskDlgChamferParameters::accept() { parameter->showObject(); parameter->apply(); return TaskDlgDressUpParameters::accept(); } #include "moc_TaskChamferParameters.cpp"