332 lines
11 KiB
C++
332 lines
11 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2014 Werner Mayer <wmayer[at]users.sourceforge.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_
|
|
# include <QPainter>
|
|
# include <QPixmap>
|
|
# include <QMessageBox>
|
|
#endif
|
|
|
|
#include "SketcherSettings.h"
|
|
#include "ui_SketcherSettings.h"
|
|
#include "ui_SketcherSettingsDisplay.h"
|
|
#include "ui_SketcherSettingsColors.h"
|
|
#include "TaskSketcherGeneral.h"
|
|
#include <Base/Console.h>
|
|
#include <Base/Interpreter.h>
|
|
#include <App/Application.h>
|
|
#include <Gui/PrefWidgets.h>
|
|
#include <Gui/Inventor/MarkerBitmaps.h>
|
|
#include <Gui/Command.h>
|
|
|
|
using namespace SketcherGui;
|
|
|
|
/* TRANSLATOR SketcherGui::SketcherSettings */
|
|
|
|
SketcherSettings::SketcherSettings(QWidget* parent)
|
|
: PreferencePage(parent), ui(new Ui_SketcherSettings)
|
|
{
|
|
ui->setupUi(this);
|
|
QGridLayout* gridLayout = new QGridLayout(ui->placeholder);
|
|
gridLayout->setSpacing(0);
|
|
gridLayout->setMargin(0);
|
|
form = new SketcherGeneralWidget(ui->placeholder);
|
|
gridLayout->addWidget(form, 0, 0, 1, 1);
|
|
}
|
|
|
|
/**
|
|
* Destroys the object and frees any allocated resources
|
|
*/
|
|
SketcherSettings::~SketcherSettings()
|
|
{
|
|
// no need to delete child widgets, Qt does it all for us
|
|
}
|
|
|
|
void SketcherSettings::saveSettings()
|
|
{
|
|
// Sketch editing
|
|
ui->checkBoxAdvancedSolverTaskBox->onSave();
|
|
ui->checkBoxRecalculateInitialSolutionWhileDragging->onSave();
|
|
ui->checkBoxEnableEscape->onSave();
|
|
ui->checkBoxNotifyConstraintSubstitutions->onSave();
|
|
ui->checkBoxAutoRemoveRedundants->onSave();
|
|
form->saveSettings();
|
|
}
|
|
|
|
void SketcherSettings::loadSettings()
|
|
{
|
|
// Sketch editing
|
|
ui->checkBoxAdvancedSolverTaskBox->onRestore();
|
|
ui->checkBoxRecalculateInitialSolutionWhileDragging->onRestore();
|
|
ui->checkBoxEnableEscape->onRestore();
|
|
ui->checkBoxNotifyConstraintSubstitutions->onRestore();
|
|
ui->checkBoxAutoRemoveRedundants->onRestore();
|
|
form->loadSettings();
|
|
}
|
|
|
|
/**
|
|
* Sets the strings of the subwidgets using the current language.
|
|
*/
|
|
void SketcherSettings::changeEvent(QEvent *e)
|
|
{
|
|
if (e->type() == QEvent::LanguageChange) {
|
|
ui->retranslateUi(this);
|
|
}
|
|
else {
|
|
QWidget::changeEvent(e);
|
|
}
|
|
}
|
|
|
|
|
|
/* TRANSLATOR SketcherGui::SketcherSettingsDisplay */
|
|
|
|
SketcherSettingsDisplay::SketcherSettingsDisplay(QWidget* parent)
|
|
: PreferencePage(parent), ui(new Ui_SketcherSettingsDisplay)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
QList < QPair<Qt::PenStyle, int> > styles;
|
|
styles << qMakePair(Qt::SolidLine, 0xffff)
|
|
<< qMakePair(Qt::DashLine, 0x0f0f)
|
|
<< qMakePair(Qt::DotLine, 0xaaaa);
|
|
// << qMakePair(Qt::DashDotLine, 0x????)
|
|
// << qMakePair(Qt::DashDotDotLine, 0x????);
|
|
ui->comboBox->setIconSize (QSize(80, 12));
|
|
for (QList < QPair<Qt::PenStyle, int> >::iterator it = styles.begin(); it != styles.end(); ++it) {
|
|
QPixmap px(ui->comboBox->iconSize());
|
|
px.fill(Qt::transparent);
|
|
QBrush brush(Qt::black);
|
|
QPen pen(it->first);
|
|
pen.setBrush(brush);
|
|
pen.setWidth(2);
|
|
|
|
QPainter painter(&px);
|
|
painter.setPen(pen);
|
|
double mid = ui->comboBox->iconSize().height() / 2.0;
|
|
painter.drawLine(0, mid, ui->comboBox->iconSize().width(), mid);
|
|
painter.end();
|
|
|
|
ui->comboBox->addItem(QIcon(px), QString(), QVariant(it->second));
|
|
}
|
|
|
|
connect(ui->btnTVApply, SIGNAL(clicked(bool)), this, SLOT(onBtnTVApplyClicked(bool)));
|
|
}
|
|
|
|
/**
|
|
* Destroys the object and frees any allocated resources
|
|
*/
|
|
SketcherSettingsDisplay::~SketcherSettingsDisplay()
|
|
{
|
|
// no need to delete child widgets, Qt does it all for us
|
|
}
|
|
|
|
void SketcherSettingsDisplay::saveSettings()
|
|
{
|
|
ui->EditSketcherFontSize->onSave();
|
|
ui->viewScalingFactor->onSave();
|
|
ui->SegmentsPerGeometry->onSave();
|
|
ui->dialogOnDistanceConstraint->onSave();
|
|
ui->continueMode->onSave();
|
|
ui->constraintMode->onSave();
|
|
ui->checkBoxHideUnits->onSave();
|
|
ui->checkBoxShowCursorCoords->onSave();
|
|
ui->checkBoxUseSystemDecimals->onSave();
|
|
ui->checkBoxShowDimensionalName->onSave();
|
|
ui->prefDimensionalStringFormat->onSave();
|
|
ui->checkBoxTVHideDependent->onSave();
|
|
ui->checkBoxTVShowLinks->onSave();
|
|
ui->checkBoxTVShowSupport->onSave();
|
|
ui->checkBoxTVRestoreCamera->onSave();
|
|
ui->checkBoxTVForceOrtho->onSave();
|
|
ui->checkBoxTVSectionView->onSave();
|
|
|
|
ParameterGrp::handle hGrp = App::GetApplication().GetParameterGroupByPath("User parameter:BaseApp/Preferences/Mod/Part");
|
|
QVariant data = ui->comboBox->itemData(ui->comboBox->currentIndex());
|
|
int pattern = data.toInt();
|
|
hGrp->SetInt("GridLinePattern", pattern);
|
|
}
|
|
|
|
void SketcherSettingsDisplay::loadSettings()
|
|
{
|
|
ui->EditSketcherFontSize->onRestore();
|
|
ui->viewScalingFactor->onRestore();
|
|
ui->SegmentsPerGeometry->onRestore();
|
|
ui->dialogOnDistanceConstraint->onRestore();
|
|
ui->continueMode->onRestore();
|
|
ui->constraintMode->onRestore();
|
|
ui->checkBoxHideUnits->onRestore();
|
|
ui->checkBoxShowCursorCoords->onRestore();
|
|
ui->checkBoxUseSystemDecimals->onRestore();
|
|
ui->checkBoxShowDimensionalName->onRestore();
|
|
ui->prefDimensionalStringFormat->onRestore();
|
|
ui->checkBoxTVHideDependent->onRestore();
|
|
ui->checkBoxTVShowLinks->onRestore();
|
|
ui->checkBoxTVShowSupport->onRestore();
|
|
ui->checkBoxTVRestoreCamera->onRestore();
|
|
ui->checkBoxTVForceOrtho->onRestore();
|
|
this->ui->checkBoxTVForceOrtho->setEnabled(this->ui->checkBoxTVRestoreCamera->isChecked());
|
|
ui->checkBoxTVSectionView->onRestore();
|
|
|
|
ParameterGrp::handle hGrp = App::GetApplication().GetParameterGroupByPath("User parameter:BaseApp/Preferences/Mod/Part");
|
|
int pattern = hGrp->GetInt("GridLinePattern", 0x0f0f);
|
|
int index = ui->comboBox->findData(QVariant(pattern));
|
|
if (index <0) index = 1;
|
|
ui->comboBox->setCurrentIndex(index);
|
|
}
|
|
|
|
/**
|
|
* Sets the strings of the subwidgets using the current language.
|
|
*/
|
|
void SketcherSettingsDisplay::changeEvent(QEvent *e)
|
|
{
|
|
if (e->type() == QEvent::LanguageChange) {
|
|
ui->retranslateUi(this);
|
|
}
|
|
else {
|
|
QWidget::changeEvent(e);
|
|
}
|
|
}
|
|
|
|
void SketcherSettingsDisplay::onBtnTVApplyClicked(bool)
|
|
{
|
|
QString errMsg;
|
|
try{
|
|
Gui::Command::doCommand(Gui::Command::Gui,
|
|
"for name,doc in App.listDocuments().items():\n"
|
|
" for sketch in doc.findObjects('Sketcher::SketchObject'):\n"
|
|
" sketch.ViewObject.HideDependent = %s\n"
|
|
" sketch.ViewObject.ShowLinks = %s\n"
|
|
" sketch.ViewObject.ShowSupport = %s\n"
|
|
" sketch.ViewObject.RestoreCamera = %s\n"
|
|
" sketch.ViewObject.ForceOrtho = %s\n"
|
|
" sketch.ViewObject.SectionView = %s\n",
|
|
this->ui->checkBoxTVHideDependent->isChecked() ? "True": "False",
|
|
this->ui->checkBoxTVShowLinks->isChecked() ? "True": "False",
|
|
this->ui->checkBoxTVShowSupport->isChecked() ? "True": "False",
|
|
this->ui->checkBoxTVRestoreCamera->isChecked() ? "True": "False",
|
|
this->ui->checkBoxTVForceOrtho->isChecked() ? "True": "False",
|
|
this->ui->checkBoxTVSectionView->isChecked() ? "True": "False");
|
|
} catch (Base::PyException &e){
|
|
Base::Console().Error("SketcherSettings::onBtnTVApplyClicked:\n");
|
|
e.ReportException();
|
|
errMsg = QString::fromLatin1(e.what());
|
|
} catch (...) {
|
|
errMsg = tr("Unexpected C++ exception");
|
|
}
|
|
if(errMsg.length()>0){
|
|
QMessageBox::warning(this, tr("Sketcher"),errMsg);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/* TRANSLATOR SketcherGui::SketcherSettingsColors */
|
|
|
|
SketcherSettingsColors::SketcherSettingsColors(QWidget* parent)
|
|
: PreferencePage(parent), ui(new Ui_SketcherSettingsColors)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
/**
|
|
* Destroys the object and frees any allocated resources
|
|
*/
|
|
SketcherSettingsColors::~SketcherSettingsColors()
|
|
{
|
|
// no need to delete child widgets, Qt does it all for us
|
|
}
|
|
|
|
void SketcherSettingsColors::saveSettings()
|
|
{
|
|
// Sketcher
|
|
ui->SketchEdgeColor->onSave();
|
|
ui->SketchVertexColor->onSave();
|
|
ui->EditedEdgeColor->onSave();
|
|
ui->EditedVertexColor->onSave();
|
|
ui->ConstructionColor->onSave();
|
|
ui->ExternalColor->onSave();
|
|
ui->InvalidSketchColor->onSave();
|
|
ui->FullyConstrainedColor->onSave();
|
|
ui->InternalAlignedGeoColor->onSave();
|
|
ui->FullyConstraintElementColor->onSave();
|
|
ui->FullyConstraintConstructionElementColor->onSave();
|
|
ui->FullyConstraintInternalAlignmentColor->onSave();
|
|
ui->FullyConstraintConstructionPointColor->onSave();
|
|
|
|
ui->ConstrainedColor->onSave();
|
|
ui->NonDrivingConstraintColor->onSave();
|
|
ui->DatumColor->onSave();
|
|
ui->ExprBasedConstrDimColor->onSave();
|
|
ui->DeactivatedConstrDimColor->onSave();
|
|
|
|
ui->CursorTextColor->onSave();
|
|
ui->CursorCrosshairColor->onSave();
|
|
ui->CreateLineColor->onSave();
|
|
}
|
|
|
|
void SketcherSettingsColors::loadSettings()
|
|
{
|
|
// Sketcher
|
|
ui->SketchEdgeColor->onRestore();
|
|
ui->SketchVertexColor->onRestore();
|
|
ui->EditedEdgeColor->onRestore();
|
|
ui->EditedVertexColor->onRestore();
|
|
ui->ConstructionColor->onRestore();
|
|
ui->ExternalColor->onRestore();
|
|
ui->InvalidSketchColor->onRestore();
|
|
ui->FullyConstrainedColor->onRestore();
|
|
ui->InternalAlignedGeoColor->onRestore();
|
|
ui->FullyConstraintElementColor->onRestore();
|
|
ui->FullyConstraintConstructionElementColor->onRestore();
|
|
ui->FullyConstraintInternalAlignmentColor->onRestore();
|
|
ui->FullyConstraintConstructionPointColor->onRestore();
|
|
|
|
ui->ConstrainedColor->onRestore();
|
|
ui->NonDrivingConstraintColor->onRestore();
|
|
ui->DatumColor->onRestore();
|
|
ui->ExprBasedConstrDimColor->onRestore();
|
|
ui->DeactivatedConstrDimColor->onRestore();
|
|
|
|
ui->CursorTextColor->onRestore();
|
|
ui->CursorCrosshairColor->onRestore();
|
|
ui->CreateLineColor->onRestore();
|
|
}
|
|
|
|
/**
|
|
* Sets the strings of the subwidgets using the current language.
|
|
*/
|
|
void SketcherSettingsColors::changeEvent(QEvent *e)
|
|
{
|
|
if (e->type() == QEvent::LanguageChange) {
|
|
ui->retranslateUi(this);
|
|
}
|
|
else {
|
|
QWidget::changeEvent(e);
|
|
}
|
|
}
|
|
|
|
#include "moc_SketcherSettings.cpp"
|
|
|