422 lines
15 KiB
C++
422 lines
15 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2011 Juergen Riegel <FreeCAD@juergen-riegel.net> *
|
|
* *
|
|
* 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_
|
|
#endif
|
|
|
|
#include <Base/UnitsApi.h>
|
|
#include <Base/Console.h>
|
|
#include <App/Application.h>
|
|
#include <App/Document.h>
|
|
#include <App/Origin.h>
|
|
#include <App/OriginFeature.h>
|
|
#include <Gui/Application.h>
|
|
#include <Gui/Document.h>
|
|
#include <Gui/BitmapFactory.h>
|
|
#include <Gui/ViewProvider.h>
|
|
#include <Gui/WaitCursor.h>
|
|
#include <Gui/Selection.h>
|
|
#include <Gui/Command.h>
|
|
#include <Gui/ViewProviderOrigin.h>
|
|
#include <Mod/PartDesign/App/DatumLine.h>
|
|
#include <Mod/PartDesign/App/FeatureRevolution.h>
|
|
#include <Mod/PartDesign/App/FeatureGroove.h>
|
|
#include <Mod/Sketcher/App/SketchObject.h>
|
|
#include <Mod/PartDesign/App/Body.h>
|
|
|
|
#include "ReferenceSelection.h"
|
|
#include "Utils.h"
|
|
|
|
#include "ui_TaskRevolutionParameters.h"
|
|
#include "TaskRevolutionParameters.h"
|
|
|
|
using namespace PartDesignGui;
|
|
using namespace Gui;
|
|
|
|
/* TRANSLATOR PartDesignGui::TaskRevolutionParameters */
|
|
|
|
TaskRevolutionParameters::TaskRevolutionParameters(PartDesignGui::ViewProvider* RevolutionView, QWidget *parent)
|
|
: TaskSketchBasedParameters(RevolutionView, parent, "PartDesign_Revolution", tr("Revolution parameters"))
|
|
, ui(new Ui_TaskRevolutionParameters)
|
|
{
|
|
// we need a separate container widget to add all controls to
|
|
proxy = new QWidget(this);
|
|
ui->setupUi(proxy);
|
|
QMetaObject::connectSlotsByName(this);
|
|
|
|
connect(ui->revolveAngle, SIGNAL(valueChanged(double)),
|
|
this, SLOT(onAngleChanged(double)));
|
|
connect(ui->axis, SIGNAL(activated(int)),
|
|
this, SLOT(onAxisChanged(int)));
|
|
connect(ui->checkBoxMidplane, SIGNAL(toggled(bool)),
|
|
this, SLOT(onMidplane(bool)));
|
|
connect(ui->checkBoxReversed, SIGNAL(toggled(bool)),
|
|
this, SLOT(onReversed(bool)));
|
|
connect(ui->checkBoxUpdateView, SIGNAL(toggled(bool)),
|
|
this, SLOT(onUpdateView(bool)));
|
|
|
|
this->groupLayout()->addWidget(proxy);
|
|
|
|
// Temporarily prevent unnecessary feature recomputes
|
|
ui->revolveAngle->blockSignals(true);
|
|
ui->axis->blockSignals(true);
|
|
ui->checkBoxMidplane->blockSignals(true);
|
|
ui->checkBoxReversed->blockSignals(true);
|
|
|
|
//bind property mirrors
|
|
PartDesign::ProfileBased* pcFeat = static_cast<PartDesign::ProfileBased*>(vp->getObject());
|
|
if (pcFeat->isDerivedFrom(PartDesign::Revolution::getClassTypeId())) {
|
|
PartDesign::Revolution* rev = static_cast<PartDesign::Revolution*>(vp->getObject());
|
|
this->propAngle = &(rev->Angle);
|
|
this->propMidPlane = &(rev->Midplane);
|
|
this->propReferenceAxis = &(rev->ReferenceAxis);
|
|
this->propReversed = &(rev->Reversed);
|
|
} else {
|
|
assert(pcFeat->isDerivedFrom(PartDesign::Groove::getClassTypeId()));
|
|
PartDesign::Groove* rev = static_cast<PartDesign::Groove*>(vp->getObject());
|
|
this->propAngle = &(rev->Angle);
|
|
this->propMidPlane = &(rev->Midplane);
|
|
this->propReferenceAxis = &(rev->ReferenceAxis);
|
|
this->propReversed = &(rev->Reversed);
|
|
}
|
|
|
|
double l = propAngle->getValue();
|
|
bool mirrored = propMidPlane->getValue();
|
|
bool reversed = propReversed->getValue();
|
|
|
|
ui->revolveAngle->setValue(l);
|
|
blockUpdate = false;
|
|
updateUI();
|
|
|
|
|
|
ui->checkBoxMidplane->setChecked(mirrored);
|
|
ui->checkBoxReversed->setChecked(reversed);
|
|
|
|
if (pcFeat->isDerivedFrom(PartDesign::Revolution::getClassTypeId())) {
|
|
ui->revolveAngle->bind(static_cast<PartDesign::Revolution *>(pcFeat)->Angle);
|
|
} else if (pcFeat->isDerivedFrom(PartDesign::Groove::getClassTypeId())) {
|
|
ui->revolveAngle->bind(static_cast<PartDesign::Groove *> (pcFeat)->Angle);
|
|
}
|
|
|
|
ui->revolveAngle->blockSignals(false);
|
|
ui->axis->blockSignals(false);
|
|
ui->checkBoxMidplane->blockSignals(false);
|
|
ui->checkBoxReversed->blockSignals(false);
|
|
|
|
setFocus ();
|
|
|
|
//show the parts coordinate system axis for selection
|
|
PartDesign::Body * body = PartDesign::Body::findBodyOf ( vp->getObject () );
|
|
if(body) {
|
|
try {
|
|
App::Origin *origin = body->getOrigin();
|
|
ViewProviderOrigin* vpOrigin;
|
|
vpOrigin = static_cast<ViewProviderOrigin*>(Gui::Application::Instance->getViewProvider(origin));
|
|
vpOrigin->setTemporaryVisibility(true, false);
|
|
} catch (const Base::Exception &ex) {
|
|
ex.ReportException();
|
|
}
|
|
}
|
|
}
|
|
|
|
void TaskRevolutionParameters::fillAxisCombo(bool forceRefill)
|
|
{
|
|
bool oldVal_blockUpdate = blockUpdate;
|
|
blockUpdate = true;
|
|
|
|
if (axesInList.empty())
|
|
forceRefill = true;//not filled yet, full refill
|
|
|
|
if (forceRefill){
|
|
ui->axis->clear();
|
|
|
|
for(size_t i = 0; i < axesInList.size(); i++){
|
|
delete axesInList[i];
|
|
}
|
|
this->axesInList.clear();
|
|
|
|
//add sketch axes
|
|
PartDesign::ProfileBased* pcFeat = static_cast<PartDesign::ProfileBased*>(vp->getObject());
|
|
Part::Part2DObject* pcSketch = dynamic_cast<Part::Part2DObject*>(pcFeat->Profile.getValue());
|
|
if (pcSketch){
|
|
addAxisToCombo(pcSketch,"V_Axis",QObject::tr("Vertical sketch axis"));
|
|
addAxisToCombo(pcSketch,"H_Axis",QObject::tr("Horizontal sketch axis"));
|
|
for (int i=0; i < pcSketch->getAxisCount(); i++) {
|
|
QString itemText = QObject::tr("Construction line %1").arg(i+1);
|
|
std::stringstream sub;
|
|
sub << "Axis" << i;
|
|
addAxisToCombo(pcSketch,sub.str(),itemText);
|
|
}
|
|
}
|
|
|
|
//add part axes
|
|
PartDesign::Body * body = PartDesign::Body::findBodyOf ( pcFeat );
|
|
if (body) {
|
|
try {
|
|
App::Origin* orig = body->getOrigin();
|
|
addAxisToCombo(orig->getX(),"",tr("Base X axis"));
|
|
addAxisToCombo(orig->getY(),"",tr("Base Y axis"));
|
|
addAxisToCombo(orig->getZ(),"",tr("Base Z axis"));
|
|
} catch (const Base::Exception &ex) {
|
|
ex.ReportException();
|
|
}
|
|
}
|
|
|
|
//add "Select reference"
|
|
addAxisToCombo(0,std::string(),tr("Select reference..."));
|
|
}//endif forceRefill
|
|
|
|
//add current link, if not in list
|
|
//first, figure out the item number for current axis
|
|
int indexOfCurrent = -1;
|
|
App::DocumentObject* ax = propReferenceAxis->getValue();
|
|
const std::vector<std::string> &subList = propReferenceAxis->getSubValues();
|
|
for (size_t i = 0; i < axesInList.size(); i++) {
|
|
if (ax == axesInList[i]->getValue() && subList == axesInList[i]->getSubValues())
|
|
indexOfCurrent = i;
|
|
}
|
|
if (indexOfCurrent == -1 && ax) {
|
|
assert(subList.size() <= 1);
|
|
std::string sub;
|
|
if (!subList.empty())
|
|
sub = subList[0];
|
|
addAxisToCombo(ax, sub, getRefStr(ax, subList));
|
|
indexOfCurrent = axesInList.size()-1;
|
|
}
|
|
|
|
//highlight current.
|
|
if (indexOfCurrent != -1)
|
|
ui->axis->setCurrentIndex(indexOfCurrent);
|
|
|
|
blockUpdate = oldVal_blockUpdate;
|
|
}
|
|
|
|
void TaskRevolutionParameters::addAxisToCombo(App::DocumentObject* linkObj,
|
|
std::string linkSubname,
|
|
QString itemText)
|
|
{
|
|
this->ui->axis->addItem(itemText);
|
|
this->axesInList.push_back(new App::PropertyLinkSub());
|
|
App::PropertyLinkSub &lnk = *(axesInList[axesInList.size()-1]);
|
|
lnk.setValue(linkObj,std::vector<std::string>(1,linkSubname));
|
|
}
|
|
|
|
void TaskRevolutionParameters::updateUI()
|
|
{
|
|
if (blockUpdate)
|
|
return;
|
|
blockUpdate = true;
|
|
|
|
fillAxisCombo();
|
|
|
|
blockUpdate = false;
|
|
}
|
|
|
|
void TaskRevolutionParameters::onSelectionChanged(const Gui::SelectionChanges& msg)
|
|
{
|
|
if (msg.Type == Gui::SelectionChanges::AddSelection) {
|
|
|
|
exitSelectionMode();
|
|
std::vector<std::string> axis;
|
|
App::DocumentObject* selObj;
|
|
if (getReferencedSelection(vp->getObject(), msg, selObj, axis) && selObj) {
|
|
propReferenceAxis->setValue(selObj, axis);
|
|
|
|
recomputeFeature();
|
|
updateUI();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void TaskRevolutionParameters::onAngleChanged(double len)
|
|
{
|
|
propAngle->setValue(len);
|
|
exitSelectionMode();
|
|
recomputeFeature();
|
|
}
|
|
|
|
void TaskRevolutionParameters::onAxisChanged(int num)
|
|
{
|
|
if (blockUpdate)
|
|
return;
|
|
PartDesign::ProfileBased* pcRevolution = static_cast<PartDesign::ProfileBased*>(vp->getObject());
|
|
|
|
if (axesInList.empty())
|
|
return;
|
|
|
|
App::DocumentObject *oldRefAxis = propReferenceAxis->getValue();
|
|
std::vector<std::string> oldSubRefAxis = propReferenceAxis->getSubValues();
|
|
std::string oldRefName;
|
|
if (!oldSubRefAxis.empty())
|
|
oldRefName = oldSubRefAxis.front();
|
|
|
|
App::PropertyLinkSub &lnk = *(axesInList[num]);
|
|
if (lnk.getValue() == 0) {
|
|
// enter reference selection mode
|
|
TaskSketchBasedParameters::onSelectReference(true, true, false, true, true);
|
|
} else {
|
|
if (!pcRevolution->getDocument()->isIn(lnk.getValue())){
|
|
Base::Console().Error("Object was deleted\n");
|
|
return;
|
|
}
|
|
propReferenceAxis->Paste(lnk);
|
|
exitSelectionMode();
|
|
}
|
|
|
|
try {
|
|
App::DocumentObject *newRefAxis = propReferenceAxis->getValue();
|
|
const std::vector<std::string> &newSubRefAxis = propReferenceAxis->getSubValues();
|
|
std::string newRefName;
|
|
if (!newSubRefAxis.empty())
|
|
newRefName = newSubRefAxis.front();
|
|
|
|
if (oldRefAxis != newRefAxis ||
|
|
oldSubRefAxis.size() != newSubRefAxis.size() ||
|
|
oldRefName != newRefName) {
|
|
bool reversed = propReversed->getValue();
|
|
if (pcRevolution->isDerivedFrom(PartDesign::Revolution::getClassTypeId()))
|
|
reversed = static_cast<PartDesign::Revolution*>(pcRevolution)->suggestReversed();
|
|
if (pcRevolution->isDerivedFrom(PartDesign::Groove::getClassTypeId()))
|
|
reversed = static_cast<PartDesign::Groove*>(pcRevolution)->suggestReversed();
|
|
|
|
if (reversed != propReversed->getValue()) {
|
|
propReversed->setValue(reversed);
|
|
ui->checkBoxReversed->blockSignals(true);
|
|
ui->checkBoxReversed->setChecked(reversed);
|
|
ui->checkBoxReversed->blockSignals(false);
|
|
}
|
|
}
|
|
|
|
recomputeFeature();
|
|
}
|
|
catch (const Base::Exception& e) {
|
|
e.ReportException();
|
|
}
|
|
}
|
|
|
|
void TaskRevolutionParameters::onMidplane(bool on)
|
|
{
|
|
propMidPlane->setValue(on);
|
|
recomputeFeature();
|
|
}
|
|
|
|
void TaskRevolutionParameters::onReversed(bool on)
|
|
{
|
|
propReversed->setValue(on);
|
|
recomputeFeature();
|
|
}
|
|
|
|
double TaskRevolutionParameters::getAngle(void) const
|
|
{
|
|
return ui->revolveAngle->value().getValue();
|
|
}
|
|
|
|
void TaskRevolutionParameters::getReferenceAxis(App::DocumentObject*& obj, std::vector<std::string>& sub) const
|
|
{
|
|
if (axesInList.empty())
|
|
throw Base::RuntimeError("Not initialized!");
|
|
|
|
int num = ui->axis->currentIndex();
|
|
const App::PropertyLinkSub &lnk = *(axesInList[num]);
|
|
if (lnk.getValue() == 0) {
|
|
throw Base::RuntimeError("Still in reference selection mode; reference wasn't selected yet");
|
|
} else {
|
|
PartDesign::ProfileBased* pcRevolution = static_cast<PartDesign::ProfileBased*>(vp->getObject());
|
|
if (!pcRevolution->getDocument()->isIn(lnk.getValue())){
|
|
throw Base::RuntimeError("Object was deleted");
|
|
}
|
|
|
|
obj = lnk.getValue();
|
|
sub = lnk.getSubValues();
|
|
}
|
|
}
|
|
|
|
bool TaskRevolutionParameters::getMidplane(void) const
|
|
{
|
|
return ui->checkBoxMidplane->isChecked();
|
|
}
|
|
|
|
bool TaskRevolutionParameters::getReversed(void) const
|
|
{
|
|
return ui->checkBoxReversed->isChecked();
|
|
}
|
|
|
|
TaskRevolutionParameters::~TaskRevolutionParameters()
|
|
{
|
|
try {
|
|
//hide the parts coordinate system axis for selection
|
|
PartDesign::Body * body = vp ? PartDesign::Body::findBodyOf(vp->getObject()) : 0;
|
|
if (body) {
|
|
App::Origin *origin = body->getOrigin();
|
|
ViewProviderOrigin* vpOrigin;
|
|
vpOrigin = static_cast<ViewProviderOrigin*>(Gui::Application::Instance->getViewProvider(origin));
|
|
vpOrigin->resetTemporaryVisibility();
|
|
}
|
|
} catch (const Base::Exception &ex) {
|
|
ex.ReportException();
|
|
}
|
|
|
|
for (size_t i = 0; i < axesInList.size(); i++) {
|
|
delete axesInList[i];
|
|
}
|
|
}
|
|
|
|
void TaskRevolutionParameters::changeEvent(QEvent *e)
|
|
{
|
|
TaskBox::changeEvent(e);
|
|
if (e->type() == QEvent::LanguageChange) {
|
|
ui->retranslateUi(proxy);
|
|
}
|
|
}
|
|
|
|
void TaskRevolutionParameters::apply()
|
|
{
|
|
//Gui::Command::openCommand(QT_TRANSLATE_NOOP("Command", "Revolution changed"));
|
|
ui->revolveAngle->apply();
|
|
std::vector<std::string> sub;
|
|
App::DocumentObject* obj;
|
|
getReferenceAxis(obj, sub);
|
|
std::string axis = buildLinkSingleSubPythonStr(obj, sub);
|
|
auto tobj = vp->getObject();
|
|
FCMD_OBJ_CMD(tobj,"ReferenceAxis = " << axis);
|
|
FCMD_OBJ_CMD(tobj,"Midplane = " << (getMidplane() ? 1 : 0));
|
|
FCMD_OBJ_CMD(tobj,"Reversed = " << (getReversed() ? 1 : 0));
|
|
}
|
|
|
|
//**************************************************************************
|
|
//**************************************************************************
|
|
// TaskDialog
|
|
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
TaskDlgRevolutionParameters::TaskDlgRevolutionParameters(PartDesignGui::ViewProvider *RevolutionView)
|
|
: TaskDlgSketchBasedParameters(RevolutionView)
|
|
{
|
|
assert(RevolutionView);
|
|
Content.push_back(new TaskRevolutionParameters(RevolutionView));
|
|
}
|
|
|
|
|
|
#include "moc_TaskRevolutionParameters.cpp"
|