/** \example parsedfunctionplot.cpp * JKQTPlotter: Examples: Plotting Parsed Mathematical Functions as Line Graphs * * \ref JKQTPlotterParsedFunctionPlot */ #include "jkqtpexampleapplication.h" #include #include #include #include #include #include "jkqtplotter/jkqtplotter.h" #include "jkqtplotter/graphs/jkqtpscatter.h" #include "jkqtplotter/graphs/jkqtpparsedfunction.h" int main(int argc, char* argv[]) { JKQTPAppSettingController highDPIController(argc, argv); JKQTPExampleApplication app(argc, argv); // 1. create a window that conatins a line-edit to edit a function // and a JKQTPlotter to display the function, combine everything in a layout QWidget mainWin; QLineEdit* edit=new QLineEdit(&mainWin); edit->setToolTip("enter a function in dependence of the variable x and press ENTER to update the graph"); QCheckBox* check=new QCheckBox("display sample points"); QDoubleSpinBox* spinP1=new QDoubleSpinBox(&mainWin); spinP1->setValue(8); spinP1->setRange(-10000,10000); spinP1->setToolTip("enter a Value for parameter p1 and press ENTER to update the graph"); QDoubleSpinBox* spinP2=new QDoubleSpinBox(&mainWin); spinP2->setValue(4); spinP2->setRange(-10000,10000); spinP2->setToolTip("enter a Value for parameter p1 and press ENTER to update the graph"); JKQTPlotter* plot=new JKQTPlotter(&mainWin); QFormLayout* flayout=new QFormLayout; QVBoxLayout* layout=new QVBoxLayout; mainWin.setLayout(layout); flayout->addRow("equation:", edit); flayout->addRow("p1 =", spinP1); flayout->addRow("p2 =", spinP2); flayout->addRow("", check); layout->addLayout(flayout); layout->addWidget(plot); // 2. now we add a JKQTPXParsedFunctionLineGraph object, which will draw the function from // the line edit JKQTPXParsedFunctionLineGraph* parsedFunc=new JKQTPXParsedFunctionLineGraph(plot); plot->addGraph(parsedFunc); // finally we connect the line edit with the graph, whenever RETURN is pressed, // the graph is updated: auto updateGraphFunctor= [=]() { parsedFunc->setTitle(QString("user function: \\verb!"+edit->text()+"!, p_1=%1, p_2=%2").arg(spinP1->value()).arg(spinP2->value())); parsedFunc->setFunction(edit->text()); parsedFunc->setParamsV(spinP1->value(), spinP2->value()); parsedFunc->setDisplaySamplePoints(check->isChecked()); plot->redrawPlot(); }; QObject::connect(edit, &QLineEdit::returnPressed, updateGraphFunctor); QObject::connect(edit, &QLineEdit::editingFinished, updateGraphFunctor); QObject::connect(check, &QCheckBox::toggled, updateGraphFunctor); QObject::connect(spinP1, &QDoubleSpinBox::editingFinished, updateGraphFunctor); QObject::connect(spinP2, &QDoubleSpinBox::editingFinished, updateGraphFunctor); edit->setText("sin(x*p1)*exp(-x/p2)"); updateGraphFunctor(); // 3. set some axis properties (we use LaTeX for nice equation rendering) plot->getXAxis()->setAxisLabel(QObject::tr("x-axis")); plot->getYAxis()->setAxisLabel(QObject::tr("y-axis")); // 4. scale the plot so the graph is contained plot->setXY(-10,10,-10,10); // show window and make it a decent size mainWin.show(); mainWin.resize(600/mainWin.devicePixelRatioF(),400/mainWin.devicePixelRatioF()); return app.exec(); }