Seamly2D
Code documentation
calculator.h
Go to the documentation of this file.
1 /***************************************************************************
2  * *
3  * Copyright (C) 2017 Seamly, LLC *
4  * *
5  * https://github.com/fashionfreedom/seamly2d *
6  * *
7  ***************************************************************************
8  **
9  ** Seamly2D is free software: you can redistribute it and/or modify
10  ** it under the terms of the GNU General Public License as published by
11  ** the Free Software Foundation, either version 3 of the License, or
12  ** (at your option) any later version.
13  **
14  ** Seamly2D is distributed in the hope that it will be useful,
15  ** but WITHOUT ANY WARRANTY; without even the implied warranty of
16  ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  ** GNU General Public License for more details.
18  **
19  ** You should have received a copy of the GNU General Public License
20  ** along with Seamly2D. If not, see <http://www.gnu.org/licenses/>.
21  **
22  **************************************************************************
23 
24  ************************************************************************
25  **
26  ** @file calculator.h
27  ** @author Roman Telezhynskyi <dismine(at)gmail.com>
28  ** @date November 15, 2013
29  **
30  ** @brief
31  ** @copyright
32  ** This source code is part of the Valentine project, a pattern making
33  ** program, whose allow create and modeling patterns of clothing.
34  ** Copyright (C) 2013-2015 Seamly2D project
35  ** <https://github.com/fashionfreedom/seamly2d> All Rights Reserved.
36  **
37  ** Seamly2D is free software: you can redistribute it and/or modify
38  ** it under the terms of the GNU General Public License as published by
39  ** the Free Software Foundation, either version 3 of the License, or
40  ** (at your option) any later version.
41  **
42  ** Seamly2D is distributed in the hope that it will be useful,
43  ** but WITHOUT ANY WARRANTY; without even the implied warranty of
44  ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
45  ** GNU General Public License for more details.
46  **
47  ** You should have received a copy of the GNU General Public License
48  ** along with Seamly2D. If not, see <http://www.gnu.org/licenses/>.
49  **
50  *************************************************************************/
51 
52 #ifndef CALCULATOR_H
53 #define CALCULATOR_H
54 
55 #include <qcompilerdetection.h>
56 #include <QHash>
57 #include <QMap>
58 #include <QString>
59 #include <QtGlobal>
60 
61 #include "../qmuparser/qmuformulabase.h"
62 
63 //class VInternalVariable;
65 /**
66  * @brief The Calculator class for calculation formula.
67  *
68  * Main purpose make easy evaluate value of formula and get tokens.
69  * Note. If created to many parser for different purpes in the same time parser can work wrong.
70  * Example:
71  * EditFormulaDialog *dialog = new EditFormulaDialog(data);
72  * dialog->SetFormula(formula);
73  * if (dialog->exec() == QDialog::Accepted)
74  * {
75  * formula = dialog->GetFormula();
76  * //Need delete dialog here because parser in dialog don't allow use correct separator for parsing here.
77  * //Don't know why.
78  * delete dialog;
79  * QScopedPointer<Calculator> cal(new Calculator());
80  * result = cal->EvalFormula(data->PlainVariables(), formula);
81  * }
82  */
84 {
85 public:
86  Calculator();
87  virtual ~Calculator() Q_DECL_EQ_DEFAULT;
88 
89  qreal EvalFormula(const QHash<QString, QSharedPointer<VInternalVariable> > *vars, const QString &formula);
90 private:
91  Q_DISABLE_COPY(Calculator)
92 
93  void InitVariables(const QHash<QString, QSharedPointer<VInternalVariable> > *vars, const QMap<int, QString> &tokens,
94  const QString &formula);
95 };
96 
97 #endif // CALCULATOR_H
The Calculator class for calculation formula.
Definition: calculator.h:84
virtual ~Calculator() Q_DECL_EQ_DEFAULT
qreal EvalFormula(const QHash< QString, QSharedPointer< VInternalVariable > > *vars, const QString &formula)
eval calculate formula.
Definition: calculator.cpp:96
void InitVariables(const QHash< QString, QSharedPointer< VInternalVariable > > *vars, const QMap< int, QString > &tokens, const QString &formula)
Calculator::InitVariables add variables to parser.
Definition: calculator.cpp:142
Calculator()
Calculator class wraper for QMuParser. Make easy initialization math parser.
Definition: calculator.cpp:77