88 lines
3.6 KiB
C++
88 lines
3.6 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2015 Abdullah Tahiri <abdullah.tahiri.yo@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 *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef GUI_TASKVIEW_TaskSketcherSolverAdvanced_H
|
|
#define GUI_TASKVIEW_TaskSketcherSolverAdvanced_H
|
|
|
|
#include <Gui/TaskView/TaskView.h>
|
|
|
|
|
|
class Ui_TaskSketcherSolverAdvanced;
|
|
|
|
namespace App
|
|
{
|
|
class Property;
|
|
}
|
|
|
|
namespace SketcherGui
|
|
{
|
|
|
|
class ViewProviderSketch;
|
|
|
|
class TaskSketcherSolverAdvanced: public Gui::TaskView::TaskBox
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TaskSketcherSolverAdvanced(ViewProviderSketch* sketchView);
|
|
~TaskSketcherSolverAdvanced() override;
|
|
|
|
private:
|
|
void setupConnections();
|
|
void onComboBoxDefaultSolverCurrentIndexChanged(int index);
|
|
void onComboBoxDogLegGaussStepCurrentIndexChanged(int index);
|
|
void onSpinBoxMaxIterValueChanged(int i);
|
|
void onCheckBoxSketchSizeMultiplierStateChanged(int state);
|
|
void onLineEditConvergenceEditingFinished();
|
|
void onComboBoxQRMethodCurrentIndexChanged(int index);
|
|
void onLineEditQRPivotThresholdEditingFinished();
|
|
void onComboBoxRedundantDefaultSolverCurrentIndexChanged(int index);
|
|
void onLineEditRedundantConvergenceEditingFinished();
|
|
void onSpinBoxRedundantSolverMaxIterationsValueChanged(int i);
|
|
void onCheckBoxRedundantSketchSizeMultiplierStateChanged(int state);
|
|
void onComboBoxDebugModeCurrentIndexChanged(int index);
|
|
void onLineEditSolverParam1EditingFinished();
|
|
void onLineEditRedundantSolverParam1EditingFinished();
|
|
void onLineEditSolverParam2EditingFinished();
|
|
void onLineEditRedundantSolverParam2EditingFinished();
|
|
void onLineEditSolverParam3EditingFinished();
|
|
void onLineEditRedundantSolverParam3EditingFinished();
|
|
void onPushButtonDefaultsClicked(bool checked = false);
|
|
void onPushButtonSolveClicked(bool checked = false);
|
|
|
|
protected:
|
|
void updateDefaultMethodParameters();
|
|
void updateRedundantMethodParameters();
|
|
void updateSketchObject();
|
|
|
|
protected:
|
|
ViewProviderSketch* sketchView;
|
|
|
|
private:
|
|
QWidget* proxy;
|
|
std::unique_ptr<Ui_TaskSketcherSolverAdvanced> ui;
|
|
};
|
|
|
|
}// namespace SketcherGui
|
|
|
|
#endif// GUI_TASKVIEW_TaskSketcherSolverAdvanced_H
|