/*************************************************************************** * 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 # 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(QKeySequence::Delete); #if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) // display shortcut behind the context menu entry action->setShortcutVisibleInContextMenu(true); #endif ui->listWidgetReferences->addAction(action); // if there is only one item, it cannot be deleted if (ui->listWidgetReferences->count() == 1) { action->setEnabled(false); action->setStatusTip(tr("There must be at least one item")); ui->buttonRefRemove->setEnabled(false); ui->buttonRefRemove->setToolTip(tr("There must be at least one item")); } connect(action, SIGNAL(triggered()), this, SLOT(onRefDeleted())); ui->listWidgetReferences->setContextMenuPolicy(Qt::ActionsContextMenu); connect(ui->listWidgetReferences, SIGNAL(itemClicked(QListWidgetItem*)), this, SLOT(setSelection(QListWidgetItem*))); connect(ui->listWidgetReferences, SIGNAL(itemDoubleClicked(QListWidgetItem*)), this, SLOT(doubleClicked(QListWidgetItem*))); } void TaskChamferParameters::onSelectionChanged(const Gui::SelectionChanges& msg) { // executed when the user selected something in the CAD object // adds/deletes the selection accordingly if (selectionMode == none) return; if (msg.Type == Gui::SelectionChanges::AddSelection) { if (referenceSelected(msg)) { QAction *action = ui->listWidgetReferences->actions().at(0); // we have only one action if (selectionMode == refAdd) { ui->listWidgetReferences->addItem(QString::fromStdString(msg.pSubName)); // it might be the second one so we can enable the context menu if (ui->listWidgetReferences->count() > 1) { action->setEnabled(true); action->setStatusTip(QString()); ui->buttonRefRemove->setEnabled(true); ui->buttonRefRemove->setToolTip(tr("Click button to enter selection mode,\nclick again to end selection")); } } else { removeItemFromListWidget(ui->listWidgetReferences, msg.pSubName); // remove its selection too Gui::Selection().clearSelection(); // if there is only one item left, it cannot be deleted if (ui->listWidgetReferences->count() == 1) { action->setEnabled(false); action->setStatusTip(tr("There must be at least one item")); ui->buttonRefRemove->setEnabled(false); ui->buttonRefRemove->setToolTip(tr("There must be at least one item")); // we must also end the selection mode exitSelectionMode(); clearButtons(none); } } // highlight existing references for possible further selections DressUpView->highlightReferences(true); } } } 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) { // get vector of selected objects of active document to assure we have a valid selection std::vector selection = Gui::Selection().getSelectionEx(); if (selection.size() == 0) { QMessageBox::warning(this, tr("Selection error"), tr("Nothing selected!")); return; } // assure we we are not in selection mode exitSelectionMode(); clearButtons(none); // delete any selections since the reference(s) might be highlighted Gui::Selection().clearSelection(); DressUpView->highlightReferences(false); // get the list of items to be deleted QList selectedList = ui->listWidgetReferences->selectedItems(); // delete the selection backwards to assure the list index keeps valid for the deletion for (int i = selectedList.count() - 1; i > -1; i--) { QListWidgetItem* item = selectedList.at(i); // get the fillet object PartDesign::Chamfer* pcChamfer = static_cast(DressUpView->getObject()); App::DocumentObject* base = pcChamfer->Base.getValue(); // get all fillet references std::vector refs = pcChamfer->Base.getSubValues(); // the ref index is the same as the listWidgetReferences index // so we can erase using the row number of the element to be deleted int rowNumber = ui->listWidgetReferences->row(selectedList.at(i)); refs.erase(refs.begin() + rowNumber); setupTransaction(); pcChamfer->Base.setValue(base, refs); ui->listWidgetReferences->model()->removeRow(rowNumber); pcChamfer->getDocument()->recomputeFeature(pcChamfer); } // if there is only one item left, it cannot be deleted if (ui->listWidgetReferences->count() == 1) { QAction *action = ui->listWidgetReferences->actions().at(0); // we have only one action action->setEnabled(false); action->setStatusTip(tr("There must be at least one item")); ui->buttonRefRemove->setEnabled(false); ui->buttonRefRemove->setToolTip(tr("There must be at least one item")); } } 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().clearSelection(); 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"