/*************************************************************************** * 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 # include # 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()); setUpUI(pcChamfer); QMetaObject::invokeMethod(ui->chamferSize, "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->chamferType, SIGNAL(currentIndexChanged(int)), this, SLOT(onTypeChanged(int))); connect(ui->chamferSize, SIGNAL(valueChanged(double)), this, SLOT(onSizeChanged(double))); connect(ui->chamferSize2, SIGNAL(valueChanged(double)), this, SLOT(onSize2Changed(double))); connect(ui->chamferAngle, SIGNAL(valueChanged(double)), this, SLOT(onAngleChanged(double))); connect(ui->flipDirection, SIGNAL(toggled(bool)), this, SLOT(onFlipDirection(bool))); connect(ui->buttonRefAdd, SIGNAL(toggled(bool)), this, SLOT(onButtonRefAdd(bool))); connect(ui->buttonRefRemove, SIGNAL(toggled(bool)), this, SLOT(onButtonRefRemove(bool))); // Create context menu createDeleteAction(ui->listWidgetReferences, ui->buttonRefRemove); connect(deleteAction, SIGNAL(triggered()), this, SLOT(onRefDeleted())); connect(ui->listWidgetReferences, SIGNAL(currentItemChanged(QListWidgetItem*, QListWidgetItem*)), this, SLOT(setSelection(QListWidgetItem*))); connect(ui->listWidgetReferences, SIGNAL(itemClicked(QListWidgetItem*)), this, SLOT(setSelection(QListWidgetItem*))); connect(ui->listWidgetReferences, SIGNAL(itemDoubleClicked(QListWidgetItem*)), this, SLOT(doubleClicked(QListWidgetItem*))); } void TaskChamferParameters::setUpUI(PartDesign::Chamfer* pcChamfer) { const int index = pcChamfer->ChamferType.getValue(); ui->chamferType->setCurrentIndex(index); ui->flipDirection->setEnabled(index != 0); // Enable if type is not "Equal distance" ui->flipDirection->setChecked(pcChamfer->FlipDirection.getValue()); ui->chamferSize->setUnit(Base::Unit::Length); ui->chamferSize->setMinimum(0); ui->chamferSize->setValue(pcChamfer->Size.getValue()); ui->chamferSize->bind(pcChamfer->Size); ui->chamferSize->selectNumber(); ui->chamferSize2->setUnit(Base::Unit::Length); ui->chamferSize2->setMinimum(0); ui->chamferSize2->setValue(pcChamfer->Size2.getValue()); ui->chamferSize2->bind(pcChamfer->Size2); ui->chamferAngle->setUnit(Base::Unit::Angle); ui->chamferAngle->setMinimum(0.0); ui->chamferAngle->setMaximum(180.0); ui->chamferAngle->setValue(pcChamfer->Angle.getValue()); ui->chamferAngle->bind(pcChamfer->Angle); ui->stackedWidget->setFixedHeight(ui->chamferSize2->sizeHint().height()); QFontMetrics fm(ui->typeLabel->font()); int minWidth = fm.width(ui->typeLabel->text()); minWidth = std::max(minWidth, fm.width(ui->sizeLabel->text())); minWidth = std::max(minWidth, fm.width(ui->size2Label->text())); minWidth = std::max(minWidth, fm.width(ui->angleLabel->text())); minWidth = minWidth + 5; //spacing ui->typeLabel->setMinimumWidth(minWidth); ui->sizeLabel->setMinimumWidth(minWidth); ui->size2Label->setMinimumWidth(minWidth); ui->angleLabel->setMinimumWidth(minWidth); } 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)) { 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) { deleteAction->setEnabled(true); deleteAction->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) { deleteAction->setEnabled(false); deleteAction->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) { // 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(); // if all items are selected, we must stop because one must be kept to avoid that the feature gets broken if (selectedList.count() == ui->listWidgetReferences->model()->rowCount()) { QMessageBox::warning(this, tr("Selection error"), tr("At least one item must be kept.")); return; } // get the chamfer object PartDesign::Chamfer* pcChamfer = static_cast(DressUpView->getObject()); App::DocumentObject* base = pcChamfer->Base.getValue(); // get all chamfer references std::vector refs = pcChamfer->Base.getSubValues(); setupTransaction(); // delete the selection backwards to assure the list index keeps valid for the deletion for (int i = selectedList.count() - 1; i > -1; i--) { // 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)); // erase the reference refs.erase(refs.begin() + rowNumber); // remove from the list ui->listWidgetReferences->model()->removeRow(rowNumber); } // update the object pcChamfer->Base.setValue(base, refs); // recompute the feature pcChamfer->recomputeFeature(); // if there is only one item left, it cannot be deleted if (ui->listWidgetReferences->count() == 1) { deleteAction->setEnabled(false); deleteAction->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::onTypeChanged(int index) { PartDesign::Chamfer* pcChamfer = static_cast(DressUpView->getObject()); pcChamfer->ChamferType.setValue(index); ui->stackedWidget->setCurrentIndex(index); ui->flipDirection->setEnabled(index != 0); // Enable if type is not "Equal distance" pcChamfer->getDocument()->recomputeFeature(pcChamfer); } void TaskChamferParameters::onSizeChanged(double len) { PartDesign::Chamfer* pcChamfer = static_cast(DressUpView->getObject()); setupTransaction(); pcChamfer->Size.setValue(len); pcChamfer->getDocument()->recomputeFeature(pcChamfer); } void TaskChamferParameters::onSize2Changed(double len) { PartDesign::Chamfer* pcChamfer = static_cast(DressUpView->getObject()); setupTransaction(); pcChamfer->Size2.setValue(len); pcChamfer->getDocument()->recomputeFeature(pcChamfer); } void TaskChamferParameters::onAngleChanged(double angle) { PartDesign::Chamfer* pcChamfer = static_cast(DressUpView->getObject()); setupTransaction(); pcChamfer->Angle.setValue(angle); pcChamfer->getDocument()->recomputeFeature(pcChamfer); } void TaskChamferParameters::onFlipDirection(bool flip) { PartDesign::Chamfer* pcChamfer = static_cast(DressUpView->getObject()); setupTransaction(); pcChamfer->FlipDirection.setValue(flip); pcChamfer->getDocument()->recomputeFeature(pcChamfer); } int TaskChamferParameters::getType(void) const { return ui->chamferType->currentIndex(); } double TaskChamferParameters::getSize(void) const { return ui->chamferSize->value().getValue(); } double TaskChamferParameters::getSize2(void) const { return ui->chamferSize2->value().getValue(); } double TaskChamferParameters::getAngle(void) const { return ui->chamferAngle->value().getValue(); } bool TaskChamferParameters::getFlipDirection(void) const { return ui->flipDirection->isChecked(); } TaskChamferParameters::~TaskChamferParameters() { Gui::Selection().clearSelection(); Gui::Selection().rmvSelectionGate(); delete ui; } bool TaskChamferParameters::event(QEvent *e) { return TaskDressUpParameters::KeyEvent(e); } 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"); PartDesign::Chamfer* pcChamfer = static_cast(DressUpView->getObject()); const int chamfertype = pcChamfer->ChamferType.getValue(); switch(chamfertype) { case 0: // "Equal distance" ui->chamferSize->apply(); break; case 1: // "Two distances" ui->chamferSize->apply(); ui->chamferSize2->apply(); break; case 2: // "Distance and Angle" ui->chamferSize->apply(); ui->chamferAngle->apply(); break; } } //************************************************************************** //************************************************************************** // 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"