#include <insert_nodes_dialog.h>
Public Slots | |
virtual void | SelectedObject (bool selected, quint32 object, quint32 tool) Q_DECL_OVERRIDE |
Public Slots inherited from DialogTool | |
virtual void | ChosenObject (quint32 id, const SceneObject &type) |
ChosenObject gets id and type of selected object. Save right data and ignore wrong. More... | |
virtual void | SelectedObject (bool selected, quint32 object, quint32 tool) |
void | NamePointChanged () |
NamePointChanged check name of point. More... | |
virtual void | DialogAccepted () |
DialogAccepted save data and emit signal about closed dialog. More... | |
virtual void | DialogApply () |
DialogApply save data and emit signal DialogApplied. More... | |
virtual void | DialogRejected () |
DialogRejected emit signal dialog rejected. More... | |
void | FormulaChanged () |
formula check formula More... | |
void | FormulaChangedPlainText () |
FormulaChangedPlainText check formula (plain text editor editor) More... | |
void | ArrowUp () |
ArrowUp set angle value 90 degree. More... | |
void | ArrowDown () |
ArrowDown set angle value 270 degree. More... | |
void | ArrowLeft () |
ArrowLeft set angle value 180 degree. More... | |
void | ArrowRight () |
ArrowRight set angle value 0 degree. More... | |
void | ArrowLeftUp () |
ArrowLeftUp set angle value 135 degree. More... | |
void | ArrowLeftDown () |
ArrowLeftDown set angle value 225 degree. More... | |
void | ArrowRightUp () |
ArrowRightUp set angle value 45 degree. More... | |
void | ArrowRightDown () |
ArrowRightDown set angle value 315 degree. More... | |
virtual void | EvalFormula () |
EvalFormula evaluate formula. More... | |
virtual void | PointNameChanged () |
Public Member Functions | |
InsertNodesDialog (const VContainer *data, quint32 toolId, QWidget *parent=nullptr) | |
virtual | ~InsertNodesDialog () |
virtual void | SetPiecesList (const QVector< quint32 > &list) Q_DECL_OVERRIDE |
quint32 | getPieceId () const |
QVector< VPieceNode > | getNodes () const |
virtual void | ShowDialog (bool click) Q_DECL_OVERRIDE |
Public Member Functions inherited from DialogTool | |
DialogTool (const VContainer *data, const quint32 &toolId, QWidget *parent=nullptr) | |
DialogTool create dialog. More... | |
virtual | ~DialogTool () Q_DECL_OVERRIDE |
VAbstractTool * | GetAssociatedTool () |
void | SetAssociatedTool (VAbstractTool *tool) |
virtual void | Build (const Tool &type) |
quint32 | GetToolId () const |
void | SetToolId (const quint32 &value) |
QString | getPointName () const |
Protected Member Functions | |
virtual void | checkState () Q_DECL_FINAL |
virtual bool | eventFilter (QObject *object, QEvent *event) Q_DECL_OVERRIDE |
Protected Member Functions inherited from DialogTool | |
virtual void | keyPressEvent (QKeyEvent *event) Q_DECL_OVERRIDE |
virtual void | closeEvent (QCloseEvent *event) Q_DECL_OVERRIDE |
closeEvent handle when dialog cloded More... | |
virtual void | showEvent (QShowEvent *event) Q_DECL_OVERRIDE |
showEvent handle when window show More... | |
void | FillComboBoxPiecesList (QComboBox *box, const QVector< quint32 > &list) |
void | FillComboBoxPoints (QComboBox *box, FillComboBox rule=FillComboBox::Whole, const quint32 &ch1=NULL_ID, const quint32 &ch2=NULL_ID) const |
FillComboBoxPoints fill comboBox list of points. More... | |
void | FillComboBoxArcs (QComboBox *box, FillComboBox rule=FillComboBox::Whole, const quint32 &ch1=NULL_ID, const quint32 &ch2=NULL_ID) const |
void | FillComboBoxSplines (QComboBox *box) const |
void | FillComboBoxSplinesPath (QComboBox *box) const |
void | FillComboBoxCurves (QComboBox *box) const |
void | FillComboBoxTypeLine (QComboBox *box, const QMap< QString, QIcon > &stylesPics) const |
FillComboBoxTypeLine fill comboBox list of type lines. More... | |
void | FillComboBoxLineColors (QComboBox *box) const |
void | FillComboBoxCrossCirclesPoints (QComboBox *box) const |
void | FillComboBoxVCrossCurvesPoint (QComboBox *box) const |
void | FillComboBoxHCrossCurvesPoint (QComboBox *box) const |
virtual void | CheckState () |
CheckState enable, when all is correct, or disable, when something wrong, button ok. More... | |
QString | GetComboBoxCurrentData (const QComboBox *box, const QString &def) const |
void | ChangeCurrentData (QComboBox *box, const QVariant &value) const |
ChangeCurrentData select item in combobox by id. More... | |
void | ValFormulaChanged (bool &flag, QLineEdit *edit, QTimer *timer, const QString &postfix=QString()) |
ValFormulaChanged handle change formula. More... | |
void | ValFormulaChanged (bool &flag, QPlainTextEdit *edit, QTimer *timer, const QString &postfix=QString()) |
qreal | Eval (const QString &text, bool &flag, QLabel *label, const QString &postfix, bool checkZero=true, bool checkLessThanZero=false) |
Eval evaluate formula and show result. More... | |
qreal | normalize (const qreal value, const qreal start, const qreal end) |
void | setCurrentPointId (QComboBox *box, const quint32 &value, FillComboBox rule=FillComboBox::NoChildren, const quint32 &ch1=NULL_ID, const quint32 &ch2=NULL_ID) const |
void | setCurrentSplineId (QComboBox *box, const quint32 &value) const |
setCurrentSplineId set current spline id in combobox More... | |
void | setCurrentArcId (QComboBox *box, const quint32 &value, FillComboBox rule=FillComboBox::NoChildren, const quint32 &ch1=NULL_ID, const quint32 &ch2=NULL_ID) const |
setCurrentArcId More... | |
void | setCurrentSplinePathId (QComboBox *box, const quint32 &value) const |
setCurrentSplinePathId set current splinePath id in combobox More... | |
void | setCurrentCurveId (QComboBox *box, const quint32 &value) const |
quint32 | getCurrentObjectId (QComboBox *box) const |
getCurrentPointId return current point id stored in combobox More... | |
template<typename T > | |
T | getCurrentCrossPoint (QComboBox *box) const |
bool | SetObject (const quint32 &id, QComboBox *box, const QString &toolTip) |
void | DeployFormula (QPlainTextEdit *formula, QPushButton *buttonGrowLength, int formulaBaseHeight) |
template<typename T > | |
void | initializeOkCancelApply (T *ui) |
initializeOkCancelApply initialize OK / Cancel and Apply buttons More... | |
template<typename T > | |
void | initializeOkCancel (T *ui) |
initializeOkCancel initialize OK and Cancel buttons More... | |
template<typename T > | |
void | initializeFormulaUi (T *ui) |
initializeFormulaUi initialize ui object for the formula field More... | |
template<typename T > | |
void | AddVisualization () |
template<typename T > | |
QVector< T > | GetListInternals (const QListWidget *list) const |
void | ChangeColor (QWidget *widget, const QColor &color) |
virtual void | ShowVisualization () |
virtual void | SaveData () |
SaveData Put dialog data in local variables. More... | |
void | MoveCursorToEnd (QPlainTextEdit *plainTextEdit) const |
quint32 | DNumber (const QString &baseName) const |
NodeInfo | getNodeInfo (const VPieceNode &node, bool showNotch=false) const |
void | newNodeItem (QListWidget *listWidget, const VPieceNode &node, bool nodeExcluded=true, bool isDuplicate=false) |
void | initializeNodeAngles (QComboBox *box) |
Private Slots | |
void | showContextMenu (const QPoint &pos) |
Private Member Functions | |
void | validatePieces () |
void | validateNodes () |
quint32 | getLastNodeId () const |
bool | correctCurveDirection (quint32 objectId) |
void | insertCurveNodes (VPieceNode curveNode) |
Private Attributes | |
Ui::InsertNodesDialog * | ui |
QVector< VPieceNode > | m_nodes |
bool | m_nodeFlag |
bool | m_piecesFlag |
QSound * | m_beep |
Additional Inherited Members | |
Signals inherited from DialogTool | |
void | DialogClosed (int result) |
DialogClosed signal dialog closed. More... | |
void | DialogApplied () |
DialogApplied emit signal dialog apply changes. More... | |
void | ToolTip (const QString &toolTip) |
ToolTip emit tooltipe for tool. More... | |
Static Public Member Functions inherited from DialogTool | |
static void | moveListRowTop (QListWidget *list) |
static void | moveListRowUp (QListWidget *list) |
static void | moveListRowDown (QListWidget *list) |
static void | moveListRowBottom (QListWidget *list) |
Static Protected Member Functions inherited from DialogTool | |
static int | FindNotExcludedNodeDown (QListWidget *listWidget, int candidate) |
static int | FindNotExcludedNodeUp (QListWidget *listWidget, int candidate) |
static bool | isFirstPointSameAsLast (QListWidget *listWidget) |
static bool | doublePointsExist (QListWidget *listWidget) |
static bool | isEachPointNameUnique (QListWidget *listWidget) |
static QString | DialogWarningIcon () |
static QFont | NodeFont (bool nodeExcluded) |
Protected Attributes inherited from DialogTool | |
const VContainer * | data |
data container with data More... | |
bool | isInitialized |
isInitialized true if window is initialized More... | |
bool | flagName |
flagName true if name is correct More... | |
bool | flagFormula |
flagFormula true if formula correct More... | |
bool | flagError |
flagError use this flag if for you do not enought More... | |
QTimer * | timerFormula |
timerFormula timer for check formula More... | |
QPushButton * | ok_Button |
ok_Button button ok More... | |
QPushButton * | apply_Button |
apply_Button button apply More... | |
QDoubleSpinBox * | spinBoxAngle |
spinBoxAngle spinbox for angle More... | |
QPlainTextEdit * | plainTextEditFormula |
plainTextEditFormula formula More... | |
QLabel * | labelResultCalculation |
labelResultCalculation label with result of calculation More... | |
QLabel * | labelEditNamePoint |
labelEditNamePoint label used when need show wrong name of point More... | |
QLabel * | labelEditFormula |
labelEditFormula label used when need show wrong formula More... | |
const QColor | okColor |
const QColor | errorColor |
VAbstractTool * | associatedTool |
associatedTool vdrawtool associated with opened dialog. More... | |
quint32 | toolId |
bool | prepare |
prepare show if we prepare. Show dialog after finish working with visual part of tool More... | |
QString | pointName |
pointName name of point More... | |
qint32 | number |
number number of handled objects More... | |
QPointer< Visualization > | vis |
Definition at line 68 of file insert_nodes_dialog.h.
|
explicit |
Definition at line 65 of file insert_nodes_dialog.cpp.
|
virtual |
Definition at line 93 of file insert_nodes_dialog.cpp.
References ui.
|
protectedvirtual |
Definition at line 415 of file insert_nodes_dialog.cpp.
References m_nodeFlag, m_piecesFlag, DialogTool::ok_Button, and SCASSERT.
Referenced by validateNodes(), and validatePieces().
|
private |
Definition at line 506 of file insert_nodes_dialog.cpp.
References DialogTool::data, VContainer::GeometricObject(), VContainer::GetGObject(), m_nodes, Point, and ui.
Referenced by SelectedObject().
|
protectedvirtual |
Reimplemented from DialogTool.
Definition at line 430 of file insert_nodes_dialog.cpp.
References DialogTool::eventFilter(), SCASSERT, and ui.
|
private |
Definition at line 487 of file insert_nodes_dialog.cpp.
References VPieceNode::GetId(), m_nodes, and NULL_ID.
Referenced by SelectedObject().
QVector< VPieceNode > InsertNodesDialog::getNodes | ( | ) | const |
Definition at line 111 of file insert_nodes_dialog.cpp.
References ui.
quint32 InsertNodesDialog::getPieceId | ( | ) | const |
Definition at line 105 of file insert_nodes_dialog.cpp.
References DialogTool::getCurrentObjectId(), and ui.
|
private |
Definition at line 542 of file insert_nodes_dialog.cpp.
References DialogTool::data, VContainer::GeometricObject(), VContainer::GetGObject(), VPieceNode::GetId(), m_nodes, Point, and VPieceNode::SetExcluded().
Referenced by SelectedObject().
|
virtualslot |
Definition at line 155 of file insert_nodes_dialog.cpp.
References Arc, correctCurveDirection(), CubicBezier, CubicBezierPath, DialogTool::data, EllipticalArc, VContainer::GeometricObject(), VContainer::GetGObject(), getLastNodeId(), insertCurveNodes(), m_beep, m_nodes, NodeArc, NodeElArc, NodePoint, NodeSpline, NodeSplinePath, NULL_ID, Point, DialogTool::prepare, VPieceNode::SetExcluded(), Spline, SplinePath, DialogTool::toolId, and Unknown.
|
virtual |
Reimplemented from DialogTool.
Definition at line 99 of file insert_nodes_dialog.cpp.
References DialogTool::FillComboBoxPiecesList(), and ui.
|
privateslot |
Definition at line 287 of file insert_nodes_dialog.cpp.
References Castle, Diamond, DialogTool::getNodeInfo(), VPieceNode::GetReverse(), VPieceNode::GetTypeTool(), NodeInfo::icon, VPieceNode::isNotch(), NodeInfo::name, NodePoint, SCASSERT, VPieceNode::setNotch(), VPieceNode::setNotchType(), VPieceNode::SetReverse(), Slit, TNotch, ui, UNotch, validateNodes(), VExternal, and VInternal.
|
virtual |
Reimplemented from DialogTool.
Definition at line 123 of file insert_nodes_dialog.cpp.
References m_nodes, DialogTool::newNodeItem(), DialogTool::prepare, DialogTool::ToolTip(), ui, and validateNodes().
|
private |
Definition at line 476 of file insert_nodes_dialog.cpp.
References checkState(), m_nodeFlag, and ui.
Referenced by showContextMenu(), and ShowDialog().
|
private |
Definition at line 458 of file insert_nodes_dialog.cpp.
References DialogTool::ChangeColor(), checkState(), DialogTool::errorColor, m_piecesFlag, DialogTool::okColor, and ui.
|
private |
Definition at line 101 of file insert_nodes_dialog.h.
Referenced by SelectedObject().
|
private |
Definition at line 99 of file insert_nodes_dialog.h.
Referenced by checkState(), and validateNodes().
|
private |
Definition at line 98 of file insert_nodes_dialog.h.
Referenced by correctCurveDirection(), getLastNodeId(), insertCurveNodes(), SelectedObject(), and ShowDialog().
|
private |
Definition at line 100 of file insert_nodes_dialog.h.
Referenced by checkState(), and validatePieces().
|
private |
Definition at line 96 of file insert_nodes_dialog.h.
Referenced by correctCurveDirection(), eventFilter(), getNodes(), getPieceId(), SetPiecesList(), showContextMenu(), ShowDialog(), validateNodes(), validatePieces(), and ~InsertNodesDialog().