File size: 10,129 Bytes
985c397 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 | /***************************************************************************
* Copyright (C) 2015 Alexander Golubev (Fat-Zer) <fatzer2@gmail.com> *
* *
* 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 <QApplication>
#include <QMessageBox>
#include <App/DocumentObserver.h>
#include <Gui/Application.h>
#include <Gui/CommandT.h>
#include <Gui/MainWindow.h>
#include <Gui/BitmapFactory.h>
#include <Mod/PartDesign/App/Feature.h>
#include <Mod/PartDesign/App/Body.h>
#include "ui_TaskPreviewParameters.h"
#include "TaskFeatureParameters.h"
#include "TaskSketchBasedParameters.h"
using namespace PartDesignGui;
using namespace Gui;
/*********************************************************************
* Task Feature Parameters *
*********************************************************************/
TaskPreviewParameters::TaskPreviewParameters(ViewProvider* vp, QWidget* parent)
: TaskBox(BitmapFactory().pixmap("tree-pre-sel"), tr("Preview"), true, parent)
, vp(vp)
, ui(std::make_unique<Ui_TaskPreviewParameters>())
{
vp->showPreviousFeature(!hGrp->GetBool("ShowFinal", false));
vp->showPreview(hGrp->GetBool("ShowTransparentPreview", true));
auto* proxy = new QWidget(this);
ui->setupUi(proxy);
ui->showFinalCheckBox->setChecked(vp->isVisible());
ui->showTransparentPreviewCheckBox->setChecked(vp->isPreviewEnabled());
#if QT_VERSION >= QT_VERSION_CHECK(6, 7, 0)
connect(
ui->showTransparentPreviewCheckBox,
&QCheckBox::checkStateChanged,
this,
&TaskPreviewParameters::onShowPreviewChanged
);
connect(
ui->showFinalCheckBox,
&QCheckBox::checkStateChanged,
this,
&TaskPreviewParameters::onShowFinalChanged
);
#else
connect(
ui->showTransparentPreviewCheckBox,
&QCheckBox::stateChanged,
this,
&TaskPreviewParameters::onShowPreviewChanged
);
connect(
ui->showFinalCheckBox,
&QCheckBox::stateChanged,
this,
&TaskPreviewParameters::onShowFinalChanged
);
#endif
groupLayout()->addWidget(proxy);
}
TaskPreviewParameters::~TaskPreviewParameters() = default;
void TaskPreviewParameters::onShowFinalChanged(bool show)
{
vp->showPreviousFeature(!show);
}
void TaskPreviewParameters::onShowPreviewChanged(bool show)
{
vp->showPreview(show);
}
TaskFeatureParameters::TaskFeatureParameters(
PartDesignGui::ViewProvider* vp,
QWidget* parent,
const std::string& pixmapname,
const QString& parname
)
: TaskBox(Gui::BitmapFactory().pixmap(pixmapname.c_str()), parname, true, parent)
, vp(vp)
, blockUpdate(false)
{
Gui::Document* doc = vp->getDocument();
this->attachDocument(doc);
}
void TaskFeatureParameters::slotDeletedObject(const Gui::ViewProviderDocumentObject& Obj)
{
if (this->vp == &Obj) {
this->vp = nullptr;
}
}
void TaskFeatureParameters::onUpdateView(bool on)
{
blockUpdate = !on;
recomputeFeature();
}
void TaskFeatureParameters::recomputeFeature()
{
if (!blockUpdate) {
auto* feature = getObject<PartDesign::Feature>();
assert(feature);
feature->recomputeFeature();
feature->recomputePreview();
}
}
/*********************************************************************
* Task Dialog *
*********************************************************************/
TaskDlgFeatureParameters::TaskDlgFeatureParameters(PartDesignGui::ViewProvider* vp)
: preview(new TaskPreviewParameters(vp))
, vp(vp)
{
assert(vp);
}
TaskDlgFeatureParameters::~TaskDlgFeatureParameters() = default;
bool TaskDlgFeatureParameters::accept()
{
App::DocumentObject* feature = getObject();
bool isUpdateBlocked = false;
try {
// Iterate over parameter dialogs and apply all parameters from them
for (QWidget* wgt : Content) {
TaskFeatureParameters* param = qobject_cast<TaskFeatureParameters*>(wgt);
if (!param) {
continue;
}
param->saveHistory();
param->apply();
isUpdateBlocked |= param->isUpdateBlocked();
}
// Make sure the feature is what we are expecting
// Should be fine but you never know...
if (!feature->isDerivedFrom<PartDesign::Feature>()) {
throw Base::TypeError("Bad object processed in the feature dialog.");
}
if (isUpdateBlocked) {
Gui::cmdAppDocument(feature, "recompute()");
}
else {
// object was already computed, nothing more to do with it...
Gui::cmdAppDocument(feature, "purgeTouched()");
if (!feature->isValid()) {
throw Base::RuntimeError(getObject()->getStatusString());
}
// ...but touch parents to signal the change...
for (auto obj : feature->getInList()) {
obj->touch();
}
// ...and recompute them
Gui::cmdAppDocument(feature->getDocument(), "recompute()");
}
if (!feature->isValid()) {
throw Base::RuntimeError(getObject()->getStatusString());
}
App::DocumentObject* previous = static_cast<PartDesign::Feature*>(feature)->getBaseObject(
/* silent = */ true
);
Gui::cmdAppObjectHide(previous);
// detach the task panel from the selection to avoid to invoke
// eventually onAddSelection when the selection changes
std::vector<QWidget*> subwidgets = getDialogContent();
for (auto it : subwidgets) {
TaskSketchBasedParameters* param = qobject_cast<TaskSketchBasedParameters*>(it);
if (param) {
param->detachSelection();
}
}
Gui::cmdGuiDocument(feature, "resetEdit()");
Gui::Command::commitCommand();
}
catch (const Base::Exception& e) {
QString errorText = QString::fromUtf8(e.what());
QString statusText = QString::fromUtf8(getObject()->getStatusString());
// generic, fallback error message
if (errorText == QStringLiteral("Error") || errorText.isEmpty()) {
if (!statusText.isEmpty() && statusText != QStringLiteral("Error")) {
errorText = statusText;
}
else {
errorText = tr(
"The feature could not be created with the given parameters.\n"
"The geometry may be invalid or the parameters may be incompatible.\n"
"Please adjust the parameters and try again."
);
}
}
QMessageBox::warning(Gui::getMainWindow(), tr("Input error"), errorText);
return false;
}
return true;
}
bool TaskDlgFeatureParameters::reject()
{
auto feature = getObject<PartDesign::Feature>();
App::DocumentObjectWeakPtrT weakptr(feature);
App::Document* document = feature->getDocument();
PartDesign::Body* body = PartDesign::Body::findBodyOf(feature);
// Find out previous feature we won't be able to do it after abort
// (at least in the body case)
App::DocumentObject* previous = feature->getBaseObject(/* silent = */ true);
// detach the task panel from the selection to avoid to invoke
// eventually onAddSelection when the selection changes
std::vector<QWidget*> subwidgets = getDialogContent();
for (auto it : subwidgets) {
TaskSketchBasedParameters* param = qobject_cast<TaskSketchBasedParameters*>(it);
if (param) {
param->detachSelection();
}
}
// roll back the done things which may delete the feature
Gui::Command::abortCommand();
// if abort command deleted the object make the previous feature visible again
if (weakptr.expired()) {
// Make the tip or the previous feature visible again with preference to the previous one
// TODO: ViewProvider::onDelete has the same code. May be this one is excess?
if (previous && Gui::Application::Instance->getViewProvider(previous)) {
Gui::Application::Instance->getViewProvider(previous)->show();
}
else if (body) {
App::DocumentObject* tip = body->Tip.getValue();
if (tip && Gui::Application::Instance->getViewProvider(tip)) {
Gui::Application::Instance->getViewProvider(tip)->show();
}
}
}
Gui::cmdAppDocument(document, "recompute()");
Gui::cmdGuiDocument(document, "resetEdit()");
return true;
}
#include "moc_TaskFeatureParameters.cpp"
|