improved documentation
started to add example for user-interactions in JKQTPlotter
@ -82,5 +82,6 @@ defineTest(addTest) {
|
||||
}
|
||||
|
||||
addTest(multiplot)
|
||||
addTest(user_interaction)
|
||||
#addTest(distributionplot)
|
||||
|
||||
|
@ -105,16 +105,26 @@ All test-projects are Qt-projects that use qmake to build. You can load them int
|
||||
|
||||
|
||||
|
||||
\subsection jkqtp_extut_guitoolslayout GUI Tools and Plot Layout
|
||||
\subsection jkqtp_extut_guitools GUI Tools
|
||||
|
||||
<table>
|
||||
<tr><th> Screenshot <th> Description <th> Notes
|
||||
<tr><td> \image html test_multiplot_small.png
|
||||
<td> \subpage JKQTPlotterMultiPlotLayout
|
||||
<td> Combining plots in Qt Layouts <br> linking plot axes <br> copy data from a `std::map` int the datastore <br> print plots/print preview
|
||||
<tr><td> \image html jkqtplotter_simpletest_ui_small.png
|
||||
<td> \subpage JKQTPlotterQtCreator
|
||||
<tr><td> \image html jkqtplotter_simpletest_ui_small.png
|
||||
<td> \subpage JKQTPlotterQtCreator
|
||||
<td> using Qt Form Designer <br> parsed function plots (`JKQTPXParsedFunctionLineGraph`)
|
||||
<tr><td> \image html jkqtplotter_test_user_interaction_small.png
|
||||
<td> \subpage JKQTPlotterUserInteraction
|
||||
<td> different possibilities of user-interaction in JKQtPlotter
|
||||
</table>
|
||||
|
||||
|
||||
\subsection jkqtp_extut_guitoolslayout Layout & Styling
|
||||
|
||||
<table>
|
||||
<tr><th> Screenshot <th> Description <th> Notes
|
||||
<tr><td> \image html test_multiplot_small.png
|
||||
<td> \subpage JKQTPlotterMultiPlotLayout
|
||||
<td> Combining plots in Qt Layouts <br> linking plot axes <br> copy data from a `std::map` int the datastore <br> print plots/print preview
|
||||
</table>
|
||||
|
||||
|
||||
|
BIN
doc/images/jkqtplotter_datatabledialog.png
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
doc/images/jkqtplotter_defaultcontextmenu.png
Normal file
After Width: | Height: | Size: 55 KiB |
BIN
doc/images/jkqtplotter_exportpreviewdialog.png
Normal file
After Width: | Height: | Size: 55 KiB |
BIN
doc/images/jkqtplotter_gridinvisible.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
doc/images/jkqtplotter_gridvisible.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
doc/images/jkqtplotter_mousepositiondisplay.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
doc/images/jkqtplotter_printpreview.png
Normal file
After Width: | Height: | Size: 109 KiB |
After Width: | Height: | Size: 37 KiB |
BIN
doc/images/jkqtplotter_toolbar_alwayson.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
doc/images/jkqtplotter_toolbar_hidden.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
doc/images/jkqtplotter_toolbar_shown.png
Normal file
After Width: | Height: | Size: 20 KiB |
@ -46,12 +46,20 @@ All test-projects are Qt-projects that use qmake to build. You can load them int
|
||||
|
||||
|
||||
|
||||
## GUI Tools and Plot Layout
|
||||
## GUI Tools
|
||||
|
||||
| Screenshot | Description | Notes |
|
||||
|:-------------:| ------------- | ------------- |
|
||||
| [![](../screenshots/jkqtplotter_simpletest_ui_small.png)](./simpletest_ui) | [Placing JKQTPlotter into a Qt User-Interface-XML-file (`*.ui`)](./simpletest_ui) | using Qt Form Designer <br> parsed function plots (`JKQTPXParsedFunctionLineGraph`) |
|
||||
| [![](../screenshots/jkqtplotter_test_user_interaction_small.png)](./test_user_interaction) | [User Interaction](./test_user_interaction) | different possibilities of user-interaction in JKQtPlotter |
|
||||
|
||||
|
||||
|
||||
## Plot Layout & Styling
|
||||
|
||||
| Screenshot | Description | Notes |
|
||||
|:-------------:| ------------- | ------------- |
|
||||
| [![](../screenshots/test_multiplot_small.png)](./test_multiplot) | [Layouting Several Plots](./test_multiplot) | Combining plots in Qt Layouts <br> linking plot axes <br> copy data from a `std::map` int the datastore <br> print plots/print preview |
|
||||
| [![](../screenshots/jkqtplotter_simpletest_ui_small.png)](./simpletest_ui) | [Placing JKQTPlotter into a Qt User-Interface-XML-file (`*.ui`)](./simpletest_ui) | using Qt Form Designer <br> parsed function plots (`JKQTPXParsedFunctionLineGraph`) |
|
||||
|
||||
|
||||
|
||||
|
9
examples/test_user_interaction/README.md
Normal file
@ -0,0 +1,9 @@
|
||||
# Tutorial (JKQTPlotter): User-Interactions in JKQtPlotter {#JKQTPlotterUserInteraction}
|
||||
This project (see `./examples/test_user_interaction/`) demonstrates different types of user-interactions in JKQTPlotter.
|
||||
|
||||
The source code of the main application can be found in [`test_user_interaction.cpp`](../test_user_interaction/test_user_interaction.cpp).
|
||||
|
||||
|
||||
|
||||
|
||||
|
113
examples/test_user_interaction/test_user_interaction.cpp
Normal file
@ -0,0 +1,113 @@
|
||||
/** \example test_user_interaction.cpp
|
||||
* JKQTPlotter: Tutorial: User Interaction in JKQTPlotter
|
||||
*
|
||||
* \ref JKQTPlotterUserInteraction
|
||||
* \see \ref JKQTPLOTTER_USERINTERACTION
|
||||
*/
|
||||
|
||||
#include "test_user_interaction.h"
|
||||
#include <QMenuBar>
|
||||
|
||||
TestUserInteraction::TestUserInteraction(QWidget *parent) :
|
||||
QMainWindow(parent)
|
||||
{
|
||||
QWidget* w=new QWidget(this);
|
||||
setCentralWidget(w);
|
||||
|
||||
// setup layouts for form
|
||||
layout=new QGridLayout;
|
||||
layForm=new QFormLayout;
|
||||
layChk=new QHBoxLayout;
|
||||
layout->addLayout(layChk,0,0);
|
||||
layout->addLayout(layForm,1,0);
|
||||
|
||||
// generate a JKQTPlotter and initialize some plot data
|
||||
plot=new JKQTPlotter(this);
|
||||
layout->addWidget(plot,2,0);
|
||||
initPlot();
|
||||
|
||||
// add some of the default QActions from the JKQTPlotter to the window menu
|
||||
// Some of the are also available in the context menu and toolbar of the JKQTPlotter
|
||||
// others are not
|
||||
QMenu* menuPlot=menuBar()->addMenu("Plot-Menu");
|
||||
menuPlot->addAction(plot->get_plotter()->get_actPrint());
|
||||
QMenu* menuPlotS=menuPlot->addMenu("Save ...");
|
||||
menuPlotS->addAction(plot->get_plotter()->get_actSaveData());
|
||||
menuPlotS->addAction(plot->get_plotter()->get_actSavePDF()); // not available from JKQTPlotter by default
|
||||
menuPlotS->addAction(plot->get_plotter()->get_actSavePlot());
|
||||
QMenu* menuPlotZ=menuPlot->addMenu("Zoom ...");
|
||||
menuPlotZ->addAction(plot->get_plotter()->get_actZoomAll());
|
||||
menuPlotZ->addAction(plot->get_plotter()->get_actZoomIn());
|
||||
menuPlotZ->addAction(plot->get_plotter()->get_actZoomOut());
|
||||
|
||||
// add a checkbox to show and hide the position display label in the plot
|
||||
chkPositionDisplay=new QCheckBox(tr("show mouse cursor position"), this);
|
||||
chkPositionDisplay->setChecked(plot->get_displayMousePosition());
|
||||
connect(chkPositionDisplay, SIGNAL(toggled(bool)), plot, SLOT(set_displayMousePosition(bool)));
|
||||
layChk->addWidget(chkPositionDisplay);
|
||||
|
||||
// add a checkbox to en-/disable the toolbar of the JKQTPlotter
|
||||
chkShowToolbar=new QCheckBox(tr("enable toolbar"), this);
|
||||
chkShowToolbar->setChecked(plot->get_displayToolbar());
|
||||
connect(chkShowToolbar, SIGNAL(toggled(bool)), plot, SLOT(set_displayToolbar(bool)));
|
||||
layChk->addWidget(chkShowToolbar);
|
||||
|
||||
// add a checkbox to switch the toolbar between always visible and the hiding mode,
|
||||
// where it only appears, when the mouse hovers over its designated area
|
||||
chkToolbarAlwaysOn=new QCheckBox(tr("toolbar 'always on'"), this);
|
||||
chkToolbarAlwaysOn->setChecked(plot->get_toolbarAlwaysOn());
|
||||
connect(chkToolbarAlwaysOn, SIGNAL(toggled(bool)), plot, SLOT(set_toolbarAlwaysOn(bool)));
|
||||
layChk->addWidget(chkToolbarAlwaysOn);
|
||||
|
||||
// add a checkbox to switch the grid on and off
|
||||
chkGrid=new QCheckBox(tr("show grid in plot"), this);
|
||||
chkGrid->setChecked(true);
|
||||
connect(chkGrid, SIGNAL(toggled(bool)), plot, SLOT(setGrid(bool)));
|
||||
layChk->addWidget(chkGrid);
|
||||
|
||||
w->setLayout(layout);
|
||||
resize(800,600);
|
||||
}
|
||||
|
||||
void TestUserInteraction::initPlot()
|
||||
{
|
||||
// 1. create a plotter window and get a pointer to the internal datastore (for convenience)
|
||||
JKQTPDatastore* ds=plot->getDatastore();
|
||||
|
||||
// 2. now we create data for a simple plot (a sine curve)
|
||||
QVector<double> X, Y1, Y2;
|
||||
const int Ndata=100;
|
||||
for (int i=0; i<Ndata; i++) {
|
||||
const double x=double(i)/double(Ndata)*8.0*M_PI;
|
||||
X<<x;
|
||||
Y1<<sin(x);
|
||||
Y2<<sin(x)*exp(-0.2*x);
|
||||
}
|
||||
|
||||
// 3. make data available to JKQTPlotter by adding it to the internal datastore.
|
||||
// Note: In this step the data is copied (of not specified otherwise), so you can
|
||||
// reuse X and Y afterwards!
|
||||
// the variables columnX and columnY will contain the internal column ID of the newly
|
||||
// created columns with names "x" and "y" and the (copied) data from X and Y.
|
||||
size_t columnX=ds->addCopiedColumn(X, "x");
|
||||
size_t columnY1=ds->addCopiedColumn(Y1, "y1");
|
||||
size_t columnY2=ds->addCopiedColumn(Y2, "y2");
|
||||
|
||||
// 4. create a graph in the plot, which plots the dataset X/Y:
|
||||
JKQTPXYLineGraph* graph1=new JKQTPXYLineGraph(plot);
|
||||
graph1->set_xColumn(columnX);
|
||||
graph1->set_yColumn(columnY1);
|
||||
graph1->set_title(QObject::tr("sine graph"));
|
||||
plot->addGraph(graph1);
|
||||
|
||||
JKQTPXYLineGraph* graph2=new JKQTPXYLineGraph(plot);
|
||||
graph2->set_xColumn(columnX);
|
||||
graph2->set_yColumn(columnY2);
|
||||
graph2->set_title(QObject::tr("sine*exp graph"));
|
||||
plot->addGraph(graph2);
|
||||
|
||||
// 6. autoscale the plot so the graph is contained
|
||||
plot->zoomToFit();
|
||||
|
||||
plot->get_plotter()->set_plotLabel("Sine Plots - User-Interaction Example");
|
||||
}
|
39
examples/test_user_interaction/test_user_interaction.h
Normal file
@ -0,0 +1,39 @@
|
||||
#ifndef TEST_USER_INTERACTION_H
|
||||
#define TEST_USER_INTERACTION_H
|
||||
|
||||
#include <QWidget>
|
||||
#include "jkqtplotter/jkqtplotter.h"
|
||||
#include "jkqtplotter/jkqtpgraphs.h"
|
||||
#include <QFormLayout>
|
||||
#include <QCheckBox>
|
||||
#include <QComboBox>
|
||||
#include <cmath>
|
||||
#include <QToolBar>
|
||||
#include <QMainWindow>
|
||||
#include <QHBoxLayout>
|
||||
|
||||
class TestUserInteraction : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit TestUserInteraction(QWidget *parent = nullptr);
|
||||
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
|
||||
protected:
|
||||
void initPlot();
|
||||
JKQTPlotter* plot;
|
||||
QGridLayout* layout;
|
||||
QHBoxLayout* layChk;
|
||||
QFormLayout* layForm;
|
||||
QCheckBox* chkPositionDisplay;
|
||||
QCheckBox* chkShowToolbar;
|
||||
QCheckBox* chkToolbarAlwaysOn;
|
||||
QCheckBox* chkGrid;
|
||||
JKQTPXYLineGraph* graph1;
|
||||
JKQTPXYLineGraph* graph2;
|
||||
};
|
||||
|
||||
#endif // TEST_USER_INTERACTION_H
|
41
examples/test_user_interaction/test_user_interaction.pro
Normal file
@ -0,0 +1,41 @@
|
||||
|
||||
# configure Qt
|
||||
CONFIG += qt
|
||||
CONFIG += c++11
|
||||
QT += core gui xml svg
|
||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
|
||||
|
||||
# output executable name
|
||||
TARGET = test_user_interaction
|
||||
|
||||
# source code for this simple demo
|
||||
SOURCES = test_user_interaction_main.cpp \
|
||||
test_user_interaction.cpp
|
||||
|
||||
HEADERS += \
|
||||
test_user_interaction.h
|
||||
|
||||
# include JKQTPlotter source code
|
||||
DEPENDPATH += . ../../lib
|
||||
INCLUDEPATH += ../../lib
|
||||
CONFIG (debug, debug|release) {
|
||||
LIBS += -L../../staticlib/debug -ljkqtplotterlib_debug
|
||||
} else {
|
||||
LIBS += -L../../staticlib/release -ljkqtplotterlib
|
||||
}
|
||||
message("LIBS = $$LIBS")
|
||||
|
||||
win32-msvc* {
|
||||
QMAKE_CXXFLAGS += /EHsc /std:c++14
|
||||
# To enable M_PI, M_E,...
|
||||
DEFINES += _USE_MATH_DEFINES
|
||||
# To fix error: C2338: va_start argument must not
|
||||
# have reference type and must not be parenthesized
|
||||
DEFINES += _CRT_NO_VA_START_VALIDATION
|
||||
}
|
||||
|
||||
|
||||
# here you can activate some debug options
|
||||
#DEFINES += SHOW_JKQTPLOTTER_DEBUG
|
||||
#DEFINES += JKQTBP_AUTOTIMER
|
||||
|
@ -0,0 +1,8 @@
|
||||
TEMPLATE = subdirs
|
||||
|
||||
SUBDIRS += jkqtplotterlib test_user_interaction
|
||||
|
||||
jkqtplotterlib.file = ../../staticlib/jkqtplotterlib.pro
|
||||
|
||||
test_user_interaction.file=$$PWD/test_user_interaction.pro
|
||||
test_user_interaction.depends = jkqtplotterlib
|
@ -0,0 +1,13 @@
|
||||
#include <QApplication>
|
||||
#include "test_user_interaction.h"
|
||||
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
QApplication app(argc, argv);
|
||||
|
||||
TestUserInteraction win;
|
||||
win.show();
|
||||
|
||||
return app.exec();
|
||||
}
|
@ -308,481 +308,481 @@ class LIB_EXPORT JKQTMathText : public QObject {
|
||||
};
|
||||
|
||||
/*! \brief sets the property fontColor to the specified \a __value.
|
||||
\details Description of the parameter fontColor is: <BLOCKQUOTE>\copybrief fontColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fontColor is: <BLOCKQUOTE>\copydoc fontColor </BLOCKQUOTE>
|
||||
\see fontColor for more information */
|
||||
inline virtual void set_fontColor(const QColor & __value)
|
||||
{
|
||||
this->fontColor = __value;
|
||||
}
|
||||
/*! \brief returns the property fontColor.
|
||||
\details Description of the parameter fontColor is: <BLOCKQUOTE>\copybrief fontColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fontColor is: <BLOCKQUOTE>\copydoc fontColor </BLOCKQUOTE>
|
||||
\see fontColor for more information */
|
||||
inline virtual QColor get_fontColor() const
|
||||
{
|
||||
return this->fontColor;
|
||||
}
|
||||
/*! \brief sets the property fontSize to the specified \a __value.
|
||||
\details Description of the parameter fontSize is: <BLOCKQUOTE>\copybrief fontSize </BLOCKQUOTE>
|
||||
\details Description of the parameter fontSize is: <BLOCKQUOTE>\copydoc fontSize </BLOCKQUOTE>
|
||||
\see fontSize for more information */
|
||||
inline virtual void set_fontSize(double __value)
|
||||
{
|
||||
this->fontSize = __value;
|
||||
}
|
||||
/*! \brief returns the property fontSize.
|
||||
\details Description of the parameter fontSize is: <BLOCKQUOTE>\copybrief fontSize </BLOCKQUOTE>
|
||||
\details Description of the parameter fontSize is: <BLOCKQUOTE>\copydoc fontSize </BLOCKQUOTE>
|
||||
\see fontSize for more information */
|
||||
inline virtual double get_fontSize() const
|
||||
{
|
||||
return this->fontSize;
|
||||
}
|
||||
/*! \brief sets the property fontRoman to the specified \a __value.
|
||||
\details Description of the parameter fontRoman is: <BLOCKQUOTE>\copybrief fontRoman </BLOCKQUOTE>
|
||||
\details Description of the parameter fontRoman is: <BLOCKQUOTE>\copydoc fontRoman </BLOCKQUOTE>
|
||||
\see fontRoman for more information */
|
||||
inline virtual void set_fontRoman(const QString & __value)
|
||||
{
|
||||
this->fontRoman = __value;
|
||||
}
|
||||
/*! \brief returns the property fontRoman.
|
||||
\details Description of the parameter fontRoman is: <BLOCKQUOTE>\copybrief fontRoman </BLOCKQUOTE>
|
||||
\details Description of the parameter fontRoman is: <BLOCKQUOTE>\copydoc fontRoman </BLOCKQUOTE>
|
||||
\see fontRoman for more information */
|
||||
inline virtual QString get_fontRoman() const
|
||||
{
|
||||
return this->fontRoman;
|
||||
}
|
||||
/*! \brief sets the property fontSans to the specified \a __value.
|
||||
\details Description of the parameter fontSans is: <BLOCKQUOTE>\copybrief fontSans </BLOCKQUOTE>
|
||||
\details Description of the parameter fontSans is: <BLOCKQUOTE>\copydoc fontSans </BLOCKQUOTE>
|
||||
\see fontSans for more information */
|
||||
inline virtual void set_fontSans(const QString & __value)
|
||||
{
|
||||
this->fontSans = __value;
|
||||
}
|
||||
/*! \brief returns the property fontSans.
|
||||
\details Description of the parameter fontSans is: <BLOCKQUOTE>\copybrief fontSans </BLOCKQUOTE>
|
||||
\details Description of the parameter fontSans is: <BLOCKQUOTE>\copydoc fontSans </BLOCKQUOTE>
|
||||
\see fontSans for more information */
|
||||
inline virtual QString get_fontSans() const
|
||||
{
|
||||
return this->fontSans;
|
||||
}
|
||||
/*! \brief sets the property fontTypewriter to the specified \a __value.
|
||||
\details Description of the parameter fontTypewriter is: <BLOCKQUOTE>\copybrief fontTypewriter </BLOCKQUOTE>
|
||||
\details Description of the parameter fontTypewriter is: <BLOCKQUOTE>\copydoc fontTypewriter </BLOCKQUOTE>
|
||||
\see fontTypewriter for more information */
|
||||
inline virtual void set_fontTypewriter(const QString & __value)
|
||||
{
|
||||
this->fontTypewriter = __value;
|
||||
}
|
||||
/*! \brief returns the property fontTypewriter.
|
||||
\details Description of the parameter fontTypewriter is: <BLOCKQUOTE>\copybrief fontTypewriter </BLOCKQUOTE>
|
||||
\details Description of the parameter fontTypewriter is: <BLOCKQUOTE>\copydoc fontTypewriter </BLOCKQUOTE>
|
||||
\see fontTypewriter for more information */
|
||||
inline virtual QString get_fontTypewriter() const
|
||||
{
|
||||
return this->fontTypewriter;
|
||||
}
|
||||
/*! \brief sets the property fontScript to the specified \a __value.
|
||||
\details Description of the parameter fontScript is: <BLOCKQUOTE>\copybrief fontScript </BLOCKQUOTE>
|
||||
\details Description of the parameter fontScript is: <BLOCKQUOTE>\copydoc fontScript </BLOCKQUOTE>
|
||||
\see fontScript for more information */
|
||||
inline virtual void set_fontScript(const QString & __value)
|
||||
{
|
||||
this->fontScript = __value;
|
||||
}
|
||||
/*! \brief returns the property fontScript.
|
||||
\details Description of the parameter fontScript is: <BLOCKQUOTE>\copybrief fontScript </BLOCKQUOTE>
|
||||
\details Description of the parameter fontScript is: <BLOCKQUOTE>\copydoc fontScript </BLOCKQUOTE>
|
||||
\see fontScript for more information */
|
||||
inline virtual QString get_fontScript() const
|
||||
{
|
||||
return this->fontScript;
|
||||
}
|
||||
/*! \brief sets the property fontGreek to the specified \a __value.
|
||||
\details Description of the parameter fontGreek is: <BLOCKQUOTE>\copybrief fontGreek </BLOCKQUOTE>
|
||||
\details Description of the parameter fontGreek is: <BLOCKQUOTE>\copydoc fontGreek </BLOCKQUOTE>
|
||||
\see fontGreek for more information */
|
||||
inline virtual void set_fontGreek(const QString & __value)
|
||||
{
|
||||
this->fontGreek = __value;
|
||||
}
|
||||
/*! \brief returns the property fontGreek.
|
||||
\details Description of the parameter fontGreek is: <BLOCKQUOTE>\copybrief fontGreek </BLOCKQUOTE>
|
||||
\details Description of the parameter fontGreek is: <BLOCKQUOTE>\copydoc fontGreek </BLOCKQUOTE>
|
||||
\see fontGreek for more information */
|
||||
inline virtual QString get_fontGreek() const
|
||||
{
|
||||
return this->fontGreek;
|
||||
}
|
||||
/*! \brief sets the property fontSymbol to the specified \a __value.
|
||||
\details Description of the parameter fontSymbol is: <BLOCKQUOTE>\copybrief fontSymbol </BLOCKQUOTE>
|
||||
\details Description of the parameter fontSymbol is: <BLOCKQUOTE>\copydoc fontSymbol </BLOCKQUOTE>
|
||||
\see fontSymbol for more information */
|
||||
inline virtual void set_fontSymbol(const QString & __value)
|
||||
{
|
||||
this->fontSymbol = __value;
|
||||
}
|
||||
/*! \brief returns the property fontSymbol.
|
||||
\details Description of the parameter fontSymbol is: <BLOCKQUOTE>\copybrief fontSymbol </BLOCKQUOTE>
|
||||
\details Description of the parameter fontSymbol is: <BLOCKQUOTE>\copydoc fontSymbol </BLOCKQUOTE>
|
||||
\see fontSymbol for more information */
|
||||
inline virtual QString get_fontSymbol() const
|
||||
{
|
||||
return this->fontSymbol;
|
||||
}
|
||||
/*! \brief sets the property fontBraces to the specified \a __value.
|
||||
\details Description of the parameter fontBraces is: <BLOCKQUOTE>\copybrief fontBraces </BLOCKQUOTE>
|
||||
\details Description of the parameter fontBraces is: <BLOCKQUOTE>\copydoc fontBraces </BLOCKQUOTE>
|
||||
\see fontBraces for more information */
|
||||
inline virtual void set_fontBraces(const QString & __value)
|
||||
{
|
||||
this->fontBraces = __value;
|
||||
}
|
||||
/*! \brief returns the property fontBraces.
|
||||
\details Description of the parameter fontBraces is: <BLOCKQUOTE>\copybrief fontBraces </BLOCKQUOTE>
|
||||
\details Description of the parameter fontBraces is: <BLOCKQUOTE>\copydoc fontBraces </BLOCKQUOTE>
|
||||
\see fontBraces for more information */
|
||||
inline virtual QString get_fontBraces() const
|
||||
{
|
||||
return this->fontBraces;
|
||||
}
|
||||
/*! \brief sets the property fontIntegrals to the specified \a __value.
|
||||
\details Description of the parameter fontIntegrals is: <BLOCKQUOTE>\copybrief fontIntegrals </BLOCKQUOTE>
|
||||
\details Description of the parameter fontIntegrals is: <BLOCKQUOTE>\copydoc fontIntegrals </BLOCKQUOTE>
|
||||
\see fontIntegrals for more information */
|
||||
inline virtual void set_fontIntegrals(const QString & __value)
|
||||
{
|
||||
this->fontIntegrals = __value;
|
||||
}
|
||||
/*! \brief returns the property fontIntegrals.
|
||||
\details Description of the parameter fontIntegrals is: <BLOCKQUOTE>\copybrief fontIntegrals </BLOCKQUOTE>
|
||||
\details Description of the parameter fontIntegrals is: <BLOCKQUOTE>\copydoc fontIntegrals </BLOCKQUOTE>
|
||||
\see fontIntegrals for more information */
|
||||
inline virtual QString get_fontIntegrals() const
|
||||
{
|
||||
return this->fontIntegrals;
|
||||
}
|
||||
/*! \brief sets the property fontCaligraphic to the specified \a __value.
|
||||
\details Description of the parameter fontCaligraphic is: <BLOCKQUOTE>\copybrief fontCaligraphic </BLOCKQUOTE>
|
||||
\details Description of the parameter fontCaligraphic is: <BLOCKQUOTE>\copydoc fontCaligraphic </BLOCKQUOTE>
|
||||
\see fontCaligraphic for more information */
|
||||
inline virtual void set_fontCaligraphic(const QString & __value)
|
||||
{
|
||||
this->fontCaligraphic = __value;
|
||||
}
|
||||
/*! \brief returns the property fontCaligraphic.
|
||||
\details Description of the parameter fontCaligraphic is: <BLOCKQUOTE>\copybrief fontCaligraphic </BLOCKQUOTE>
|
||||
\details Description of the parameter fontCaligraphic is: <BLOCKQUOTE>\copydoc fontCaligraphic </BLOCKQUOTE>
|
||||
\see fontCaligraphic for more information */
|
||||
inline virtual QString get_fontCaligraphic() const
|
||||
{
|
||||
return this->fontCaligraphic;
|
||||
}
|
||||
/*! \brief sets the property fontBlackboard to the specified \a __value.
|
||||
\details Description of the parameter fontBlackboard is: <BLOCKQUOTE>\copybrief fontBlackboard </BLOCKQUOTE>
|
||||
\details Description of the parameter fontBlackboard is: <BLOCKQUOTE>\copydoc fontBlackboard </BLOCKQUOTE>
|
||||
\see fontBlackboard for more information */
|
||||
inline virtual void set_fontBlackboard(const QString & __value)
|
||||
{
|
||||
this->fontBlackboard = __value;
|
||||
}
|
||||
/*! \brief returns the property fontBlackboard.
|
||||
\details Description of the parameter fontBlackboard is: <BLOCKQUOTE>\copybrief fontBlackboard </BLOCKQUOTE>
|
||||
\details Description of the parameter fontBlackboard is: <BLOCKQUOTE>\copydoc fontBlackboard </BLOCKQUOTE>
|
||||
\see fontBlackboard for more information */
|
||||
inline virtual QString get_fontBlackboard() const
|
||||
{
|
||||
return this->fontBlackboard;
|
||||
}
|
||||
/*! \brief sets the property fontMathRoman to the specified \a __value.
|
||||
\details Description of the parameter fontMathRoman is: <BLOCKQUOTE>\copybrief fontMathRoman </BLOCKQUOTE>
|
||||
\details Description of the parameter fontMathRoman is: <BLOCKQUOTE>\copydoc fontMathRoman </BLOCKQUOTE>
|
||||
\see fontMathRoman for more information */
|
||||
inline virtual void set_fontMathRoman(const QString & __value)
|
||||
{
|
||||
this->fontMathRoman = __value;
|
||||
}
|
||||
/*! \brief returns the property fontMathRoman.
|
||||
\details Description of the parameter fontMathRoman is: <BLOCKQUOTE>\copybrief fontMathRoman </BLOCKQUOTE>
|
||||
\details Description of the parameter fontMathRoman is: <BLOCKQUOTE>\copydoc fontMathRoman </BLOCKQUOTE>
|
||||
\see fontMathRoman for more information */
|
||||
inline virtual QString get_fontMathRoman() const
|
||||
{
|
||||
return this->fontMathRoman;
|
||||
}
|
||||
/*! \brief sets the property fontMathSans to the specified \a __value.
|
||||
\details Description of the parameter fontMathSans is: <BLOCKQUOTE>\copybrief fontMathSans </BLOCKQUOTE>
|
||||
\details Description of the parameter fontMathSans is: <BLOCKQUOTE>\copydoc fontMathSans </BLOCKQUOTE>
|
||||
\see fontMathSans for more information */
|
||||
inline virtual void set_fontMathSans(const QString & __value)
|
||||
{
|
||||
this->fontMathSans = __value;
|
||||
}
|
||||
/*! \brief returns the property fontMathSans.
|
||||
\details Description of the parameter fontMathSans is: <BLOCKQUOTE>\copybrief fontMathSans </BLOCKQUOTE>
|
||||
\details Description of the parameter fontMathSans is: <BLOCKQUOTE>\copydoc fontMathSans </BLOCKQUOTE>
|
||||
\see fontMathSans for more information */
|
||||
inline virtual QString get_fontMathSans() const
|
||||
{
|
||||
return this->fontMathSans;
|
||||
}
|
||||
/*! \brief sets the property fontLatexPrefix to the specified \a __value.
|
||||
\details Description of the parameter fontLatexPrefix is: <BLOCKQUOTE>\copybrief fontLatexPrefix </BLOCKQUOTE>
|
||||
\details Description of the parameter fontLatexPrefix is: <BLOCKQUOTE>\copydoc fontLatexPrefix </BLOCKQUOTE>
|
||||
\see fontLatexPrefix for more information */
|
||||
inline virtual void set_fontLatexPrefix(const QString & __value)
|
||||
{
|
||||
this->fontLatexPrefix = __value;
|
||||
}
|
||||
/*! \brief returns the property fontLatexPrefix.
|
||||
\details Description of the parameter fontLatexPrefix is: <BLOCKQUOTE>\copybrief fontLatexPrefix </BLOCKQUOTE>
|
||||
\details Description of the parameter fontLatexPrefix is: <BLOCKQUOTE>\copydoc fontLatexPrefix </BLOCKQUOTE>
|
||||
\see fontLatexPrefix for more information */
|
||||
inline virtual QString get_fontLatexPrefix() const
|
||||
{
|
||||
return this->fontLatexPrefix;
|
||||
}
|
||||
/*! \brief sets the property fontLatexPostfix to the specified \a __value.
|
||||
\details Description of the parameter fontLatexPostfix is: <BLOCKQUOTE>\copybrief fontLatexPostfix </BLOCKQUOTE>
|
||||
\details Description of the parameter fontLatexPostfix is: <BLOCKQUOTE>\copydoc fontLatexPostfix </BLOCKQUOTE>
|
||||
\see fontLatexPostfix for more information */
|
||||
inline virtual void set_fontLatexPostfix(const QString & __value)
|
||||
{
|
||||
this->fontLatexPostfix = __value;
|
||||
}
|
||||
/*! \brief returns the property fontLatexPostfix.
|
||||
\details Description of the parameter fontLatexPostfix is: <BLOCKQUOTE>\copybrief fontLatexPostfix </BLOCKQUOTE>
|
||||
\details Description of the parameter fontLatexPostfix is: <BLOCKQUOTE>\copydoc fontLatexPostfix </BLOCKQUOTE>
|
||||
\see fontLatexPostfix for more information */
|
||||
inline virtual QString get_fontLatexPostfix() const
|
||||
{
|
||||
return this->fontLatexPostfix;
|
||||
}
|
||||
/*! \brief sets the property fontEncoding to the specified \a __value.
|
||||
\details Description of the parameter fontEncoding is: <BLOCKQUOTE>\copybrief fontEncoding </BLOCKQUOTE>
|
||||
\details Description of the parameter fontEncoding is: <BLOCKQUOTE>\copydoc fontEncoding </BLOCKQUOTE>
|
||||
\see fontEncoding for more information */
|
||||
inline virtual void set_fontEncoding(const MTfontEncoding & __value)
|
||||
{
|
||||
this->fontEncoding = __value;
|
||||
}
|
||||
/*! \brief returns the property fontEncoding.
|
||||
\details Description of the parameter fontEncoding is: <BLOCKQUOTE>\copybrief fontEncoding </BLOCKQUOTE>
|
||||
\details Description of the parameter fontEncoding is: <BLOCKQUOTE>\copydoc fontEncoding </BLOCKQUOTE>
|
||||
\see fontEncoding for more information */
|
||||
inline virtual MTfontEncoding get_fontEncoding() const
|
||||
{
|
||||
return this->fontEncoding;
|
||||
}
|
||||
/*! \brief returns the property useSTIXfonts.
|
||||
\details Description of the parameter useSTIXfonts is: <BLOCKQUOTE>\copybrief useSTIXfonts </BLOCKQUOTE>.
|
||||
\details Description of the parameter useSTIXfonts is: <BLOCKQUOTE>\copydoc useSTIXfonts </BLOCKQUOTE>.
|
||||
\see useSTIXfonts for more information */
|
||||
inline bool get_useSTIXfonts() const {
|
||||
return this->useSTIXfonts;
|
||||
}
|
||||
/*! \brief returns the property useXITSfonts.
|
||||
\details Description of the parameter useXITSfonts is: <BLOCKQUOTE>\copybrief useXITSfonts </BLOCKQUOTE>.
|
||||
\details Description of the parameter useXITSfonts is: <BLOCKQUOTE>\copydoc useXITSfonts </BLOCKQUOTE>.
|
||||
\see useXITSfonts for more information */
|
||||
inline bool get_useXITSfonts() const {
|
||||
return this->useXITSfonts;
|
||||
}
|
||||
/*! \brief sets the property brace_factor to the specified \a __value.
|
||||
\details Description of the parameter brace_factor is: <BLOCKQUOTE>\copybrief brace_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter brace_factor is: <BLOCKQUOTE>\copydoc brace_factor </BLOCKQUOTE>
|
||||
\see brace_factor for more information */
|
||||
inline virtual void set_brace_factor(double __value)
|
||||
{
|
||||
this->brace_factor = __value;
|
||||
}
|
||||
/*! \brief returns the property brace_factor.
|
||||
\details Description of the parameter brace_factor is: <BLOCKQUOTE>\copybrief brace_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter brace_factor is: <BLOCKQUOTE>\copydoc brace_factor </BLOCKQUOTE>
|
||||
\see brace_factor for more information */
|
||||
inline virtual double get_brace_factor() const
|
||||
{
|
||||
return this->brace_factor;
|
||||
}
|
||||
/*! \brief sets the property subsuper_size_factor to the specified \a __value.
|
||||
\details Description of the parameter subsuper_size_factor is: <BLOCKQUOTE>\copybrief subsuper_size_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter subsuper_size_factor is: <BLOCKQUOTE>\copydoc subsuper_size_factor </BLOCKQUOTE>
|
||||
\see subsuper_size_factor for more information */
|
||||
inline virtual void set_subsuper_size_factor(double __value)
|
||||
{
|
||||
this->subsuper_size_factor = __value;
|
||||
}
|
||||
/*! \brief returns the property subsuper_size_factor.
|
||||
\details Description of the parameter subsuper_size_factor is: <BLOCKQUOTE>\copybrief subsuper_size_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter subsuper_size_factor is: <BLOCKQUOTE>\copydoc subsuper_size_factor </BLOCKQUOTE>
|
||||
\see subsuper_size_factor for more information */
|
||||
inline virtual double get_subsuper_size_factor() const
|
||||
{
|
||||
return this->subsuper_size_factor;
|
||||
}
|
||||
/*! \brief sets the property italic_correction_factor to the specified \a __value.
|
||||
\details Description of the parameter italic_correction_factor is: <BLOCKQUOTE>\copybrief italic_correction_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter italic_correction_factor is: <BLOCKQUOTE>\copydoc italic_correction_factor </BLOCKQUOTE>
|
||||
\see italic_correction_factor for more information */
|
||||
inline virtual void set_italic_correction_factor(double __value)
|
||||
{
|
||||
this->italic_correction_factor = __value;
|
||||
}
|
||||
/*! \brief returns the property italic_correction_factor.
|
||||
\details Description of the parameter italic_correction_factor is: <BLOCKQUOTE>\copybrief italic_correction_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter italic_correction_factor is: <BLOCKQUOTE>\copydoc italic_correction_factor </BLOCKQUOTE>
|
||||
\see italic_correction_factor for more information */
|
||||
inline virtual double get_italic_correction_factor() const
|
||||
{
|
||||
return this->italic_correction_factor;
|
||||
}
|
||||
/*! \brief sets the property operatorsubsuper_size_factor to the specified \a __value.
|
||||
\details Description of the parameter operatorsubsuper_size_factor is: <BLOCKQUOTE>\copybrief operatorsubsuper_size_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter operatorsubsuper_size_factor is: <BLOCKQUOTE>\copydoc operatorsubsuper_size_factor </BLOCKQUOTE>
|
||||
\see operatorsubsuper_size_factor for more information */
|
||||
inline virtual void set_operatorsubsuper_size_factor(double __value)
|
||||
{
|
||||
this->operatorsubsuper_size_factor = __value;
|
||||
}
|
||||
/*! \brief returns the property operatorsubsuper_size_factor.
|
||||
\details Description of the parameter operatorsubsuper_size_factor is: <BLOCKQUOTE>\copybrief operatorsubsuper_size_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter operatorsubsuper_size_factor is: <BLOCKQUOTE>\copydoc operatorsubsuper_size_factor </BLOCKQUOTE>
|
||||
\see operatorsubsuper_size_factor for more information */
|
||||
inline virtual double get_operatorsubsuper_size_factor() const
|
||||
{
|
||||
return this->operatorsubsuper_size_factor;
|
||||
}
|
||||
/*! \brief sets the property mathoperator_width_factor to the specified \a __value.
|
||||
\details Description of the parameter mathoperator_width_factor is: <BLOCKQUOTE>\copybrief mathoperator_width_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter mathoperator_width_factor is: <BLOCKQUOTE>\copydoc mathoperator_width_factor </BLOCKQUOTE>
|
||||
\see mathoperator_width_factor for more information */
|
||||
inline virtual void set_mathoperator_width_factor(double __value)
|
||||
{
|
||||
this->mathoperator_width_factor = __value;
|
||||
}
|
||||
/*! \brief returns the property mathoperator_width_factor.
|
||||
\details Description of the parameter mathoperator_width_factor is: <BLOCKQUOTE>\copybrief mathoperator_width_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter mathoperator_width_factor is: <BLOCKQUOTE>\copydoc mathoperator_width_factor </BLOCKQUOTE>
|
||||
\see mathoperator_width_factor for more information */
|
||||
inline virtual double get_mathoperator_width_factor() const
|
||||
{
|
||||
return this->mathoperator_width_factor;
|
||||
}
|
||||
/*! \brief sets the property super_shift_factor to the specified \a __value.
|
||||
\details Description of the parameter super_shift_factor is: <BLOCKQUOTE>\copybrief super_shift_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter super_shift_factor is: <BLOCKQUOTE>\copydoc super_shift_factor </BLOCKQUOTE>
|
||||
\see super_shift_factor for more information */
|
||||
inline virtual void set_super_shift_factor(double __value)
|
||||
{
|
||||
this->super_shift_factor = __value;
|
||||
}
|
||||
/*! \brief returns the property super_shift_factor.
|
||||
\details Description of the parameter super_shift_factor is: <BLOCKQUOTE>\copybrief super_shift_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter super_shift_factor is: <BLOCKQUOTE>\copydoc super_shift_factor </BLOCKQUOTE>
|
||||
\see super_shift_factor for more information */
|
||||
inline virtual double get_super_shift_factor() const
|
||||
{
|
||||
return this->super_shift_factor;
|
||||
}
|
||||
/*! \brief sets the property sub_shift_factor to the specified \a __value.
|
||||
\details Description of the parameter sub_shift_factor is: <BLOCKQUOTE>\copybrief sub_shift_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter sub_shift_factor is: <BLOCKQUOTE>\copydoc sub_shift_factor </BLOCKQUOTE>
|
||||
\see sub_shift_factor for more information */
|
||||
inline virtual void set_sub_shift_factor(double __value)
|
||||
{
|
||||
this->sub_shift_factor = __value;
|
||||
}
|
||||
/*! \brief returns the property sub_shift_factor.
|
||||
\details Description of the parameter sub_shift_factor is: <BLOCKQUOTE>\copybrief sub_shift_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter sub_shift_factor is: <BLOCKQUOTE>\copydoc sub_shift_factor </BLOCKQUOTE>
|
||||
\see sub_shift_factor for more information */
|
||||
inline virtual double get_sub_shift_factor() const
|
||||
{
|
||||
return this->sub_shift_factor;
|
||||
}
|
||||
/*! \brief sets the property brace_shrink_factor to the specified \a __value.
|
||||
\details Description of the parameter brace_shrink_factor is: <BLOCKQUOTE>\copybrief brace_shrink_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter brace_shrink_factor is: <BLOCKQUOTE>\copydoc brace_shrink_factor </BLOCKQUOTE>
|
||||
\see brace_shrink_factor for more information */
|
||||
inline virtual void set_brace_shrink_factor(double __value)
|
||||
{
|
||||
this->brace_shrink_factor = __value;
|
||||
}
|
||||
/*! \brief returns the property brace_shrink_factor.
|
||||
\details Description of the parameter brace_shrink_factor is: <BLOCKQUOTE>\copybrief brace_shrink_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter brace_shrink_factor is: <BLOCKQUOTE>\copydoc brace_shrink_factor </BLOCKQUOTE>
|
||||
\see brace_shrink_factor for more information */
|
||||
inline virtual double get_brace_shrink_factor() const
|
||||
{
|
||||
return this->brace_shrink_factor;
|
||||
}
|
||||
/*! \brief sets the property underbrace_factor to the specified \a __value.
|
||||
\details Description of the parameter underbrace_factor is: <BLOCKQUOTE>\copybrief underbrace_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter underbrace_factor is: <BLOCKQUOTE>\copydoc underbrace_factor </BLOCKQUOTE>
|
||||
\see underbrace_factor for more information */
|
||||
inline virtual void set_underbrace_factor(double __value)
|
||||
{
|
||||
this->underbrace_factor = __value;
|
||||
}
|
||||
/*! \brief returns the property underbrace_factor.
|
||||
\details Description of the parameter underbrace_factor is: <BLOCKQUOTE>\copybrief underbrace_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter underbrace_factor is: <BLOCKQUOTE>\copydoc underbrace_factor </BLOCKQUOTE>
|
||||
\see underbrace_factor for more information */
|
||||
inline virtual double get_underbrace_factor() const
|
||||
{
|
||||
return this->underbrace_factor;
|
||||
}
|
||||
/*! \brief sets the property underset_factor to the specified \a __value.
|
||||
\details Description of the parameter underset_factor is: <BLOCKQUOTE>\copybrief underset_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter underset_factor is: <BLOCKQUOTE>\copydoc underset_factor </BLOCKQUOTE>
|
||||
\see underset_factor for more information */
|
||||
inline virtual void set_underset_factor(double __value)
|
||||
{
|
||||
this->underset_factor = __value;
|
||||
}
|
||||
/*! \brief returns the property underset_factor.
|
||||
\details Description of the parameter underset_factor is: <BLOCKQUOTE>\copybrief underset_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter underset_factor is: <BLOCKQUOTE>\copydoc underset_factor </BLOCKQUOTE>
|
||||
\see underset_factor for more information */
|
||||
inline virtual double get_underset_factor() const
|
||||
{
|
||||
return this->underset_factor;
|
||||
}
|
||||
/*! \brief sets the property frac_factor to the specified \a __value.
|
||||
\details Description of the parameter frac_factor is: <BLOCKQUOTE>\copybrief frac_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter frac_factor is: <BLOCKQUOTE>\copydoc frac_factor </BLOCKQUOTE>
|
||||
\see frac_factor for more information */
|
||||
inline virtual void set_frac_factor(double __value)
|
||||
{
|
||||
this->frac_factor = __value;
|
||||
}
|
||||
/*! \brief returns the property frac_factor.
|
||||
\details Description of the parameter frac_factor is: <BLOCKQUOTE>\copybrief frac_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter frac_factor is: <BLOCKQUOTE>\copydoc frac_factor </BLOCKQUOTE>
|
||||
\see frac_factor for more information */
|
||||
inline virtual double get_frac_factor() const
|
||||
{
|
||||
return this->frac_factor;
|
||||
}
|
||||
/*! \brief sets the property frac_shift_factor to the specified \a __value.
|
||||
\details Description of the parameter frac_shift_factor is: <BLOCKQUOTE>\copybrief frac_shift_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter frac_shift_factor is: <BLOCKQUOTE>\copydoc frac_shift_factor </BLOCKQUOTE>
|
||||
\see frac_shift_factor for more information */
|
||||
inline virtual void set_frac_shift_factor(double __value)
|
||||
{
|
||||
this->frac_shift_factor = __value;
|
||||
}
|
||||
/*! \brief returns the property frac_shift_factor.
|
||||
\details Description of the parameter frac_shift_factor is: <BLOCKQUOTE>\copybrief frac_shift_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter frac_shift_factor is: <BLOCKQUOTE>\copydoc frac_shift_factor </BLOCKQUOTE>
|
||||
\see frac_shift_factor for more information */
|
||||
inline virtual double get_frac_shift_factor() const
|
||||
{
|
||||
return this->frac_shift_factor;
|
||||
}
|
||||
/*! \brief sets the property brace_y_shift_factor to the specified \a __value.
|
||||
\details Description of the parameter brace_y_shift_factor is: <BLOCKQUOTE>\copybrief brace_y_shift_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter brace_y_shift_factor is: <BLOCKQUOTE>\copydoc brace_y_shift_factor </BLOCKQUOTE>
|
||||
\see brace_y_shift_factor for more information */
|
||||
inline virtual void set_brace_y_shift_factor(double __value)
|
||||
{
|
||||
this->brace_y_shift_factor = __value;
|
||||
}
|
||||
/*! \brief returns the property brace_y_shift_factor.
|
||||
\details Description of the parameter brace_y_shift_factor is: <BLOCKQUOTE>\copybrief brace_y_shift_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter brace_y_shift_factor is: <BLOCKQUOTE>\copydoc brace_y_shift_factor </BLOCKQUOTE>
|
||||
\see brace_y_shift_factor for more information */
|
||||
inline virtual double get_brace_y_shift_factor() const
|
||||
{
|
||||
return this->brace_y_shift_factor;
|
||||
}
|
||||
/*! \brief sets the property decoration_height_factor to the specified \a __value.
|
||||
\details Description of the parameter decoration_height_factor is: <BLOCKQUOTE>\copybrief decoration_height_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter decoration_height_factor is: <BLOCKQUOTE>\copydoc decoration_height_factor </BLOCKQUOTE>
|
||||
\see decoration_height_factor for more information */
|
||||
inline virtual void set_decoration_height_factor(double __value)
|
||||
{
|
||||
this->decoration_height_factor = __value;
|
||||
}
|
||||
/*! \brief returns the property decoration_height_factor.
|
||||
\details Description of the parameter decoration_height_factor is: <BLOCKQUOTE>\copybrief decoration_height_factor </BLOCKQUOTE>
|
||||
\details Description of the parameter decoration_height_factor is: <BLOCKQUOTE>\copydoc decoration_height_factor </BLOCKQUOTE>
|
||||
\see decoration_height_factor for more information */
|
||||
inline virtual double get_decoration_height_factor() const
|
||||
{
|
||||
return this->decoration_height_factor;
|
||||
}
|
||||
/*! \brief sets the property expensiveRendering to the specified \a __value.
|
||||
\details Description of the parameter expensiveRendering is: <BLOCKQUOTE>\copybrief expensiveRendering </BLOCKQUOTE>
|
||||
\details Description of the parameter expensiveRendering is: <BLOCKQUOTE>\copydoc expensiveRendering </BLOCKQUOTE>
|
||||
\see expensiveRendering for more information */
|
||||
inline virtual void set_expensiveRendering(bool __value)
|
||||
{
|
||||
this->expensiveRendering = __value;
|
||||
}
|
||||
/*! \brief returns the property expensiveRendering.
|
||||
\details Description of the parameter expensiveRendering is: <BLOCKQUOTE>\copybrief expensiveRendering </BLOCKQUOTE>
|
||||
\details Description of the parameter expensiveRendering is: <BLOCKQUOTE>\copydoc expensiveRendering </BLOCKQUOTE>
|
||||
\see expensiveRendering for more information */
|
||||
inline virtual bool get_expensiveRendering() const
|
||||
{
|
||||
return this->expensiveRendering;
|
||||
}
|
||||
/*! \brief sets the property useUnparsed to the specified \a __value.
|
||||
\details Description of the parameter useUnparsed is: <BLOCKQUOTE>\copybrief useUnparsed </BLOCKQUOTE>
|
||||
\details Description of the parameter useUnparsed is: <BLOCKQUOTE>\copydoc useUnparsed </BLOCKQUOTE>
|
||||
\see useUnparsed for more information */
|
||||
inline virtual void set_useUnparsed(bool __value)
|
||||
{
|
||||
this->useUnparsed = __value;
|
||||
}
|
||||
/*! \brief returns the property useUnparsed.
|
||||
\details Description of the parameter useUnparsed is: <BLOCKQUOTE>\copybrief useUnparsed </BLOCKQUOTE>
|
||||
\details Description of the parameter useUnparsed is: <BLOCKQUOTE>\copydoc useUnparsed </BLOCKQUOTE>
|
||||
\see useUnparsed for more information */
|
||||
inline virtual bool get_useUnparsed() const
|
||||
{
|
||||
return this->useUnparsed;
|
||||
}
|
||||
/*! \brief returns the property error_list.
|
||||
\details Description of the parameter error_list is: <BLOCKQUOTE>\copybrief error_list </BLOCKQUOTE>.
|
||||
\details Description of the parameter error_list is: <BLOCKQUOTE>\copydoc error_list </BLOCKQUOTE>.
|
||||
\see error_list for more information */
|
||||
inline QStringList get_error_list() const {
|
||||
return this->error_list;
|
||||
@ -830,7 +830,7 @@ class LIB_EXPORT JKQTMathText : public QObject {
|
||||
virtual bool toHtml(QString& html, JKQTMathText::MTenvironment currentEv, JKQTMathText::MTenvironment defaultEv);
|
||||
|
||||
/*! \brief returns the property drawBoxes.
|
||||
\details Description of the parameter drawBoxes is: <BLOCKQUOTE>\copybrief drawBoxes </BLOCKQUOTE>.
|
||||
\details Description of the parameter drawBoxes is: <BLOCKQUOTE>\copydoc drawBoxes </BLOCKQUOTE>.
|
||||
\see drawBoxes for more information */
|
||||
inline bool get_drawBoxes() const {
|
||||
return this->drawBoxes;
|
||||
@ -852,7 +852,7 @@ class LIB_EXPORT JKQTMathText : public QObject {
|
||||
virtual double draw(QPainter& painter, double x, double y, MTenvironment currentEv);
|
||||
virtual bool toHtml(QString& html, JKQTMathText::MTenvironment currentEv, JKQTMathText::MTenvironment defaultEv);
|
||||
/*! \brief returns the property text.
|
||||
\details Description of the parameter text is: <BLOCKQUOTE>\copybrief text </BLOCKQUOTE>.
|
||||
\details Description of the parameter text is: <BLOCKQUOTE>\copydoc text </BLOCKQUOTE>.
|
||||
\see text for more information */
|
||||
inline QString get_text() const {
|
||||
return this->text;
|
||||
@ -891,7 +891,7 @@ class LIB_EXPORT JKQTMathText : public QObject {
|
||||
virtual double draw(QPainter& painter, double x, double y, MTenvironment currentEv);
|
||||
virtual bool toHtml(QString& html, JKQTMathText::MTenvironment currentEv, JKQTMathText::MTenvironment defaultEv);
|
||||
/*! \brief returns the property symbolName.
|
||||
\details Description of the parameter symbolName is: <BLOCKQUOTE>\copybrief symbolName </BLOCKQUOTE>.
|
||||
\details Description of the parameter symbolName is: <BLOCKQUOTE>\copydoc symbolName </BLOCKQUOTE>.
|
||||
\see symbolName for more information */
|
||||
inline QString get_symbolName() const {
|
||||
return this->symbolName;
|
||||
@ -934,7 +934,7 @@ class LIB_EXPORT JKQTMathText : public QObject {
|
||||
virtual bool toHtml(QString& html, JKQTMathText::MTenvironment currentEv, JKQTMathText::MTenvironment defaultEv);
|
||||
virtual void set_drawBoxes(bool draw);
|
||||
/*! \brief returns the property nodes.
|
||||
\details Description of the parameter nodes is: <BLOCKQUOTE>\copybrief nodes </BLOCKQUOTE>.
|
||||
\details Description of the parameter nodes is: <BLOCKQUOTE>\copydoc nodes </BLOCKQUOTE>.
|
||||
\see nodes for more information */
|
||||
inline QList<MTnode*> get_nodes() const {
|
||||
return this->nodes;
|
||||
@ -956,19 +956,19 @@ class LIB_EXPORT JKQTMathText : public QObject {
|
||||
virtual bool toHtml(QString& html, JKQTMathText::MTenvironment currentEv, JKQTMathText::MTenvironment defaultEv);
|
||||
virtual void set_drawBoxes(bool draw);
|
||||
/*! \brief returns the property child.
|
||||
\details Description of the parameter child is: <BLOCKQUOTE>\copybrief child </BLOCKQUOTE>.
|
||||
\details Description of the parameter child is: <BLOCKQUOTE>\copydoc child </BLOCKQUOTE>.
|
||||
\see child for more information */
|
||||
inline MTnode* get_child() const {
|
||||
return this->child;
|
||||
}
|
||||
/*! \brief returns the property name.
|
||||
\details Description of the parameter name is: <BLOCKQUOTE>\copybrief name </BLOCKQUOTE>.
|
||||
\details Description of the parameter name is: <BLOCKQUOTE>\copydoc name </BLOCKQUOTE>.
|
||||
\see name for more information */
|
||||
inline QString get_name() const {
|
||||
return this->name;
|
||||
}
|
||||
/*! \brief returns the property parameters.
|
||||
\details Description of the parameter parameters is: <BLOCKQUOTE>\copybrief parameters </BLOCKQUOTE>.
|
||||
\details Description of the parameter parameters is: <BLOCKQUOTE>\copydoc parameters </BLOCKQUOTE>.
|
||||
\see parameters for more information */
|
||||
inline QStringList get_parameters() const {
|
||||
return this->parameters;
|
||||
@ -994,7 +994,7 @@ class LIB_EXPORT JKQTMathText : public QObject {
|
||||
virtual bool isSubOrSuper() ;
|
||||
virtual QString getTypeName() const;
|
||||
/*! \brief returns the property child.
|
||||
\details Description of the parameter child is: <BLOCKQUOTE>\copybrief child </BLOCKQUOTE>.
|
||||
\details Description of the parameter child is: <BLOCKQUOTE>\copydoc child </BLOCKQUOTE>.
|
||||
\see child for more information */
|
||||
inline MTnode* get_child() const {
|
||||
return this->child;
|
||||
@ -1015,7 +1015,7 @@ class LIB_EXPORT JKQTMathText : public QObject {
|
||||
/** \brief returns true if node is subscript or superscript node */
|
||||
virtual bool isSubOrSuper();
|
||||
/*! \brief returns the property child.
|
||||
\details Description of the parameter child is: <BLOCKQUOTE>\copybrief child </BLOCKQUOTE>.
|
||||
\details Description of the parameter child is: <BLOCKQUOTE>\copydoc child </BLOCKQUOTE>.
|
||||
\see child for more information */
|
||||
inline MTnode* get_child() const {
|
||||
return this->child;
|
||||
@ -1038,25 +1038,25 @@ class LIB_EXPORT JKQTMathText : public QObject {
|
||||
virtual void set_drawBoxes(bool draw);
|
||||
virtual QString getTypeName() const;
|
||||
/*! \brief returns the property child.
|
||||
\details Description of the parameter child is: <BLOCKQUOTE>\copybrief child </BLOCKQUOTE>.
|
||||
\details Description of the parameter child is: <BLOCKQUOTE>\copydoc child </BLOCKQUOTE>.
|
||||
\see child for more information */
|
||||
inline MTnode* get_child() const {
|
||||
return this->child;
|
||||
}
|
||||
/*! \brief returns the property openbrace.
|
||||
\details Description of the parameter openbrace is: <BLOCKQUOTE>\copybrief openbrace </BLOCKQUOTE>.
|
||||
\details Description of the parameter openbrace is: <BLOCKQUOTE>\copydoc openbrace </BLOCKQUOTE>.
|
||||
\see openbrace for more information */
|
||||
inline QString get_openbrace() const {
|
||||
return this->openbrace;
|
||||
}
|
||||
/*! \brief returns the property closebrace.
|
||||
\details Description of the parameter closebrace is: <BLOCKQUOTE>\copybrief closebrace </BLOCKQUOTE>.
|
||||
\details Description of the parameter closebrace is: <BLOCKQUOTE>\copydoc closebrace </BLOCKQUOTE>.
|
||||
\see closebrace for more information */
|
||||
inline QString get_closebrace() const {
|
||||
return this->closebrace;
|
||||
}
|
||||
/*! \brief returns the property showRightBrace.
|
||||
\details Description of the parameter showRightBrace is: <BLOCKQUOTE>\copybrief showRightBrace </BLOCKQUOTE>.
|
||||
\details Description of the parameter showRightBrace is: <BLOCKQUOTE>\copydoc showRightBrace </BLOCKQUOTE>.
|
||||
\see showRightBrace for more information */
|
||||
inline bool get_showRightBrace() const {
|
||||
return this->showRightBrace;
|
||||
@ -1082,13 +1082,13 @@ class LIB_EXPORT JKQTMathText : public QObject {
|
||||
virtual void set_drawBoxes(bool draw);
|
||||
virtual QString getTypeName() const ;
|
||||
/*! \brief returns the property child.
|
||||
\details Description of the parameter child is: <BLOCKQUOTE>\copybrief child </BLOCKQUOTE>.
|
||||
\details Description of the parameter child is: <BLOCKQUOTE>\copydoc child </BLOCKQUOTE>.
|
||||
\see child for more information */
|
||||
inline MTnode* get_child() const {
|
||||
return this->child;
|
||||
}
|
||||
/*! \brief returns the property degree.
|
||||
\details Description of the parameter degree is: <BLOCKQUOTE>\copybrief degree </BLOCKQUOTE>.
|
||||
\details Description of the parameter degree is: <BLOCKQUOTE>\copydoc degree </BLOCKQUOTE>.
|
||||
\see degree for more information */
|
||||
inline int get_degree() const {
|
||||
return this->degree;
|
||||
@ -1122,19 +1122,19 @@ class LIB_EXPORT JKQTMathText : public QObject {
|
||||
virtual bool toHtml(QString& html, JKQTMathText::MTenvironment currentEv, JKQTMathText::MTenvironment defaultEv);
|
||||
virtual void set_drawBoxes(bool draw);
|
||||
/*! \brief returns the property child1.
|
||||
\details Description of the parameter child1 is: <BLOCKQUOTE>\copybrief child1 </BLOCKQUOTE>.
|
||||
\details Description of the parameter child1 is: <BLOCKQUOTE>\copydoc child1 </BLOCKQUOTE>.
|
||||
\see child1 for more information */
|
||||
inline MTnode* get_child1() const {
|
||||
return this->child1;
|
||||
}
|
||||
/*! \brief returns the property child2.
|
||||
\details Description of the parameter child2 is: <BLOCKQUOTE>\copybrief child2 </BLOCKQUOTE>.
|
||||
\details Description of the parameter child2 is: <BLOCKQUOTE>\copydoc child2 </BLOCKQUOTE>.
|
||||
\see child2 for more information */
|
||||
inline MTnode* get_child2() const {
|
||||
return this->child2;
|
||||
}
|
||||
/*! \brief returns the property mode.
|
||||
\details Description of the parameter mode is: <BLOCKQUOTE>\copybrief mode </BLOCKQUOTE>.
|
||||
\details Description of the parameter mode is: <BLOCKQUOTE>\copydoc mode </BLOCKQUOTE>.
|
||||
\see mode for more information */
|
||||
inline MTfracMode get_mode() const {
|
||||
return this->mode;
|
||||
@ -1155,19 +1155,19 @@ class LIB_EXPORT JKQTMathText : public QObject {
|
||||
virtual double draw(QPainter& painter, double x, double y, MTenvironment currentEv);
|
||||
virtual bool toHtml(QString& html, JKQTMathText::MTenvironment currentEv, JKQTMathText::MTenvironment defaultEv);
|
||||
/*! \brief returns the property children.
|
||||
\details Description of the parameter children is: <BLOCKQUOTE>\copybrief children </BLOCKQUOTE>.
|
||||
\details Description of the parameter children is: <BLOCKQUOTE>\copydoc children </BLOCKQUOTE>.
|
||||
\see children for more information */
|
||||
inline QVector<QVector<MTnode*> > get_children() const {
|
||||
return this->children;
|
||||
}
|
||||
/*! \brief returns the property columns.
|
||||
\details Description of the parameter columns is: <BLOCKQUOTE>\copybrief columns </BLOCKQUOTE>.
|
||||
\details Description of the parameter columns is: <BLOCKQUOTE>\copydoc columns </BLOCKQUOTE>.
|
||||
\see columns for more information */
|
||||
inline int get_columns() const {
|
||||
return this->columns;
|
||||
}
|
||||
/*! \brief returns the property lines.
|
||||
\details Description of the parameter lines is: <BLOCKQUOTE>\copybrief lines </BLOCKQUOTE>.
|
||||
\details Description of the parameter lines is: <BLOCKQUOTE>\copydoc lines </BLOCKQUOTE>.
|
||||
\see lines for more information */
|
||||
inline int get_lines() const {
|
||||
return this->lines;
|
||||
@ -1206,13 +1206,13 @@ class LIB_EXPORT JKQTMathText : public QObject {
|
||||
virtual void set_drawBoxes(bool draw);
|
||||
virtual QString getTypeName() const ;
|
||||
/*! \brief returns the property child.
|
||||
\details Description of the parameter child is: <BLOCKQUOTE>\copybrief child </BLOCKQUOTE>.
|
||||
\details Description of the parameter child is: <BLOCKQUOTE>\copydoc child </BLOCKQUOTE>.
|
||||
\see child for more information */
|
||||
inline MTnode* get_child() const {
|
||||
return this->child;
|
||||
}
|
||||
/*! \brief returns the property decoration.
|
||||
\details Description of the parameter decoration is: <BLOCKQUOTE>\copybrief decoration </BLOCKQUOTE>.
|
||||
\details Description of the parameter decoration is: <BLOCKQUOTE>\copydoc decoration </BLOCKQUOTE>.
|
||||
\see decoration for more information */
|
||||
inline MTdecoration get_decoration() const {
|
||||
return this->decoration;
|
||||
@ -1454,7 +1454,7 @@ class LIB_EXPORT JKQTMathText : public QObject {
|
||||
|
||||
public:
|
||||
/*! \brief returns the property parsedNode.
|
||||
\details Description of the parameter parsedNode is: <BLOCKQUOTE>\copybrief parsedNode </BLOCKQUOTE>.
|
||||
\details Description of the parameter parsedNode is: <BLOCKQUOTE>\copydoc parsedNode </BLOCKQUOTE>.
|
||||
\see parsedNode for more information */
|
||||
inline MTnode* get_parsedNode() const {
|
||||
return this->parsedNode;
|
||||
|
@ -219,122 +219,122 @@ class LIB_EXPORT JKQTPCoordinateAxis: public QObject {
|
||||
virtual void drawGrids(JKQTPEnhancedPainter& painter)=0;
|
||||
|
||||
|
||||
/*! \brief returns the property tickSpacing. \details Description of the parameter tickSpacing is: <BLOCKQUOTE>\copybrief tickSpacing </BLOCKQUOTE>. \see tickSpacing for more information */
|
||||
/*! \brief returns the property tickSpacing. \details Description of the parameter tickSpacing is: <BLOCKQUOTE>\copydoc tickSpacing </BLOCKQUOTE>. \see tickSpacing for more information */
|
||||
inline double get_tickSpacing() const { return this->tickSpacing; }
|
||||
/*! \brief returns the property labelDigits. \details Description of the parameter labelDigits is: <BLOCKQUOTE>\copybrief labelDigits </BLOCKQUOTE>. \see labelDigits for more information */
|
||||
/*! \brief returns the property labelDigits. \details Description of the parameter labelDigits is: <BLOCKQUOTE>\copydoc labelDigits </BLOCKQUOTE>. \see labelDigits for more information */
|
||||
inline int get_labelDigits() const { return this->labelDigits; }
|
||||
/*! \brief returns the property autoAxisSpacing. \details Description of the parameter autoAxisSpacing is: <BLOCKQUOTE>\copybrief autoAxisSpacing </BLOCKQUOTE>. \see autoAxisSpacing for more information */
|
||||
/*! \brief returns the property autoAxisSpacing. \details Description of the parameter autoAxisSpacing is: <BLOCKQUOTE>\copydoc autoAxisSpacing </BLOCKQUOTE>. \see autoAxisSpacing for more information */
|
||||
inline bool get_autoAxisSpacing() const { return this->autoAxisSpacing; }
|
||||
/*! \brief returns the property minorTickLabelsEnabled. \details Description of the parameter minorTickLabelsEnabled is: <BLOCKQUOTE>\copybrief minorTickLabelsEnabled </BLOCKQUOTE>. \see minorTickLabelsEnabled for more information */
|
||||
/*! \brief returns the property minorTickLabelsEnabled. \details Description of the parameter minorTickLabelsEnabled is: <BLOCKQUOTE>\copydoc minorTickLabelsEnabled </BLOCKQUOTE>. \see minorTickLabelsEnabled for more information */
|
||||
inline bool get_minorTickLabelsEnabled() const { return this->minorTickLabelsEnabled; }
|
||||
/*! \brief returns the property logAxis. \details Description of the parameter logAxis is: <BLOCKQUOTE>\copybrief logAxis </BLOCKQUOTE>. \see logAxis for more information */
|
||||
/*! \brief returns the property logAxis. \details Description of the parameter logAxis is: <BLOCKQUOTE>\copydoc logAxis </BLOCKQUOTE>. \see logAxis for more information */
|
||||
inline bool get_logAxis() const { return this->logAxis; }
|
||||
/*! \brief returns the property inverted. \details Description of the parameter inverted is: <BLOCKQUOTE>\copybrief inverted </BLOCKQUOTE>. \see inverted for more information */
|
||||
/*! \brief returns the property inverted. \details Description of the parameter inverted is: <BLOCKQUOTE>\copydoc inverted </BLOCKQUOTE>. \see inverted for more information */
|
||||
inline bool get_inverted() const { return this->inverted; }
|
||||
/*! \brief returns the property logAxisBase. \details Description of the parameter logAxisBase is: <BLOCKQUOTE>\copybrief logAxisBase </BLOCKQUOTE>. \see logAxisBase for more information */
|
||||
/*! \brief returns the property logAxisBase. \details Description of the parameter logAxisBase is: <BLOCKQUOTE>\copydoc logAxisBase </BLOCKQUOTE>. \see logAxisBase for more information */
|
||||
inline double get_logAxisBase() const { return this->logAxisBase; }
|
||||
/*! \brief returns the property userTickSpacing. \details Description of the parameter userTickSpacing is: <BLOCKQUOTE>\copybrief userTickSpacing </BLOCKQUOTE>. \see userTickSpacing for more information */
|
||||
/*! \brief returns the property userTickSpacing. \details Description of the parameter userTickSpacing is: <BLOCKQUOTE>\copydoc userTickSpacing </BLOCKQUOTE>. \see userTickSpacing for more information */
|
||||
inline double get_userTickSpacing() const { return this->userTickSpacing; }
|
||||
/*! \brief returns the property userLogTickSpacing. \details Description of the parameter userLogTickSpacing is: <BLOCKQUOTE>\copybrief userLogTickSpacing </BLOCKQUOTE>. \see userLogTickSpacing for more information */
|
||||
/*! \brief returns the property userLogTickSpacing. \details Description of the parameter userLogTickSpacing is: <BLOCKQUOTE>\copydoc userLogTickSpacing </BLOCKQUOTE>. \see userLogTickSpacing for more information */
|
||||
inline double get_userLogTickSpacing() const { return this->userLogTickSpacing; }
|
||||
/*! \brief returns the property labelType. \details Description of the parameter labelType is: <BLOCKQUOTE>\copybrief labelType </BLOCKQUOTE>. \see labelType for more information */
|
||||
/*! \brief returns the property labelType. \details Description of the parameter labelType is: <BLOCKQUOTE>\copydoc labelType </BLOCKQUOTE>. \see labelType for more information */
|
||||
inline JKQTPCALabelType get_labelType() const { return this->labelType; }
|
||||
/*! \brief returns the property axisLabel. \details Description of the parameter axisLabel is: <BLOCKQUOTE>\copybrief axisLabel </BLOCKQUOTE>. \see axisLabel for more information */
|
||||
/*! \brief returns the property axisLabel. \details Description of the parameter axisLabel is: <BLOCKQUOTE>\copydoc axisLabel </BLOCKQUOTE>. \see axisLabel for more information */
|
||||
inline QString get_axisLabel() const { return this->axisLabel; }
|
||||
/*! \brief returns the property labelPosition. \details Description of the parameter labelPosition is: <BLOCKQUOTE>\copybrief labelPosition </BLOCKQUOTE>. \see labelPosition for more information */
|
||||
/*! \brief returns the property labelPosition. \details Description of the parameter labelPosition is: <BLOCKQUOTE>\copydoc labelPosition </BLOCKQUOTE>. \see labelPosition for more information */
|
||||
inline JKQTPLabelPosition get_labelPosition() const { return this->labelPosition; }
|
||||
/*! \brief returns the property labelFont. \details Description of the parameter labelFont is: <BLOCKQUOTE>\copybrief labelFont </BLOCKQUOTE>. \see labelFont for more information */
|
||||
/*! \brief returns the property labelFont. \details Description of the parameter labelFont is: <BLOCKQUOTE>\copydoc labelFont </BLOCKQUOTE>. \see labelFont for more information */
|
||||
inline QString get_labelFont() const { return this->labelFont; }
|
||||
/*! \brief returns the property labelFontSize. \details Description of the parameter labelFontSize is: <BLOCKQUOTE>\copybrief labelFontSize </BLOCKQUOTE>. \see labelFontSize for more information */
|
||||
/*! \brief returns the property labelFontSize. \details Description of the parameter labelFontSize is: <BLOCKQUOTE>\copydoc labelFontSize </BLOCKQUOTE>. \see labelFontSize for more information */
|
||||
inline double get_labelFontSize() const { return this->labelFontSize; }
|
||||
/*! \brief returns the property tickLabelFont. \details Description of the parameter tickLabelFont is: <BLOCKQUOTE>\copybrief tickLabelFont </BLOCKQUOTE>. \see tickLabelFont for more information */
|
||||
/*! \brief returns the property tickLabelFont. \details Description of the parameter tickLabelFont is: <BLOCKQUOTE>\copydoc tickLabelFont </BLOCKQUOTE>. \see tickLabelFont for more information */
|
||||
inline QString get_tickLabelFont() const { return this->tickLabelFont; }
|
||||
/*! \brief returns the property tickLabelFontSize. \details Description of the parameter tickLabelFontSize is: <BLOCKQUOTE>\copybrief tickLabelFontSize </BLOCKQUOTE>. \see tickLabelFontSize for more information */
|
||||
/*! \brief returns the property tickLabelFontSize. \details Description of the parameter tickLabelFontSize is: <BLOCKQUOTE>\copydoc tickLabelFontSize </BLOCKQUOTE>. \see tickLabelFontSize for more information */
|
||||
inline double get_tickLabelFontSize() const { return this->tickLabelFontSize; }
|
||||
/*! \brief returns the property minorTickLabelFontSize. \details Description of the parameter minorTickLabelFontSize is: <BLOCKQUOTE>\copybrief minorTickLabelFontSize </BLOCKQUOTE>. \see minorTickLabelFontSize for more information */
|
||||
/*! \brief returns the property minorTickLabelFontSize. \details Description of the parameter minorTickLabelFontSize is: <BLOCKQUOTE>\copydoc minorTickLabelFontSize </BLOCKQUOTE>. \see minorTickLabelFontSize for more information */
|
||||
inline double get_minorTickLabelFontSize() const { return this->minorTickLabelFontSize; }
|
||||
/*! \brief returns the property minorTickLabelFullNumber. \details Description of the parameter minorTickLabelFullNumber is: <BLOCKQUOTE>\copybrief minorTickLabelFullNumber </BLOCKQUOTE>. \see minorTickLabelFullNumber for more information */
|
||||
/*! \brief returns the property minorTickLabelFullNumber. \details Description of the parameter minorTickLabelFullNumber is: <BLOCKQUOTE>\copydoc minorTickLabelFullNumber </BLOCKQUOTE>. \see minorTickLabelFullNumber for more information */
|
||||
inline bool get_minorTickLabelFullNumber() const { return this->minorTickLabelFullNumber; }
|
||||
/*! \brief returns the property tickLabelAngle. \details Description of the parameter tickLabelAngle is: <BLOCKQUOTE>\copybrief tickLabelAngle </BLOCKQUOTE>. \see tickLabelAngle for more information */
|
||||
/*! \brief returns the property tickLabelAngle. \details Description of the parameter tickLabelAngle is: <BLOCKQUOTE>\copydoc tickLabelAngle </BLOCKQUOTE>. \see tickLabelAngle for more information */
|
||||
inline double get_tickLabelAngle() const { return this->tickLabelAngle; }
|
||||
/*! \brief returns the property minTicks. \details Description of the parameter minTicks is: <BLOCKQUOTE>\copybrief minTicks </BLOCKQUOTE>. \see minTicks for more information */
|
||||
/*! \brief returns the property minTicks. \details Description of the parameter minTicks is: <BLOCKQUOTE>\copydoc minTicks </BLOCKQUOTE>. \see minTicks for more information */
|
||||
inline unsigned int get_minTicks() const { return this->minTicks; }
|
||||
/*! \brief returns the property minorTicks. \details Description of the parameter minorTicks is: <BLOCKQUOTE>\copybrief minorTicks </BLOCKQUOTE>. \see minorTicks for more information */
|
||||
/*! \brief returns the property minorTicks. \details Description of the parameter minorTicks is: <BLOCKQUOTE>\copydoc minorTicks </BLOCKQUOTE>. \see minorTicks for more information */
|
||||
inline unsigned int get_minorTicks() const { return this->minorTicks; }
|
||||
/*! \brief returns the property tickOutsideLength. \details Description of the parameter tickOutsideLength is: <BLOCKQUOTE>\copybrief tickOutsideLength </BLOCKQUOTE>. \see tickOutsideLength for more information */
|
||||
/*! \brief returns the property tickOutsideLength. \details Description of the parameter tickOutsideLength is: <BLOCKQUOTE>\copydoc tickOutsideLength </BLOCKQUOTE>. \see tickOutsideLength for more information */
|
||||
inline double get_tickOutsideLength() const { return this->tickOutsideLength; }
|
||||
/*! \brief returns the property minorTickOutsideLength. \details Description of the parameter minorTickOutsideLength is: <BLOCKQUOTE>\copybrief minorTickOutsideLength </BLOCKQUOTE>. \see minorTickOutsideLength for more information */
|
||||
/*! \brief returns the property minorTickOutsideLength. \details Description of the parameter minorTickOutsideLength is: <BLOCKQUOTE>\copydoc minorTickOutsideLength </BLOCKQUOTE>. \see minorTickOutsideLength for more information */
|
||||
inline double get_minorTickOutsideLength() const { return this->minorTickOutsideLength; }
|
||||
/*! \brief returns the property axisColor. \details Description of the parameter axisColor is: <BLOCKQUOTE>\copybrief axisColor </BLOCKQUOTE>. \see axisColor for more information */
|
||||
/*! \brief returns the property axisColor. \details Description of the parameter axisColor is: <BLOCKQUOTE>\copydoc axisColor </BLOCKQUOTE>. \see axisColor for more information */
|
||||
inline QColor get_axisColor() const { return this->axisColor; }
|
||||
/*! \brief returns the property showZeroAxis. \details Description of the parameter showZeroAxis is: <BLOCKQUOTE>\copybrief showZeroAxis </BLOCKQUOTE>. \see showZeroAxis for more information */
|
||||
/*! \brief returns the property showZeroAxis. \details Description of the parameter showZeroAxis is: <BLOCKQUOTE>\copydoc showZeroAxis </BLOCKQUOTE>. \see showZeroAxis for more information */
|
||||
inline bool get_showZeroAxis() const { return this->showZeroAxis; }
|
||||
/*! \brief returns the property gridColor. \details Description of the parameter gridColor is: <BLOCKQUOTE>\copybrief gridColor </BLOCKQUOTE>. \see gridColor for more information */
|
||||
/*! \brief returns the property gridColor. \details Description of the parameter gridColor is: <BLOCKQUOTE>\copydoc gridColor </BLOCKQUOTE>. \see gridColor for more information */
|
||||
inline QColor get_gridColor() const { return this->gridColor; }
|
||||
/*! \brief returns the property minorGridColor. \details Description of the parameter minorGridColor is: <BLOCKQUOTE>\copybrief minorGridColor </BLOCKQUOTE>. \see minorGridColor for more information */
|
||||
/*! \brief returns the property minorGridColor. \details Description of the parameter minorGridColor is: <BLOCKQUOTE>\copydoc minorGridColor </BLOCKQUOTE>. \see minorGridColor for more information */
|
||||
inline QColor get_minorGridColor() const { return this->minorGridColor; }
|
||||
/*! \brief returns the property gridWidth. \details Description of the parameter gridWidth is: <BLOCKQUOTE>\copybrief gridWidth </BLOCKQUOTE>. \see gridWidth for more information */
|
||||
/*! \brief returns the property gridWidth. \details Description of the parameter gridWidth is: <BLOCKQUOTE>\copydoc gridWidth </BLOCKQUOTE>. \see gridWidth for more information */
|
||||
inline double get_gridWidth() const { return this->gridWidth; }
|
||||
/*! \brief returns the property gridStyle. \details Description of the parameter gridStyle is: <BLOCKQUOTE>\copybrief gridStyle </BLOCKQUOTE>. \see gridStyle for more information */
|
||||
/*! \brief returns the property gridStyle. \details Description of the parameter gridStyle is: <BLOCKQUOTE>\copydoc gridStyle </BLOCKQUOTE>. \see gridStyle for more information */
|
||||
inline Qt::PenStyle get_gridStyle() const { return this->gridStyle; }
|
||||
/*! \brief returns the property minorGridWidth. \details Description of the parameter minorGridWidth is: <BLOCKQUOTE>\copybrief minorGridWidth </BLOCKQUOTE>. \see minorGridWidth for more information */
|
||||
/*! \brief returns the property minorGridWidth. \details Description of the parameter minorGridWidth is: <BLOCKQUOTE>\copydoc minorGridWidth </BLOCKQUOTE>. \see minorGridWidth for more information */
|
||||
inline double get_minorGridWidth() const { return this->minorGridWidth; }
|
||||
/*! \brief returns the property minorGridStyle. \details Description of the parameter minorGridStyle is: <BLOCKQUOTE>\copybrief minorGridStyle </BLOCKQUOTE>. \see minorGridStyle for more information */
|
||||
/*! \brief returns the property minorGridStyle. \details Description of the parameter minorGridStyle is: <BLOCKQUOTE>\copydoc minorGridStyle </BLOCKQUOTE>. \see minorGridStyle for more information */
|
||||
inline Qt::PenStyle get_minorGridStyle() const { return this->minorGridStyle; }
|
||||
/*! \brief returns the property tickTimeFormat. \details Description of the parameter tickTimeFormat is: <BLOCKQUOTE>\copybrief tickTimeFormat </BLOCKQUOTE>. \see tickTimeFormat for more information */
|
||||
/*! \brief returns the property tickTimeFormat. \details Description of the parameter tickTimeFormat is: <BLOCKQUOTE>\copydoc tickTimeFormat </BLOCKQUOTE>. \see tickTimeFormat for more information */
|
||||
inline QString get_tickTimeFormat() const { return this->tickTimeFormat; }
|
||||
/*! \brief returns the property tickDateFormat. \details Description of the parameter tickDateFormat is: <BLOCKQUOTE>\copybrief tickDateFormat </BLOCKQUOTE>. \see tickDateFormat for more information */
|
||||
/*! \brief returns the property tickDateFormat. \details Description of the parameter tickDateFormat is: <BLOCKQUOTE>\copydoc tickDateFormat </BLOCKQUOTE>. \see tickDateFormat for more information */
|
||||
inline QString get_tickDateFormat() const { return this->tickDateFormat; }
|
||||
/*! \brief returns the property tickDateTimeFormat. \details Description of the parameter tickDateTimeFormat is: <BLOCKQUOTE>\copybrief tickDateTimeFormat </BLOCKQUOTE>. \see tickDateTimeFormat for more information */
|
||||
/*! \brief returns the property tickDateTimeFormat. \details Description of the parameter tickDateTimeFormat is: <BLOCKQUOTE>\copydoc tickDateTimeFormat </BLOCKQUOTE>. \see tickDateTimeFormat for more information */
|
||||
inline QString get_tickDateTimeFormat() const { return this->tickDateTimeFormat; }
|
||||
/*! \brief returns the property tickMode. \details Description of the parameter tickMode is: <BLOCKQUOTE>\copybrief tickMode </BLOCKQUOTE>. \see tickMode for more information */
|
||||
/*! \brief returns the property tickMode. \details Description of the parameter tickMode is: <BLOCKQUOTE>\copydoc tickMode </BLOCKQUOTE>. \see tickMode for more information */
|
||||
inline JKQTPLabelTickMode get_tickMode() const { return this->tickMode; }
|
||||
|
||||
/*! \brief returns the property drawMode1. \details Description of the parameter drawMode1 is: <BLOCKQUOTE>\copybrief drawMode1 </BLOCKQUOTE>. \see drawMode1 for more information */
|
||||
/*! \brief returns the property drawMode1. \details Description of the parameter drawMode1 is: <BLOCKQUOTE>\copydoc drawMode1 </BLOCKQUOTE>. \see drawMode1 for more information */
|
||||
inline JKQTPCADrawMode get_drawMode1() const { return this->drawMode1; }
|
||||
/*! \brief returns the property drawMode2. \details Description of the parameter drawMode2 is: <BLOCKQUOTE>\copybrief drawMode2 </BLOCKQUOTE>. \see drawMode2 for more information */
|
||||
/*! \brief returns the property drawMode2. \details Description of the parameter drawMode2 is: <BLOCKQUOTE>\copydoc drawMode2 </BLOCKQUOTE>. \see drawMode2 for more information */
|
||||
inline JKQTPCADrawMode get_drawMode2() const { return this->drawMode2; }
|
||||
/*! \brief returns the property minorTickWidth. \details Description of the parameter minorTickWidth is: <BLOCKQUOTE>\copybrief minorTickWidth </BLOCKQUOTE>. \see minorTickWidth for more information */
|
||||
/*! \brief returns the property minorTickWidth. \details Description of the parameter minorTickWidth is: <BLOCKQUOTE>\copydoc minorTickWidth </BLOCKQUOTE>. \see minorTickWidth for more information */
|
||||
inline double get_minorTickWidth() const { return this->minorTickWidth; }
|
||||
/*! \brief returns the property tickWidth. \details Description of the parameter tickWidth is: <BLOCKQUOTE>\copybrief tickWidth </BLOCKQUOTE>. \see tickWidth for more information */
|
||||
/*! \brief returns the property tickWidth. \details Description of the parameter tickWidth is: <BLOCKQUOTE>\copydoc tickWidth </BLOCKQUOTE>. \see tickWidth for more information */
|
||||
inline double get_tickWidth() const { return this->tickWidth; }
|
||||
/*! \brief returns the property lineWidth. \details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>. \see lineWidth for more information */
|
||||
/*! \brief returns the property lineWidth. \details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>. \see lineWidth for more information */
|
||||
inline double get_lineWidth() const { return this->lineWidth; }
|
||||
/*! \brief returns the property lineWidthZeroAxis. \details Description of the parameter lineWidthZeroAxis is: <BLOCKQUOTE>\copybrief lineWidthZeroAxis </BLOCKQUOTE>. \see lineWidthZeroAxis for more information */
|
||||
/*! \brief returns the property lineWidthZeroAxis. \details Description of the parameter lineWidthZeroAxis is: <BLOCKQUOTE>\copydoc lineWidthZeroAxis </BLOCKQUOTE>. \see lineWidthZeroAxis for more information */
|
||||
inline double get_lineWidthZeroAxis() const { return this->lineWidthZeroAxis; }
|
||||
/*! \brief returns the property tickLabelDistance. \details Description of the parameter tickLabelDistance is: <BLOCKQUOTE>\copybrief tickLabelDistance </BLOCKQUOTE>. \see tickLabelDistance for more information */
|
||||
/*! \brief returns the property tickLabelDistance. \details Description of the parameter tickLabelDistance is: <BLOCKQUOTE>\copydoc tickLabelDistance </BLOCKQUOTE>. \see tickLabelDistance for more information */
|
||||
inline double get_tickLabelDistance() const { return this->tickLabelDistance; }
|
||||
/*! \brief returns the property labelDistance. \details Description of the parameter labelDistance is: <BLOCKQUOTE>\copybrief labelDistance </BLOCKQUOTE>. \see labelDistance for more information */
|
||||
/*! \brief returns the property labelDistance. \details Description of the parameter labelDistance is: <BLOCKQUOTE>\copydoc labelDistance </BLOCKQUOTE>. \see labelDistance for more information */
|
||||
inline double get_labelDistance() const { return this->labelDistance; }
|
||||
/*! \brief returns the property drawGrid. \details Description of the parameter drawGrid is: <BLOCKQUOTE>\copybrief drawGrid </BLOCKQUOTE>. \see drawGrid for more information */
|
||||
/*! \brief returns the property drawGrid. \details Description of the parameter drawGrid is: <BLOCKQUOTE>\copydoc drawGrid </BLOCKQUOTE>. \see drawGrid for more information */
|
||||
inline bool get_drawGrid() const { return this->drawGrid; }
|
||||
/*! \brief returns the property drawMinorGrid. \details Description of the parameter drawMinorGrid is: <BLOCKQUOTE>\copybrief drawMinorGrid </BLOCKQUOTE>. \see drawMinorGrid for more information */
|
||||
/*! \brief returns the property drawMinorGrid. \details Description of the parameter drawMinorGrid is: <BLOCKQUOTE>\copydoc drawMinorGrid </BLOCKQUOTE>. \see drawMinorGrid for more information */
|
||||
inline bool get_drawMinorGrid() const { return this->drawMinorGrid; }
|
||||
/*! \brief sets the property autoLabelDigits to the specified \a __value.
|
||||
\details Description of the parameter autoLabelDigits is: <BLOCKQUOTE>\copybrief autoLabelDigits </BLOCKQUOTE>
|
||||
\details Description of the parameter autoLabelDigits is: <BLOCKQUOTE>\copydoc autoLabelDigits </BLOCKQUOTE>
|
||||
\see autoLabelDigits for more information */
|
||||
inline virtual void set_autoLabelDigits(bool __value)
|
||||
{
|
||||
this->autoLabelDigits = __value;
|
||||
}
|
||||
/*! \brief returns the property autoLabelDigits.
|
||||
\details Description of the parameter autoLabelDigits is: <BLOCKQUOTE>\copybrief autoLabelDigits </BLOCKQUOTE>
|
||||
\details Description of the parameter autoLabelDigits is: <BLOCKQUOTE>\copydoc autoLabelDigits </BLOCKQUOTE>
|
||||
\see autoLabelDigits for more information */
|
||||
inline virtual bool get_autoLabelDigits() const
|
||||
{
|
||||
return this->autoLabelDigits;
|
||||
}
|
||||
/*! \brief returns the property parent. \details Description of the parameter parent is: <BLOCKQUOTE>\copybrief parent </BLOCKQUOTE>. \see parent for more information */
|
||||
/*! \brief returns the property parent. \details Description of the parameter parent is: <BLOCKQUOTE>\copydoc parent </BLOCKQUOTE>. \see parent for more information */
|
||||
inline JKQTBasePlotter* get_parent() const { return this->parent; }
|
||||
/*! \brief sets the property doUpdateScaling to the specified \a __value.
|
||||
\details Description of the parameter doUpdateScaling is: <BLOCKQUOTE>\copybrief doUpdateScaling </BLOCKQUOTE>
|
||||
\details Description of the parameter doUpdateScaling is: <BLOCKQUOTE>\copydoc doUpdateScaling </BLOCKQUOTE>
|
||||
\see doUpdateScaling for more information */
|
||||
inline virtual void set_doUpdateScaling(bool __value)
|
||||
{
|
||||
this->doUpdateScaling = __value;
|
||||
}
|
||||
/*! \brief returns the property doUpdateScaling.
|
||||
\details Description of the parameter doUpdateScaling is: <BLOCKQUOTE>\copybrief doUpdateScaling </BLOCKQUOTE>
|
||||
\details Description of the parameter doUpdateScaling is: <BLOCKQUOTE>\copydoc doUpdateScaling </BLOCKQUOTE>
|
||||
\see doUpdateScaling for more information */
|
||||
inline virtual bool get_doUpdateScaling() const
|
||||
{
|
||||
@ -372,219 +372,219 @@ class LIB_EXPORT JKQTPCoordinateAxis: public QObject {
|
||||
void setNoAbsoluteRange();
|
||||
|
||||
/** \brief sets the property tickSpacing to the specified \a __value.
|
||||
* \details Description of the parameter tickSpacing is: <BLOCKQUOTE>\copybrief tickSpacing </BLOCKQUOTE>
|
||||
* \details Description of the parameter tickSpacing is: <BLOCKQUOTE>\copydoc tickSpacing </BLOCKQUOTE>
|
||||
* \see tickSpacing for more information */
|
||||
virtual void set_tickSpacing(double __value);
|
||||
|
||||
/** \brief sets the property axisMinWidth to the specified \a __value.
|
||||
* \details Description of the parameter tickSpacing is: <BLOCKQUOTE>\copybrief axisMinWidth </BLOCKQUOTE>
|
||||
* \details Description of the parameter tickSpacing is: <BLOCKQUOTE>\copydoc axisMinWidth </BLOCKQUOTE>
|
||||
* \see axisMinWidth for more information */
|
||||
virtual void set_axisMinWidth(double __value);
|
||||
|
||||
/** \brief sets the property autoAxisSpacing to the specified \a __value.
|
||||
* \details Description of the parameter autoAxisSpacing is: <BLOCKQUOTE>\copybrief autoAxisSpacing </BLOCKQUOTE>
|
||||
* \details Description of the parameter autoAxisSpacing is: <BLOCKQUOTE>\copydoc autoAxisSpacing </BLOCKQUOTE>
|
||||
* \see autoAxisSpacing for more information */
|
||||
virtual void set_autoAxisSpacing(bool __value);
|
||||
|
||||
/** \brief sets the property minorTickLabelsEnabled to the specified \a __value.
|
||||
* \details Description of the parameter minorTickLabelsEnabled is: <BLOCKQUOTE>\copybrief minorTickLabelsEnabled </BLOCKQUOTE>
|
||||
* \details Description of the parameter minorTickLabelsEnabled is: <BLOCKQUOTE>\copydoc minorTickLabelsEnabled </BLOCKQUOTE>
|
||||
* \see autoAxisSpacing for more information */
|
||||
virtual void set_minorTickLabelsEnabled(bool __value);
|
||||
|
||||
/** \brief sets the property logAxis to the specified \a __value.
|
||||
* \details Description of the parameter logAxis is: <BLOCKQUOTE>\copybrief logAxis </BLOCKQUOTE>
|
||||
* \details Description of the parameter logAxis is: <BLOCKQUOTE>\copydoc logAxis </BLOCKQUOTE>
|
||||
* \see logAxis for more information */
|
||||
virtual void set_logAxis(bool __value) ;
|
||||
|
||||
/** \brief sets the property logAxisBase to the specified \a __value.
|
||||
* \details Description of the parameter logAxisBase is: <BLOCKQUOTE>\copybrief logAxisBase </BLOCKQUOTE>
|
||||
* \details Description of the parameter logAxisBase is: <BLOCKQUOTE>\copydoc logAxisBase </BLOCKQUOTE>
|
||||
* \see logAxisBase for more information */
|
||||
virtual void set_logAxisBase (double __value);
|
||||
|
||||
/** \brief sets the property userTickSpacing to the specified \a __value.
|
||||
* \details Description of the parameter userTickSpacing is: <BLOCKQUOTE>\copybrief userTickSpacing </BLOCKQUOTE>
|
||||
* \details Description of the parameter userTickSpacing is: <BLOCKQUOTE>\copydoc userTickSpacing </BLOCKQUOTE>
|
||||
* \see userTickSpacing for more information */
|
||||
virtual void set_userTickSpacing (double __value);
|
||||
|
||||
/** \brief sets the property userLogTickSpacing to the specified \a __value.
|
||||
* \details Description of the parameter userLogTickSpacing is: <BLOCKQUOTE>\copybrief userLogTickSpacing </BLOCKQUOTE>
|
||||
* \details Description of the parameter userLogTickSpacing is: <BLOCKQUOTE>\copydoc userLogTickSpacing </BLOCKQUOTE>
|
||||
* \see userLogTickSpacing for more information */
|
||||
virtual void set_userLogTickSpacing (double __value);
|
||||
|
||||
/** \brief sets the property labelType to the specified \a __value.
|
||||
* \details Description of the parameter labelType is: <BLOCKQUOTE>\copybrief labelType </BLOCKQUOTE>
|
||||
* \details Description of the parameter labelType is: <BLOCKQUOTE>\copydoc labelType </BLOCKQUOTE>
|
||||
* \see labelType for more information */
|
||||
virtual void set_labelType (JKQTPCALabelType __value);
|
||||
|
||||
/** \brief sets the property tickMode to the specified \a __value.
|
||||
* \details Description of the parameter tickMode is: <BLOCKQUOTE>\copybrief tickMode </BLOCKQUOTE>
|
||||
* \details Description of the parameter tickMode is: <BLOCKQUOTE>\copydoc tickMode </BLOCKQUOTE>
|
||||
* \see tickMode for more information */
|
||||
virtual void set_tickMode (JKQTPLabelTickMode __value);
|
||||
/** \brief sets the property tickMode to the specified \a __value.
|
||||
* \details Description of the parameter tickMode is: <BLOCKQUOTE>\copybrief tickMode </BLOCKQUOTE>
|
||||
* \details Description of the parameter tickMode is: <BLOCKQUOTE>\copydoc tickMode </BLOCKQUOTE>
|
||||
* \see tickMode for more information */
|
||||
virtual void set_tickMode (int __value);
|
||||
|
||||
/** \brief sets the property axisLabel to the specified \a __value.
|
||||
* \details Description of the parameter axisLabel is: <BLOCKQUOTE>\copybrief axisLabel </BLOCKQUOTE>
|
||||
* \details Description of the parameter axisLabel is: <BLOCKQUOTE>\copydoc axisLabel </BLOCKQUOTE>
|
||||
* \see axisLabel for more information */
|
||||
virtual void set_axisLabel (QString __value);
|
||||
|
||||
/** \brief sets the property labelPosition to the specified \a __value.
|
||||
* \details Description of the parameter labelPosition is: <BLOCKQUOTE>\copybrief labelPosition </BLOCKQUOTE> */
|
||||
* \details Description of the parameter labelPosition is: <BLOCKQUOTE>\copydoc labelPosition </BLOCKQUOTE> */
|
||||
virtual void set_labelPosition (JKQTPLabelPosition __value);
|
||||
|
||||
/** \brief sets the property labelFont to the specified \a __value.
|
||||
* \details Description of the parameter labelFont is: <BLOCKQUOTE>\copybrief labelFont </BLOCKQUOTE> */
|
||||
* \details Description of the parameter labelFont is: <BLOCKQUOTE>\copydoc labelFont </BLOCKQUOTE> */
|
||||
virtual void set_labelFont (QString __value);
|
||||
|
||||
/** \brief sets the property labelFontSize to the specified \a __value.
|
||||
* \details Description of the parameter labelFontSize is: <BLOCKQUOTE>\copybrief labelFontSize </BLOCKQUOTE> */
|
||||
* \details Description of the parameter labelFontSize is: <BLOCKQUOTE>\copydoc labelFontSize </BLOCKQUOTE> */
|
||||
virtual void set_labelFontSize (double __value);
|
||||
|
||||
/** \brief sets the property tickLabelFont to the specified \a __value.
|
||||
* \details Description of the parameter tickLabelFont is: <BLOCKQUOTE>\copybrief tickLabelFont </BLOCKQUOTE> */
|
||||
* \details Description of the parameter tickLabelFont is: <BLOCKQUOTE>\copydoc tickLabelFont </BLOCKQUOTE> */
|
||||
virtual void set_tickLabelFont (QString __value);
|
||||
|
||||
|
||||
/** \brief sets the property tickTimeFormat to the specified \a __value.
|
||||
* \details Description of the parameter tickTimeFormat is: <BLOCKQUOTE>\copybrief tickTimeFormat </BLOCKQUOTE> */
|
||||
* \details Description of the parameter tickTimeFormat is: <BLOCKQUOTE>\copydoc tickTimeFormat </BLOCKQUOTE> */
|
||||
virtual void set_tickTimeFormat (QString __value);
|
||||
|
||||
|
||||
/** \brief sets the property tickDateFormat to the specified \a __value.
|
||||
* \details Description of the parameter tickDateFormat is: <BLOCKQUOTE>\copybrief tickDateFormat </BLOCKQUOTE> */
|
||||
* \details Description of the parameter tickDateFormat is: <BLOCKQUOTE>\copydoc tickDateFormat </BLOCKQUOTE> */
|
||||
virtual void set_tickDateFormat (QString __value);
|
||||
|
||||
|
||||
/** \brief sets the property tickDateTimeFormat to the specified \a __value.
|
||||
* \details Description of the parameter tickDateTimeFormat is: <BLOCKQUOTE>\copybrief tickDateTimeFormat </BLOCKQUOTE> */
|
||||
* \details Description of the parameter tickDateTimeFormat is: <BLOCKQUOTE>\copydoc tickDateTimeFormat </BLOCKQUOTE> */
|
||||
virtual void set_tickDateTimeFormat (QString __value);
|
||||
|
||||
|
||||
/** \brief sets the property tickLabelFontSize to the specified \a __value.
|
||||
* \details Description of the parameter tickLabelFontSize is: <BLOCKQUOTE>\copybrief tickLabelFontSize </BLOCKQUOTE> */
|
||||
* \details Description of the parameter tickLabelFontSize is: <BLOCKQUOTE>\copydoc tickLabelFontSize </BLOCKQUOTE> */
|
||||
virtual void set_tickLabelFontSize (double __value);
|
||||
|
||||
/** \brief sets the property minorTickLabelFontSize to the specified \a __value.
|
||||
* \details Description of the parameter minorTickLabelFontSize is: <BLOCKQUOTE>\copybrief minorTickLabelFontSize </BLOCKQUOTE> */
|
||||
* \details Description of the parameter minorTickLabelFontSize is: <BLOCKQUOTE>\copydoc minorTickLabelFontSize </BLOCKQUOTE> */
|
||||
virtual void set_minorTickLabelFontSize (double __value);
|
||||
|
||||
/** \brief sets the property minorTickLabelFullNumber to the specified \a __value.
|
||||
* \details Description of the parameter minorTickLabelFullNumber is: <BLOCKQUOTE>\copybrief minorTickLabelFullNumber </BLOCKQUOTE> */
|
||||
* \details Description of the parameter minorTickLabelFullNumber is: <BLOCKQUOTE>\copydoc minorTickLabelFullNumber </BLOCKQUOTE> */
|
||||
virtual void set_minorTickLabelFullNumber (bool __value);
|
||||
|
||||
/** \brief sets the property minTicks to the specified \a __value.
|
||||
* \details Description of the parameter minTicks is: <BLOCKQUOTE>\copybrief minTicks </BLOCKQUOTE> */
|
||||
* \details Description of the parameter minTicks is: <BLOCKQUOTE>\copydoc minTicks </BLOCKQUOTE> */
|
||||
virtual void set_minTicks(unsigned int __value);
|
||||
|
||||
/** \brief sets the property minorTicks to the specified \a __value.
|
||||
* \details Description of the parameter minorTicks is: <BLOCKQUOTE>\copybrief minorTicks </BLOCKQUOTE> */
|
||||
* \details Description of the parameter minorTicks is: <BLOCKQUOTE>\copydoc minorTicks </BLOCKQUOTE> */
|
||||
virtual void set_minorTicks (unsigned int __value);
|
||||
|
||||
/** \brief sets the property minorTicks to the specified \a __value.
|
||||
* \details Description of the parameter minorTicks is: <BLOCKQUOTE>\copybrief minorTicks </BLOCKQUOTE> */
|
||||
* \details Description of the parameter minorTicks is: <BLOCKQUOTE>\copydoc minorTicks </BLOCKQUOTE> */
|
||||
virtual void set_minorTicks (int __value);
|
||||
|
||||
/** \brief sets the property tickOutsideLength to the specified \a __value.
|
||||
* \details Description of the parameter tickOutsideLength is: <BLOCKQUOTE>\copybrief tickOutsideLength </BLOCKQUOTE> */
|
||||
* \details Description of the parameter tickOutsideLength is: <BLOCKQUOTE>\copydoc tickOutsideLength </BLOCKQUOTE> */
|
||||
virtual void set_tickOutsideLength(double __value);
|
||||
|
||||
/** \brief sets the property minorTickOutsideLength to the specified \a __value.
|
||||
* \details Description of the parameter minorTickOutsideLength is: <BLOCKQUOTE>\copybrief minorTickOutsideLength </BLOCKQUOTE> */
|
||||
* \details Description of the parameter minorTickOutsideLength is: <BLOCKQUOTE>\copydoc minorTickOutsideLength </BLOCKQUOTE> */
|
||||
virtual void set_minorTickOutsideLength (double __value);
|
||||
|
||||
/** \brief sets the property tickInsideLength to the specified \a __value.
|
||||
* \details Description of the parameter tickInsideLength is: <BLOCKQUOTE>\copybrief tickInsideLength </BLOCKQUOTE> */
|
||||
* \details Description of the parameter tickInsideLength is: <BLOCKQUOTE>\copydoc tickInsideLength </BLOCKQUOTE> */
|
||||
virtual void set_tickInsideLength(double __value);
|
||||
|
||||
/** \brief sets the property minorTickInsideLength to the specified \a __value.
|
||||
* \details Description of the parameter minorTickInsideLength is: <BLOCKQUOTE>\copybrief minorTickInsideLength </BLOCKQUOTE> */
|
||||
* \details Description of the parameter minorTickInsideLength is: <BLOCKQUOTE>\copydoc minorTickInsideLength </BLOCKQUOTE> */
|
||||
virtual void set_minorTickInsideLength (double __value);
|
||||
|
||||
/** \brief sets the property axisColor to the specified \a __value.
|
||||
* \details Description of the parameter axisColor is: <BLOCKQUOTE>\copybrief axisColor </BLOCKQUOTE> */
|
||||
* \details Description of the parameter axisColor is: <BLOCKQUOTE>\copydoc axisColor </BLOCKQUOTE> */
|
||||
virtual void set_axisColor (QColor __value);
|
||||
|
||||
/** \brief sets the property showZeroAxis to the specified \a __value.
|
||||
* \details Description of the parameter showZeroAxis is: <BLOCKQUOTE>\copybrief showZeroAxis </BLOCKQUOTE> */
|
||||
* \details Description of the parameter showZeroAxis is: <BLOCKQUOTE>\copydoc showZeroAxis </BLOCKQUOTE> */
|
||||
virtual void set_showZeroAxis(bool __value);
|
||||
|
||||
/** \brief sets the property inverted to the specified \a __value.
|
||||
* \details Description of the parameter inverted is: <BLOCKQUOTE>\copybrief inverted </BLOCKQUOTE> */
|
||||
* \details Description of the parameter inverted is: <BLOCKQUOTE>\copydoc inverted </BLOCKQUOTE> */
|
||||
virtual void set_inverted(bool __value);
|
||||
|
||||
/** \brief sets the property gridColor to the specified \a __value.
|
||||
* \details Description of the parameter gridColor is: <BLOCKQUOTE>\copybrief gridColor </BLOCKQUOTE> */
|
||||
* \details Description of the parameter gridColor is: <BLOCKQUOTE>\copydoc gridColor </BLOCKQUOTE> */
|
||||
virtual void set_gridColor(QColor __value);
|
||||
|
||||
/** \brief sets the property minorGridColor to the specified \a __value.
|
||||
* \details Description of the parameter minorGridColor is: <BLOCKQUOTE>\copybrief minorGridColor </BLOCKQUOTE> */
|
||||
* \details Description of the parameter minorGridColor is: <BLOCKQUOTE>\copydoc minorGridColor </BLOCKQUOTE> */
|
||||
virtual void set_minorGridColor(QColor __value);
|
||||
|
||||
/** \brief sets the property gridWidth to the specified \a __value.
|
||||
* \details Description of the parameter gridWidth is: <BLOCKQUOTE>\copybrief gridWidth </BLOCKQUOTE> */
|
||||
* \details Description of the parameter gridWidth is: <BLOCKQUOTE>\copydoc gridWidth </BLOCKQUOTE> */
|
||||
virtual void set_gridWidth (double __value);
|
||||
|
||||
/** \brief sets the property gridStyle to the specified \a __value.
|
||||
* \details Description of the parameter gridStyle is: <BLOCKQUOTE>\copybrief gridStyle </BLOCKQUOTE> */
|
||||
* \details Description of the parameter gridStyle is: <BLOCKQUOTE>\copydoc gridStyle </BLOCKQUOTE> */
|
||||
virtual void set_gridStyle(Qt::PenStyle __value);
|
||||
|
||||
/** \brief sets the property minorGridWidth to the specified \a __value.
|
||||
* \details Description of the parameter minorGridWidth is: <BLOCKQUOTE>\copybrief minorGridWidth </BLOCKQUOTE> */
|
||||
* \details Description of the parameter minorGridWidth is: <BLOCKQUOTE>\copydoc minorGridWidth </BLOCKQUOTE> */
|
||||
virtual void set_minorGridWidth(double __value);
|
||||
|
||||
/** \brief sets the property minorGridStyle to the specified \a __value.
|
||||
* \details Description of the parameter minorGridStyle is: <BLOCKQUOTE>\copybrief minorGridStyle </BLOCKQUOTE> */
|
||||
* \details Description of the parameter minorGridStyle is: <BLOCKQUOTE>\copydoc minorGridStyle </BLOCKQUOTE> */
|
||||
virtual void set_minorGridStyle (Qt::PenStyle __value);
|
||||
|
||||
|
||||
/** \brief sets the property drawMode1 to the specified \a __value.
|
||||
* \details Description of the parameter drawMode1 is: <BLOCKQUOTE>\copybrief drawMode1 </BLOCKQUOTE> */
|
||||
* \details Description of the parameter drawMode1 is: <BLOCKQUOTE>\copydoc drawMode1 </BLOCKQUOTE> */
|
||||
virtual void set_drawMode1 (JKQTPCADrawMode __value);
|
||||
|
||||
/** \brief sets the property drawMode2 to the specified \a __value.
|
||||
* \details Description of the parameter drawMode2 is: <BLOCKQUOTE>\copybrief drawMode2 </BLOCKQUOTE> */
|
||||
* \details Description of the parameter drawMode2 is: <BLOCKQUOTE>\copydoc drawMode2 </BLOCKQUOTE> */
|
||||
virtual void set_drawMode2(JKQTPCADrawMode __value);
|
||||
|
||||
/** \brief sets the property minorTickWidth to the specified \a __value.
|
||||
* \details Description of the parameter minorTickWidth is: <BLOCKQUOTE>\copybrief minorTickWidth </BLOCKQUOTE> */
|
||||
* \details Description of the parameter minorTickWidth is: <BLOCKQUOTE>\copydoc minorTickWidth </BLOCKQUOTE> */
|
||||
virtual void set_minorTickWidth(double __value);
|
||||
|
||||
/** \brief sets the property tickWidth to the specified \a __value.
|
||||
* \details Description of the parameter tickWidth is: <BLOCKQUOTE>\copybrief tickWidth </BLOCKQUOTE> */
|
||||
* \details Description of the parameter tickWidth is: <BLOCKQUOTE>\copydoc tickWidth </BLOCKQUOTE> */
|
||||
virtual void set_tickWidth (double __value);
|
||||
|
||||
/** \brief sets the property lineWidth to the specified \a __value.
|
||||
* \details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE> */
|
||||
* \details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE> */
|
||||
virtual void set_lineWidth (double __value);
|
||||
|
||||
/** \brief sets the property lineWidthZeroAxis to the specified \a __value.
|
||||
* \details Description of the parameter lineWidthZeroAxis is: <BLOCKQUOTE>\copybrief lineWidthZeroAxis </BLOCKQUOTE> */
|
||||
* \details Description of the parameter lineWidthZeroAxis is: <BLOCKQUOTE>\copydoc lineWidthZeroAxis </BLOCKQUOTE> */
|
||||
virtual void set_lineWidthZeroAxis (double __value);
|
||||
|
||||
/** \brief sets the property tickLabelDistance to the specified \a __value.
|
||||
* \details Description of the parameter tickLabelDistance is: <BLOCKQUOTE>\copybrief tickLabelDistance </BLOCKQUOTE> */
|
||||
* \details Description of the parameter tickLabelDistance is: <BLOCKQUOTE>\copydoc tickLabelDistance </BLOCKQUOTE> */
|
||||
virtual void set_tickLabelDistance(double __value);
|
||||
|
||||
/** \brief sets the property labelDistance to the specified \a __value.
|
||||
* \details Description of the parameter labelDistance is: <BLOCKQUOTE>\copybrief labelDistance </BLOCKQUOTE> */
|
||||
* \details Description of the parameter labelDistance is: <BLOCKQUOTE>\copydoc labelDistance </BLOCKQUOTE> */
|
||||
virtual void set_labelDistance(double __value);
|
||||
/** \brief sets the property labelDigits to the specified \a __value.
|
||||
* \details Description of the parameter labelDistance is: <BLOCKQUOTE>\copybrief labelDigits </BLOCKQUOTE> */
|
||||
* \details Description of the parameter labelDistance is: <BLOCKQUOTE>\copydoc labelDigits </BLOCKQUOTE> */
|
||||
virtual void set_labelDigits(int __value);
|
||||
|
||||
/** \brief sets the property drawGrid to the specified \a __value.
|
||||
* \details Description of the parameter drawGrid is: <BLOCKQUOTE>\copybrief drawGrid </BLOCKQUOTE> */
|
||||
* \details Description of the parameter drawGrid is: <BLOCKQUOTE>\copydoc drawGrid </BLOCKQUOTE> */
|
||||
virtual void set_drawGrid(bool __value);
|
||||
|
||||
/** \brief sets the property drawMinorGrid to the specified \a __value.
|
||||
* \details Description of the parameter drawMinorGrid is: <BLOCKQUOTE>\copybrief drawMinorGrid </BLOCKQUOTE> */
|
||||
* \details Description of the parameter drawMinorGrid is: <BLOCKQUOTE>\copydoc drawMinorGrid </BLOCKQUOTE> */
|
||||
virtual void set_drawMinorGrid(bool __value);
|
||||
|
||||
|
||||
/** \brief sets the property tickLabelAngle to the specified \a __value.
|
||||
* \details Description of the parameter tickLabelAngle is: <BLOCKQUOTE>\copybrief tickLabelAngle </BLOCKQUOTE> */
|
||||
* \details Description of the parameter tickLabelAngle is: <BLOCKQUOTE>\copydoc tickLabelAngle </BLOCKQUOTE> */
|
||||
virtual void set_tickLabelAngle(double __value);
|
||||
|
||||
protected:
|
||||
|
@ -638,42 +638,42 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
bool exportpreview(QSizeF pageSize, bool unitIsMM=false);
|
||||
|
||||
/*! \brief sets the property fontSizeMultiplier to the specified \a __value.
|
||||
\details Description of the parameter fontSizeMultiplier is: <BLOCKQUOTE>\copybrief fontSizeMultiplier </BLOCKQUOTE>
|
||||
\details Description of the parameter fontSizeMultiplier is: <BLOCKQUOTE>\copydoc fontSizeMultiplier </BLOCKQUOTE>
|
||||
\see fontSizeMultiplier for more information */
|
||||
inline virtual void set_fontSizeMultiplier(double __value)
|
||||
{
|
||||
this->fontSizeMultiplier = __value;
|
||||
}
|
||||
/*! \brief sets the property lineWidthMultiplier to the specified \a __value.
|
||||
\details Description of the parameter lineWidthMultiplier is: <BLOCKQUOTE>\copybrief lineWidthMultiplier </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidthMultiplier is: <BLOCKQUOTE>\copydoc lineWidthMultiplier </BLOCKQUOTE>
|
||||
\see lineWidthMultiplier for more information */
|
||||
inline virtual void set_lineWidthMultiplier(double __value)
|
||||
{
|
||||
this->lineWidthMultiplier = __value;
|
||||
}
|
||||
/*! \brief sets the property printMagnification to the specified \a __value.
|
||||
\details Description of the parameter printMagnification is: <BLOCKQUOTE>\copybrief printMagnification </BLOCKQUOTE>
|
||||
\details Description of the parameter printMagnification is: <BLOCKQUOTE>\copydoc printMagnification </BLOCKQUOTE>
|
||||
\see printMagnification for more information */
|
||||
inline virtual void set_printMagnification(double __value)
|
||||
{
|
||||
this->printMagnification = __value;
|
||||
}
|
||||
/*! \brief returns the property printMagnification.
|
||||
\details Description of the parameter printMagnification is: <BLOCKQUOTE>\copybrief printMagnification </BLOCKQUOTE>
|
||||
\details Description of the parameter printMagnification is: <BLOCKQUOTE>\copydoc printMagnification </BLOCKQUOTE>
|
||||
\see printMagnification for more information */
|
||||
inline virtual double get_printMagnification() const
|
||||
{
|
||||
return this->printMagnification;
|
||||
}
|
||||
/*! \brief sets the property paintMagnification to the specified \a __value.
|
||||
\details Description of the parameter paintMagnification is: <BLOCKQUOTE>\copybrief paintMagnification </BLOCKQUOTE>
|
||||
\details Description of the parameter paintMagnification is: <BLOCKQUOTE>\copydoc paintMagnification </BLOCKQUOTE>
|
||||
\see paintMagnification for more information */
|
||||
inline virtual void set_paintMagnification(double __value)
|
||||
{
|
||||
this->paintMagnification = __value;
|
||||
}
|
||||
/*! \brief returns the property paintMagnification.
|
||||
\details Description of the parameter paintMagnification is: <BLOCKQUOTE>\copybrief paintMagnification </BLOCKQUOTE>
|
||||
\details Description of the parameter paintMagnification is: <BLOCKQUOTE>\copydoc paintMagnification </BLOCKQUOTE>
|
||||
\see paintMagnification for more information */
|
||||
inline virtual double get_paintMagnification() const
|
||||
{
|
||||
@ -914,7 +914,7 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
* the lather case */
|
||||
void forceInternalDatastore();
|
||||
|
||||
/*! \brief returns the property emitSignals. \details Description of the parameter emitSignals is: <BLOCKQUOTE>\copybrief emitSignals </BLOCKQUOTE>. \see emitSignals for more information */
|
||||
/*! \brief returns the property emitSignals. \details Description of the parameter emitSignals is: <BLOCKQUOTE>\copydoc emitSignals </BLOCKQUOTE>. \see emitSignals for more information */
|
||||
inline bool get_emitSignals()const { return this->emitSignals; }
|
||||
|
||||
void set_emitSignals(bool enabled);
|
||||
@ -1137,33 +1137,33 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
void update_plot() { if (emitPlotSignals) emit plotUpdated(); }
|
||||
|
||||
/*! \brief sets the property emitPlotSignals to the specified \a __value.
|
||||
\details Description of the parameter emitPlotSignals is: <BLOCKQUOTE>\copybrief emitPlotSignals </BLOCKQUOTE>
|
||||
\details Description of the parameter emitPlotSignals is: <BLOCKQUOTE>\copydoc emitPlotSignals </BLOCKQUOTE>
|
||||
\see emitPlotSignals for more information */
|
||||
inline virtual void set_emitPlotSignals(bool __value)
|
||||
{
|
||||
this->emitPlotSignals = __value;
|
||||
}
|
||||
/*! \brief returns the property emitPlotSignals.
|
||||
\details Description of the parameter emitPlotSignals is: <BLOCKQUOTE>\copybrief emitPlotSignals </BLOCKQUOTE>
|
||||
\details Description of the parameter emitPlotSignals is: <BLOCKQUOTE>\copydoc emitPlotSignals </BLOCKQUOTE>
|
||||
\see emitPlotSignals for more information */
|
||||
inline virtual bool get_emitPlotSignals() const
|
||||
{
|
||||
return this->emitPlotSignals;
|
||||
}
|
||||
|
||||
/*! \brief returns the property plotBorderTop. \details Description of the parameter plotBorderTop is: <BLOCKQUOTE>\copybrief plotBorderTop </BLOCKQUOTE>. \see plotBorderTop for more information */
|
||||
/*! \brief returns the property plotBorderTop. \details Description of the parameter plotBorderTop is: <BLOCKQUOTE>\copydoc plotBorderTop </BLOCKQUOTE>. \see plotBorderTop for more information */
|
||||
inline int get_plotBorderTop() const { return this->plotBorderTop; }
|
||||
/*! \brief returns the property plotBorderLeft. \details Description of the parameter plotBorderLeft is: <BLOCKQUOTE>\copybrief plotBorderLeft </BLOCKQUOTE>. \see plotBorderLeft for more information */
|
||||
/*! \brief returns the property plotBorderLeft. \details Description of the parameter plotBorderLeft is: <BLOCKQUOTE>\copydoc plotBorderLeft </BLOCKQUOTE>. \see plotBorderLeft for more information */
|
||||
inline int get_plotBorderLeft() const { return this->plotBorderLeft; }
|
||||
/*! \brief returns the property plotBorderBottom. \details Description of the parameter plotBorderBottom is: <BLOCKQUOTE>\copybrief plotBorderBottom </BLOCKQUOTE>. \see plotBorderBottom for more information */
|
||||
/*! \brief returns the property plotBorderBottom. \details Description of the parameter plotBorderBottom is: <BLOCKQUOTE>\copydoc plotBorderBottom </BLOCKQUOTE>. \see plotBorderBottom for more information */
|
||||
inline int get_plotBorderBottom() const { return this->plotBorderBottom; }
|
||||
/*! \brief returns the property plotBorderRight. \details Description of the parameter plotBorderRight is: <BLOCKQUOTE>\copybrief plotBorderRight </BLOCKQUOTE>. \see plotBorderRight for more information */
|
||||
/*! \brief returns the property plotBorderRight. \details Description of the parameter plotBorderRight is: <BLOCKQUOTE>\copydoc plotBorderRight </BLOCKQUOTE>. \see plotBorderRight for more information */
|
||||
inline int get_plotBorderRight() const { return this->plotBorderRight; }
|
||||
|
||||
/*! \brief returns the property maintainAspectRatio. \details Description of the parameter maintainAspectRatio is: <BLOCKQUOTE>\copybrief maintainAspectRatio </BLOCKQUOTE>. \see maintainAspectRatio for more information */
|
||||
/*! \brief returns the property maintainAspectRatio. \details Description of the parameter maintainAspectRatio is: <BLOCKQUOTE>\copydoc maintainAspectRatio </BLOCKQUOTE>. \see maintainAspectRatio for more information */
|
||||
inline bool get_maintainAspectRatio() const { return this->maintainAspectRatio; }
|
||||
/*! \brief sets the property aspectRatio to the specified \a __value.
|
||||
\details Description of the parameter aspectRatio is: <BLOCKQUOTE>\copybrief aspectRatio </BLOCKQUOTE>
|
||||
\details Description of the parameter aspectRatio is: <BLOCKQUOTE>\copydoc aspectRatio </BLOCKQUOTE>
|
||||
\see aspectRatio for more information */
|
||||
inline virtual void set_aspectRatio(double __value)
|
||||
{
|
||||
@ -1173,17 +1173,17 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property aspectRatio.
|
||||
\details Description of the parameter aspectRatio is: <BLOCKQUOTE>\copybrief aspectRatio </BLOCKQUOTE>
|
||||
\details Description of the parameter aspectRatio is: <BLOCKQUOTE>\copydoc aspectRatio </BLOCKQUOTE>
|
||||
\see aspectRatio for more information */
|
||||
inline virtual double get_aspectRatio() const
|
||||
{
|
||||
return this->aspectRatio;
|
||||
}
|
||||
|
||||
/*! \brief returns the property maintainAxisAspectRatio. \details Description of the parameter maintainAxisAspectRatio is: <BLOCKQUOTE>\copybrief maintainAxisAspectRatio </BLOCKQUOTE>. \see maintainAxisAspectRatio for more information */
|
||||
/*! \brief returns the property maintainAxisAspectRatio. \details Description of the parameter maintainAxisAspectRatio is: <BLOCKQUOTE>\copydoc maintainAxisAspectRatio </BLOCKQUOTE>. \see maintainAxisAspectRatio for more information */
|
||||
inline bool get_maintainAxisAspectRatio() const { return this->maintainAxisAspectRatio; }
|
||||
/*! \brief sets the property axisAspectRatio to the specified \a __value.
|
||||
\details Description of the parameter axisAspectRatio is: <BLOCKQUOTE>\copybrief axisAspectRatio </BLOCKQUOTE>
|
||||
\details Description of the parameter axisAspectRatio is: <BLOCKQUOTE>\copydoc axisAspectRatio </BLOCKQUOTE>
|
||||
\see axisAspectRatio for more information */
|
||||
inline virtual void set_axisAspectRatio(double __value)
|
||||
{
|
||||
@ -1193,7 +1193,7 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property axisAspectRatio.
|
||||
\details Description of the parameter axisAspectRatio is: <BLOCKQUOTE>\copybrief axisAspectRatio </BLOCKQUOTE>
|
||||
\details Description of the parameter axisAspectRatio is: <BLOCKQUOTE>\copydoc axisAspectRatio </BLOCKQUOTE>
|
||||
\see axisAspectRatio for more information */
|
||||
inline virtual double get_axisAspectRatio() const
|
||||
{
|
||||
@ -1201,7 +1201,7 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
|
||||
/*! \brief sets the property useAntiAliasingForSystem to the specified \a __value.
|
||||
\details Description of the parameter useAntiAliasingForSystem is: <BLOCKQUOTE>\copybrief useAntiAliasingForSystem </BLOCKQUOTE>
|
||||
\details Description of the parameter useAntiAliasingForSystem is: <BLOCKQUOTE>\copydoc useAntiAliasingForSystem </BLOCKQUOTE>
|
||||
\see useAntiAliasingForSystem for more information */
|
||||
inline virtual void set_useAntiAliasingForSystem(bool __value)
|
||||
{
|
||||
@ -1211,14 +1211,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property useAntiAliasingForSystem.
|
||||
\details Description of the parameter useAntiAliasingForSystem is: <BLOCKQUOTE>\copybrief useAntiAliasingForSystem </BLOCKQUOTE>
|
||||
\details Description of the parameter useAntiAliasingForSystem is: <BLOCKQUOTE>\copydoc useAntiAliasingForSystem </BLOCKQUOTE>
|
||||
\see useAntiAliasingForSystem for more information */
|
||||
inline virtual bool get_useAntiAliasingForSystem() const
|
||||
{
|
||||
return this->useAntiAliasingForSystem;
|
||||
}
|
||||
/*! \brief sets the property useAntiAliasingForGraphs to the specified \a __value.
|
||||
\details Description of the parameter useAntiAliasingForGraphs is: <BLOCKQUOTE>\copybrief useAntiAliasingForGraphs </BLOCKQUOTE>
|
||||
\details Description of the parameter useAntiAliasingForGraphs is: <BLOCKQUOTE>\copydoc useAntiAliasingForGraphs </BLOCKQUOTE>
|
||||
\see useAntiAliasingForGraphs for more information */
|
||||
inline virtual void set_useAntiAliasingForGraphs(bool __value)
|
||||
{
|
||||
@ -1228,14 +1228,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property useAntiAliasingForGraphs.
|
||||
\details Description of the parameter useAntiAliasingForGraphs is: <BLOCKQUOTE>\copybrief useAntiAliasingForGraphs </BLOCKQUOTE>
|
||||
\details Description of the parameter useAntiAliasingForGraphs is: <BLOCKQUOTE>\copydoc useAntiAliasingForGraphs </BLOCKQUOTE>
|
||||
\see useAntiAliasingForGraphs for more information */
|
||||
inline virtual bool get_useAntiAliasingForGraphs() const
|
||||
{
|
||||
return this->useAntiAliasingForGraphs;
|
||||
}
|
||||
/*! \brief sets the property useAntiAliasingForText to the specified \a __value.
|
||||
\details Description of the parameter useAntiAliasingForText is: <BLOCKQUOTE>\copybrief useAntiAliasingForText </BLOCKQUOTE>
|
||||
\details Description of the parameter useAntiAliasingForText is: <BLOCKQUOTE>\copydoc useAntiAliasingForText </BLOCKQUOTE>
|
||||
\see useAntiAliasingForText for more information */
|
||||
inline virtual void set_useAntiAliasingForText(bool __value)
|
||||
{
|
||||
@ -1245,7 +1245,7 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property useAntiAliasingForText.
|
||||
\details Description of the parameter useAntiAliasingForText is: <BLOCKQUOTE>\copybrief useAntiAliasingForText </BLOCKQUOTE>
|
||||
\details Description of the parameter useAntiAliasingForText is: <BLOCKQUOTE>\copydoc useAntiAliasingForText </BLOCKQUOTE>
|
||||
\see useAntiAliasingForText for more information */
|
||||
inline virtual bool get_useAntiAliasingForText() const
|
||||
{
|
||||
@ -1253,7 +1253,7 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
|
||||
/*! \brief sets the property graphColor to the specified \a __value.
|
||||
\details Description of the parameter graphColor is: <BLOCKQUOTE>\copybrief graphColor </BLOCKQUOTE>
|
||||
\details Description of the parameter graphColor is: <BLOCKQUOTE>\copydoc graphColor </BLOCKQUOTE>
|
||||
\see graphColor for more information */
|
||||
inline virtual void set_graphColor(const QColor & __value)
|
||||
{
|
||||
@ -1263,14 +1263,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property graphColor.
|
||||
\details Description of the parameter graphColor is: <BLOCKQUOTE>\copybrief graphColor </BLOCKQUOTE>
|
||||
\details Description of the parameter graphColor is: <BLOCKQUOTE>\copydoc graphColor </BLOCKQUOTE>
|
||||
\see graphColor for more information */
|
||||
inline virtual QColor get_graphColor() const
|
||||
{
|
||||
return this->graphColor;
|
||||
}
|
||||
/*! \brief sets the property graphWidth to the specified \a __value.
|
||||
\details Description of the parameter graphWidth is: <BLOCKQUOTE>\copybrief graphWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter graphWidth is: <BLOCKQUOTE>\copydoc graphWidth </BLOCKQUOTE>
|
||||
\see graphWidth for more information */
|
||||
inline virtual void set_graphWidth(double __value)
|
||||
{
|
||||
@ -1280,7 +1280,7 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property graphWidth.
|
||||
\details Description of the parameter graphWidth is: <BLOCKQUOTE>\copybrief graphWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter graphWidth is: <BLOCKQUOTE>\copydoc graphWidth </BLOCKQUOTE>
|
||||
\see graphWidth for more information */
|
||||
inline virtual double get_graphWidth() const
|
||||
{
|
||||
@ -1288,7 +1288,7 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
|
||||
/*! \brief sets the property backgroundColor to the specified \a __value.
|
||||
\details Description of the parameter backgroundColor is: <BLOCKQUOTE>\copybrief backgroundColor </BLOCKQUOTE>
|
||||
\details Description of the parameter backgroundColor is: <BLOCKQUOTE>\copydoc backgroundColor </BLOCKQUOTE>
|
||||
\see backgroundColor for more information */
|
||||
inline virtual void set_backgroundColor(const QColor & __value)
|
||||
{
|
||||
@ -1298,14 +1298,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property backgroundColor.
|
||||
\details Description of the parameter backgroundColor is: <BLOCKQUOTE>\copybrief backgroundColor </BLOCKQUOTE>
|
||||
\details Description of the parameter backgroundColor is: <BLOCKQUOTE>\copydoc backgroundColor </BLOCKQUOTE>
|
||||
\see backgroundColor for more information */
|
||||
inline virtual QColor get_backgroundColor() const
|
||||
{
|
||||
return this->backgroundColor;
|
||||
}
|
||||
/*! \brief sets the property exportBackgroundColor to the specified \a __value.
|
||||
\details Description of the parameter exportBackgroundColor is: <BLOCKQUOTE>\copybrief exportBackgroundColor </BLOCKQUOTE>
|
||||
\details Description of the parameter exportBackgroundColor is: <BLOCKQUOTE>\copydoc exportBackgroundColor </BLOCKQUOTE>
|
||||
\see exportBackgroundColor for more information */
|
||||
inline virtual void set_exportBackgroundColor(const QColor & __value)
|
||||
{
|
||||
@ -1315,14 +1315,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property exportBackgroundColor.
|
||||
\details Description of the parameter exportBackgroundColor is: <BLOCKQUOTE>\copybrief exportBackgroundColor </BLOCKQUOTE>
|
||||
\details Description of the parameter exportBackgroundColor is: <BLOCKQUOTE>\copydoc exportBackgroundColor </BLOCKQUOTE>
|
||||
\see exportBackgroundColor for more information */
|
||||
inline virtual QColor get_exportBackgroundColor() const
|
||||
{
|
||||
return this->exportBackgroundColor;
|
||||
}
|
||||
/*! \brief sets the property plotBackgroundColor to the specified \a __value.
|
||||
\details Description of the parameter plotBackgroundColor is: <BLOCKQUOTE>\copybrief plotBackgroundColor </BLOCKQUOTE>
|
||||
\details Description of the parameter plotBackgroundColor is: <BLOCKQUOTE>\copydoc plotBackgroundColor </BLOCKQUOTE>
|
||||
\see plotBackgroundColor for more information */
|
||||
inline virtual void set_plotBackgroundColor(const QColor & __value)
|
||||
{
|
||||
@ -1332,7 +1332,7 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property plotBackgroundColor.
|
||||
\details Description of the parameter plotBackgroundColor is: <BLOCKQUOTE>\copybrief plotBackgroundColor </BLOCKQUOTE>
|
||||
\details Description of the parameter plotBackgroundColor is: <BLOCKQUOTE>\copydoc plotBackgroundColor </BLOCKQUOTE>
|
||||
\see plotBackgroundColor for more information */
|
||||
inline virtual QColor get_plotBackgroundColor() const
|
||||
{
|
||||
@ -1340,7 +1340,7 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
|
||||
/*! \brief sets the property keyFont to the specified \a __value.
|
||||
\details Description of the parameter keyFont is: <BLOCKQUOTE>\copybrief keyFont </BLOCKQUOTE>
|
||||
\details Description of the parameter keyFont is: <BLOCKQUOTE>\copydoc keyFont </BLOCKQUOTE>
|
||||
\see keyFont for more information */
|
||||
inline virtual void set_keyFont(const QString & __value)
|
||||
{
|
||||
@ -1350,14 +1350,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property keyFont.
|
||||
\details Description of the parameter keyFont is: <BLOCKQUOTE>\copybrief keyFont </BLOCKQUOTE>
|
||||
\details Description of the parameter keyFont is: <BLOCKQUOTE>\copydoc keyFont </BLOCKQUOTE>
|
||||
\see keyFont for more information */
|
||||
inline virtual QString get_keyFont() const
|
||||
{
|
||||
return this->keyFont;
|
||||
}
|
||||
/*! \brief sets the property keyFontSize to the specified \a __value.
|
||||
\details Description of the parameter keyFontSize is: <BLOCKQUOTE>\copybrief keyFontSize </BLOCKQUOTE>
|
||||
\details Description of the parameter keyFontSize is: <BLOCKQUOTE>\copydoc keyFontSize </BLOCKQUOTE>
|
||||
\see keyFontSize for more information */
|
||||
inline virtual void set_keyFontSize(double __value)
|
||||
{
|
||||
@ -1367,14 +1367,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property keyFontSize.
|
||||
\details Description of the parameter keyFontSize is: <BLOCKQUOTE>\copybrief keyFontSize </BLOCKQUOTE>
|
||||
\details Description of the parameter keyFontSize is: <BLOCKQUOTE>\copydoc keyFontSize </BLOCKQUOTE>
|
||||
\see keyFontSize for more information */
|
||||
inline virtual double get_keyFontSize() const
|
||||
{
|
||||
return this->keyFontSize;
|
||||
}
|
||||
/*! \brief sets the property key_item_width to the specified \a __value.
|
||||
\details Description of the parameter key_item_width is: <BLOCKQUOTE>\copybrief key_item_width </BLOCKQUOTE>
|
||||
\details Description of the parameter key_item_width is: <BLOCKQUOTE>\copydoc key_item_width </BLOCKQUOTE>
|
||||
\see key_item_width for more information */
|
||||
inline virtual void set_key_item_width(double __value)
|
||||
{
|
||||
@ -1384,14 +1384,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property key_item_width.
|
||||
\details Description of the parameter key_item_width is: <BLOCKQUOTE>\copybrief key_item_width </BLOCKQUOTE>
|
||||
\details Description of the parameter key_item_width is: <BLOCKQUOTE>\copydoc key_item_width </BLOCKQUOTE>
|
||||
\see key_item_width for more information */
|
||||
inline virtual double get_key_item_width() const
|
||||
{
|
||||
return this->key_item_width;
|
||||
}
|
||||
/*! \brief sets the property key_item_height to the specified \a __value.
|
||||
\details Description of the parameter key_item_height is: <BLOCKQUOTE>\copybrief key_item_height </BLOCKQUOTE>
|
||||
\details Description of the parameter key_item_height is: <BLOCKQUOTE>\copydoc key_item_height </BLOCKQUOTE>
|
||||
\see key_item_height for more information */
|
||||
inline virtual void set_key_item_height(double __value)
|
||||
{
|
||||
@ -1401,14 +1401,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property key_item_height.
|
||||
\details Description of the parameter key_item_height is: <BLOCKQUOTE>\copybrief key_item_height </BLOCKQUOTE>
|
||||
\details Description of the parameter key_item_height is: <BLOCKQUOTE>\copydoc key_item_height </BLOCKQUOTE>
|
||||
\see key_item_height for more information */
|
||||
inline virtual double get_key_item_height() const
|
||||
{
|
||||
return this->key_item_height;
|
||||
}
|
||||
/*! \brief sets the property keyYSeparation to the specified \a __value.
|
||||
\details Description of the parameter keyYSeparation is: <BLOCKQUOTE>\copybrief keyYSeparation </BLOCKQUOTE>
|
||||
\details Description of the parameter keyYSeparation is: <BLOCKQUOTE>\copydoc keyYSeparation </BLOCKQUOTE>
|
||||
\see keyYSeparation for more information */
|
||||
inline virtual void set_keyYSeparation(double __value)
|
||||
{
|
||||
@ -1418,14 +1418,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property keyYSeparation.
|
||||
\details Description of the parameter keyYSeparation is: <BLOCKQUOTE>\copybrief keyYSeparation </BLOCKQUOTE>
|
||||
\details Description of the parameter keyYSeparation is: <BLOCKQUOTE>\copydoc keyYSeparation </BLOCKQUOTE>
|
||||
\see keyYSeparation for more information */
|
||||
inline virtual double get_keyYSeparation() const
|
||||
{
|
||||
return this->keyYSeparation;
|
||||
}
|
||||
/*! \brief sets the property key_line_length to the specified \a __value.
|
||||
\details Description of the parameter key_line_length is: <BLOCKQUOTE>\copybrief key_line_length </BLOCKQUOTE>
|
||||
\details Description of the parameter key_line_length is: <BLOCKQUOTE>\copydoc key_line_length </BLOCKQUOTE>
|
||||
\see key_line_length for more information */
|
||||
inline virtual void set_key_line_length(double __value)
|
||||
{
|
||||
@ -1435,14 +1435,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property key_line_length.
|
||||
\details Description of the parameter key_line_length is: <BLOCKQUOTE>\copybrief key_line_length </BLOCKQUOTE>
|
||||
\details Description of the parameter key_line_length is: <BLOCKQUOTE>\copydoc key_line_length </BLOCKQUOTE>
|
||||
\see key_line_length for more information */
|
||||
inline virtual double get_key_line_length() const
|
||||
{
|
||||
return this->key_line_length;
|
||||
}
|
||||
/*! \brief sets the property keyXMargin to the specified \a __value.
|
||||
\details Description of the parameter keyXMargin is: <BLOCKQUOTE>\copybrief keyXMargin </BLOCKQUOTE>
|
||||
\details Description of the parameter keyXMargin is: <BLOCKQUOTE>\copydoc keyXMargin </BLOCKQUOTE>
|
||||
\see keyXMargin for more information */
|
||||
inline virtual void set_keyXMargin(double __value)
|
||||
{
|
||||
@ -1452,14 +1452,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property keyXMargin.
|
||||
\details Description of the parameter keyXMargin is: <BLOCKQUOTE>\copybrief keyXMargin </BLOCKQUOTE>
|
||||
\details Description of the parameter keyXMargin is: <BLOCKQUOTE>\copydoc keyXMargin </BLOCKQUOTE>
|
||||
\see keyXMargin for more information */
|
||||
inline virtual double get_keyXMargin() const
|
||||
{
|
||||
return this->keyXMargin;
|
||||
}
|
||||
/*! \brief sets the property keyYMargin to the specified \a __value.
|
||||
\details Description of the parameter keyYMargin is: <BLOCKQUOTE>\copybrief keyYMargin </BLOCKQUOTE>
|
||||
\details Description of the parameter keyYMargin is: <BLOCKQUOTE>\copydoc keyYMargin </BLOCKQUOTE>
|
||||
\see keyYMargin for more information */
|
||||
inline virtual void set_keyYMargin(double __value)
|
||||
{
|
||||
@ -1469,14 +1469,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property keyYMargin.
|
||||
\details Description of the parameter keyYMargin is: <BLOCKQUOTE>\copybrief keyYMargin </BLOCKQUOTE>
|
||||
\details Description of the parameter keyYMargin is: <BLOCKQUOTE>\copydoc keyYMargin </BLOCKQUOTE>
|
||||
\see keyYMargin for more information */
|
||||
inline virtual double get_keyYMargin() const
|
||||
{
|
||||
return this->keyYMargin;
|
||||
}
|
||||
/*! \brief sets the property keyXSeparation to the specified \a __value.
|
||||
\details Description of the parameter keyXSeparation is: <BLOCKQUOTE>\copybrief keyXSeparation </BLOCKQUOTE>
|
||||
\details Description of the parameter keyXSeparation is: <BLOCKQUOTE>\copydoc keyXSeparation </BLOCKQUOTE>
|
||||
\see keyXSeparation for more information */
|
||||
inline virtual void set_keyXSeparation(double __value)
|
||||
{
|
||||
@ -1486,7 +1486,7 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property keyXSeparation.
|
||||
\details Description of the parameter keyXSeparation is: <BLOCKQUOTE>\copybrief keyXSeparation </BLOCKQUOTE>
|
||||
\details Description of the parameter keyXSeparation is: <BLOCKQUOTE>\copydoc keyXSeparation </BLOCKQUOTE>
|
||||
\see keyXSeparation for more information */
|
||||
inline virtual double get_keyXSeparation() const
|
||||
{
|
||||
@ -1494,7 +1494,7 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
|
||||
/*! \brief sets the property keyXOffset to the specified \a __value.
|
||||
\details Description of the parameter keyXOffset is: <BLOCKQUOTE>\copybrief keyXOffset </BLOCKQUOTE>
|
||||
\details Description of the parameter keyXOffset is: <BLOCKQUOTE>\copydoc keyXOffset </BLOCKQUOTE>
|
||||
\see keyXOffset for more information */
|
||||
inline virtual void set_keyXOffset(double __value)
|
||||
{
|
||||
@ -1504,14 +1504,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property keyXOffset.
|
||||
\details Description of the parameter keyXOffset is: <BLOCKQUOTE>\copybrief keyXOffset </BLOCKQUOTE>
|
||||
\details Description of the parameter keyXOffset is: <BLOCKQUOTE>\copydoc keyXOffset </BLOCKQUOTE>
|
||||
\see keyXOffset for more information */
|
||||
inline virtual double get_keyXOffset() const
|
||||
{
|
||||
return this->keyXOffset;
|
||||
}
|
||||
/*! \brief sets the property keyYOffset to the specified \a __value.
|
||||
\details Description of the parameter keyYOffset is: <BLOCKQUOTE>\copybrief keyYOffset </BLOCKQUOTE>
|
||||
\details Description of the parameter keyYOffset is: <BLOCKQUOTE>\copydoc keyYOffset </BLOCKQUOTE>
|
||||
\see keyYOffset for more information */
|
||||
inline virtual void set_keyYOffset(double __value)
|
||||
{
|
||||
@ -1521,14 +1521,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property keyYOffset.
|
||||
\details Description of the parameter keyYOffset is: <BLOCKQUOTE>\copybrief keyYOffset </BLOCKQUOTE>
|
||||
\details Description of the parameter keyYOffset is: <BLOCKQUOTE>\copydoc keyYOffset </BLOCKQUOTE>
|
||||
\see keyYOffset for more information */
|
||||
inline virtual double get_keyYOffset() const
|
||||
{
|
||||
return this->keyYOffset;
|
||||
}
|
||||
/*! \brief sets the property showKey to the specified \a __value.
|
||||
\details Description of the parameter showKey is: <BLOCKQUOTE>\copybrief showKey </BLOCKQUOTE>
|
||||
\details Description of the parameter showKey is: <BLOCKQUOTE>\copydoc showKey </BLOCKQUOTE>
|
||||
\see showKey for more information */
|
||||
inline virtual void set_showKey(bool __value)
|
||||
{
|
||||
@ -1538,14 +1538,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property showKey.
|
||||
\details Description of the parameter showKey is: <BLOCKQUOTE>\copybrief showKey </BLOCKQUOTE>
|
||||
\details Description of the parameter showKey is: <BLOCKQUOTE>\copydoc showKey </BLOCKQUOTE>
|
||||
\see showKey for more information */
|
||||
inline virtual bool get_showKey() const
|
||||
{
|
||||
return this->showKey;
|
||||
}
|
||||
/*! \brief sets the property showKeyFrame to the specified \a __value.
|
||||
\details Description of the parameter showKeyFrame is: <BLOCKQUOTE>\copybrief showKeyFrame </BLOCKQUOTE>
|
||||
\details Description of the parameter showKeyFrame is: <BLOCKQUOTE>\copydoc showKeyFrame </BLOCKQUOTE>
|
||||
\see showKeyFrame for more information */
|
||||
inline virtual void set_showKeyFrame(bool __value)
|
||||
{
|
||||
@ -1555,14 +1555,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property showKeyFrame.
|
||||
\details Description of the parameter showKeyFrame is: <BLOCKQUOTE>\copybrief showKeyFrame </BLOCKQUOTE>
|
||||
\details Description of the parameter showKeyFrame is: <BLOCKQUOTE>\copydoc showKeyFrame </BLOCKQUOTE>
|
||||
\see showKeyFrame for more information */
|
||||
inline virtual bool get_showKeyFrame() const
|
||||
{
|
||||
return this->showKeyFrame;
|
||||
}
|
||||
/*! \brief sets the property keyFrameColor to the specified \a __value.
|
||||
\details Description of the parameter keyFrameColor is: <BLOCKQUOTE>\copybrief keyFrameColor </BLOCKQUOTE>
|
||||
\details Description of the parameter keyFrameColor is: <BLOCKQUOTE>\copydoc keyFrameColor </BLOCKQUOTE>
|
||||
\see keyFrameColor for more information */
|
||||
inline virtual void set_keyFrameColor(const QColor & __value)
|
||||
{
|
||||
@ -1572,14 +1572,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property keyFrameColor.
|
||||
\details Description of the parameter keyFrameColor is: <BLOCKQUOTE>\copybrief keyFrameColor </BLOCKQUOTE>
|
||||
\details Description of the parameter keyFrameColor is: <BLOCKQUOTE>\copydoc keyFrameColor </BLOCKQUOTE>
|
||||
\see keyFrameColor for more information */
|
||||
inline virtual QColor get_keyFrameColor() const
|
||||
{
|
||||
return this->keyFrameColor;
|
||||
}
|
||||
/*! \brief sets the property keyBackgroundColor to the specified \a __value.
|
||||
\details Description of the parameter keyBackgroundColor is: <BLOCKQUOTE>\copybrief keyBackgroundColor </BLOCKQUOTE>
|
||||
\details Description of the parameter keyBackgroundColor is: <BLOCKQUOTE>\copydoc keyBackgroundColor </BLOCKQUOTE>
|
||||
\see keyBackgroundColor for more information */
|
||||
inline virtual void set_keyBackgroundColor(const QColor & __value)
|
||||
{
|
||||
@ -1589,14 +1589,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property keyBackgroundColor.
|
||||
\details Description of the parameter keyBackgroundColor is: <BLOCKQUOTE>\copybrief keyBackgroundColor </BLOCKQUOTE>
|
||||
\details Description of the parameter keyBackgroundColor is: <BLOCKQUOTE>\copydoc keyBackgroundColor </BLOCKQUOTE>
|
||||
\see keyBackgroundColor for more information */
|
||||
inline virtual QColor get_keyBackgroundColor() const
|
||||
{
|
||||
return this->keyBackgroundColor;
|
||||
}
|
||||
/*! \brief sets the property keyFrameWidth to the specified \a __value.
|
||||
\details Description of the parameter keyFrameWidth is: <BLOCKQUOTE>\copybrief keyFrameWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter keyFrameWidth is: <BLOCKQUOTE>\copydoc keyFrameWidth </BLOCKQUOTE>
|
||||
\see keyFrameWidth for more information */
|
||||
inline virtual void set_keyFrameWidth(double __value)
|
||||
{
|
||||
@ -1606,14 +1606,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property keyFrameWidth.
|
||||
\details Description of the parameter keyFrameWidth is: <BLOCKQUOTE>\copybrief keyFrameWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter keyFrameWidth is: <BLOCKQUOTE>\copydoc keyFrameWidth </BLOCKQUOTE>
|
||||
\see keyFrameWidth for more information */
|
||||
inline virtual double get_keyFrameWidth() const
|
||||
{
|
||||
return this->keyFrameWidth;
|
||||
}
|
||||
/*! \brief sets the property keyAutosize to the specified \a __value.
|
||||
\details Description of the parameter keyAutosize is: <BLOCKQUOTE>\copybrief keyAutosize </BLOCKQUOTE>
|
||||
\details Description of the parameter keyAutosize is: <BLOCKQUOTE>\copydoc keyAutosize </BLOCKQUOTE>
|
||||
\see keyAutosize for more information */
|
||||
inline virtual void set_keyAutosize(bool __value)
|
||||
{
|
||||
@ -1623,14 +1623,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property keyAutosize.
|
||||
\details Description of the parameter keyAutosize is: <BLOCKQUOTE>\copybrief keyAutosize </BLOCKQUOTE>
|
||||
\details Description of the parameter keyAutosize is: <BLOCKQUOTE>\copydoc keyAutosize </BLOCKQUOTE>
|
||||
\see keyAutosize for more information */
|
||||
inline virtual bool get_keyAutosize() const
|
||||
{
|
||||
return this->keyAutosize;
|
||||
}
|
||||
/*! \brief sets the property keyPosition to the specified \a __value.
|
||||
\details Description of the parameter keyPosition is: <BLOCKQUOTE>\copybrief keyPosition </BLOCKQUOTE>
|
||||
\details Description of the parameter keyPosition is: <BLOCKQUOTE>\copydoc keyPosition </BLOCKQUOTE>
|
||||
\see keyPosition for more information */
|
||||
inline virtual void set_keyPosition(const JKQTPKeyPosition & __value)
|
||||
{
|
||||
@ -1640,14 +1640,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property keyPosition.
|
||||
\details Description of the parameter keyPosition is: <BLOCKQUOTE>\copybrief keyPosition </BLOCKQUOTE>
|
||||
\details Description of the parameter keyPosition is: <BLOCKQUOTE>\copydoc keyPosition </BLOCKQUOTE>
|
||||
\see keyPosition for more information */
|
||||
inline virtual JKQTPKeyPosition get_keyPosition() const
|
||||
{
|
||||
return this->keyPosition;
|
||||
}
|
||||
/*! \brief sets the property keyLayout to the specified \a __value.
|
||||
\details Description of the parameter keyLayout is: <BLOCKQUOTE>\copybrief keyLayout </BLOCKQUOTE>
|
||||
\details Description of the parameter keyLayout is: <BLOCKQUOTE>\copydoc keyLayout </BLOCKQUOTE>
|
||||
\see keyLayout for more information */
|
||||
inline virtual void set_keyLayout(const JKQTPKeyLayout & __value)
|
||||
{
|
||||
@ -1657,7 +1657,7 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property keyLayout.
|
||||
\details Description of the parameter keyLayout is: <BLOCKQUOTE>\copybrief keyLayout </BLOCKQUOTE>
|
||||
\details Description of the parameter keyLayout is: <BLOCKQUOTE>\copydoc keyLayout </BLOCKQUOTE>
|
||||
\see keyLayout for more information */
|
||||
inline virtual JKQTPKeyLayout get_keyLayout() const
|
||||
{
|
||||
@ -1665,7 +1665,7 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
|
||||
/*! \brief sets the property plotLabelFontSize to the specified \a __value.
|
||||
\details Description of the parameter plotLabelFontSize is: <BLOCKQUOTE>\copybrief plotLabelFontSize </BLOCKQUOTE>
|
||||
\details Description of the parameter plotLabelFontSize is: <BLOCKQUOTE>\copydoc plotLabelFontSize </BLOCKQUOTE>
|
||||
\see plotLabelFontSize for more information */
|
||||
inline virtual void set_plotLabelFontSize(double __value)
|
||||
{
|
||||
@ -1675,14 +1675,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property plotLabelFontSize.
|
||||
\details Description of the parameter plotLabelFontSize is: <BLOCKQUOTE>\copybrief plotLabelFontSize </BLOCKQUOTE>
|
||||
\details Description of the parameter plotLabelFontSize is: <BLOCKQUOTE>\copydoc plotLabelFontSize </BLOCKQUOTE>
|
||||
\see plotLabelFontSize for more information */
|
||||
inline virtual double get_plotLabelFontSize() const
|
||||
{
|
||||
return this->plotLabelFontSize;
|
||||
}
|
||||
/*! \brief sets the property plotLabelFontname to the specified \a __value.
|
||||
\details Description of the parameter plotLabelFontname is: <BLOCKQUOTE>\copybrief plotLabelFontname </BLOCKQUOTE>
|
||||
\details Description of the parameter plotLabelFontname is: <BLOCKQUOTE>\copydoc plotLabelFontname </BLOCKQUOTE>
|
||||
\see plotLabelFontname for more information */
|
||||
inline virtual void set_plotLabelFontname(const QString & __value)
|
||||
{
|
||||
@ -1692,14 +1692,14 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property plotLabelFontname.
|
||||
\details Description of the parameter plotLabelFontname is: <BLOCKQUOTE>\copybrief plotLabelFontname </BLOCKQUOTE>
|
||||
\details Description of the parameter plotLabelFontname is: <BLOCKQUOTE>\copydoc plotLabelFontname </BLOCKQUOTE>
|
||||
\see plotLabelFontname for more information */
|
||||
inline virtual QString get_plotLabelFontname() const
|
||||
{
|
||||
return this->plotLabelFontname;
|
||||
}
|
||||
/*! \brief sets the property plotLabel to the specified \a __value.
|
||||
\details Description of the parameter plotLabel is: <BLOCKQUOTE>\copybrief plotLabel </BLOCKQUOTE>
|
||||
\details Description of the parameter plotLabel is: <BLOCKQUOTE>\copydoc plotLabel </BLOCKQUOTE>
|
||||
\see plotLabel for more information */
|
||||
inline virtual void set_plotLabel(const QString & __value)
|
||||
{
|
||||
@ -1709,7 +1709,7 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property plotLabel.
|
||||
\details Description of the parameter plotLabel is: <BLOCKQUOTE>\copybrief plotLabel </BLOCKQUOTE>
|
||||
\details Description of the parameter plotLabel is: <BLOCKQUOTE>\copydoc plotLabel </BLOCKQUOTE>
|
||||
\see plotLabel for more information */
|
||||
inline virtual QString get_plotLabel() const
|
||||
{
|
||||
@ -1717,115 +1717,115 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
|
||||
/*! \brief sets the property gridPrinting to the specified \a __value.
|
||||
\details Description of the parameter gridPrinting is: <BLOCKQUOTE>\copybrief gridPrinting </BLOCKQUOTE>
|
||||
\details Description of the parameter gridPrinting is: <BLOCKQUOTE>\copydoc gridPrinting </BLOCKQUOTE>
|
||||
\see gridPrinting for more information */
|
||||
inline virtual void set_gridPrinting(bool __value)
|
||||
{
|
||||
this->gridPrinting = __value;
|
||||
}
|
||||
/*! \brief returns the property gridPrinting.
|
||||
\details Description of the parameter gridPrinting is: <BLOCKQUOTE>\copybrief gridPrinting </BLOCKQUOTE>
|
||||
\details Description of the parameter gridPrinting is: <BLOCKQUOTE>\copydoc gridPrinting </BLOCKQUOTE>
|
||||
\see gridPrinting for more information */
|
||||
inline virtual bool get_gridPrinting() const
|
||||
{
|
||||
return this->gridPrinting;
|
||||
}
|
||||
/*! \brief sets the property gridPrintingCurrentX to the specified \a __value.
|
||||
\details Description of the parameter gridPrintingCurrentX is: <BLOCKQUOTE>\copybrief gridPrintingCurrentX </BLOCKQUOTE>
|
||||
\details Description of the parameter gridPrintingCurrentX is: <BLOCKQUOTE>\copydoc gridPrintingCurrentX </BLOCKQUOTE>
|
||||
\see gridPrintingCurrentX for more information */
|
||||
inline virtual void set_gridPrintingCurrentX(size_t __value)
|
||||
{
|
||||
this->gridPrintingCurrentX = __value;
|
||||
}
|
||||
/*! \brief returns the property gridPrintingCurrentX.
|
||||
\details Description of the parameter gridPrintingCurrentX is: <BLOCKQUOTE>\copybrief gridPrintingCurrentX </BLOCKQUOTE>
|
||||
\details Description of the parameter gridPrintingCurrentX is: <BLOCKQUOTE>\copydoc gridPrintingCurrentX </BLOCKQUOTE>
|
||||
\see gridPrintingCurrentX for more information */
|
||||
inline virtual size_t get_gridPrintingCurrentX() const
|
||||
{
|
||||
return this->gridPrintingCurrentX;
|
||||
}
|
||||
/*! \brief sets the property gridPrintingCurrentY to the specified \a __value.
|
||||
\details Description of the parameter gridPrintingCurrentY is: <BLOCKQUOTE>\copybrief gridPrintingCurrentY </BLOCKQUOTE>
|
||||
\details Description of the parameter gridPrintingCurrentY is: <BLOCKQUOTE>\copydoc gridPrintingCurrentY </BLOCKQUOTE>
|
||||
\see gridPrintingCurrentY for more information */
|
||||
inline virtual void set_gridPrintingCurrentY(size_t __value)
|
||||
{
|
||||
this->gridPrintingCurrentY = __value;
|
||||
}
|
||||
/*! \brief returns the property gridPrintingCurrentY.
|
||||
\details Description of the parameter gridPrintingCurrentY is: <BLOCKQUOTE>\copybrief gridPrintingCurrentY </BLOCKQUOTE>
|
||||
\details Description of the parameter gridPrintingCurrentY is: <BLOCKQUOTE>\copydoc gridPrintingCurrentY </BLOCKQUOTE>
|
||||
\see gridPrintingCurrentY for more information */
|
||||
inline virtual size_t get_gridPrintingCurrentY() const
|
||||
{
|
||||
return this->gridPrintingCurrentY;
|
||||
}
|
||||
/*! \brief sets the property currentSaveDirectory to the specified \a __value.
|
||||
\details Description of the parameter currentSaveDirectory is: <BLOCKQUOTE>\copybrief currentSaveDirectory </BLOCKQUOTE>
|
||||
\details Description of the parameter currentSaveDirectory is: <BLOCKQUOTE>\copydoc currentSaveDirectory </BLOCKQUOTE>
|
||||
\see currentSaveDirectory for more information */
|
||||
inline virtual void set_currentSaveDirectory(const QString & __value)
|
||||
{
|
||||
this->currentSaveDirectory = __value;
|
||||
}
|
||||
/*! \brief returns the property currentSaveDirectory.
|
||||
\details Description of the parameter currentSaveDirectory is: <BLOCKQUOTE>\copybrief currentSaveDirectory </BLOCKQUOTE>
|
||||
\details Description of the parameter currentSaveDirectory is: <BLOCKQUOTE>\copydoc currentSaveDirectory </BLOCKQUOTE>
|
||||
\see currentSaveDirectory for more information */
|
||||
inline virtual QString get_currentSaveDirectory() const
|
||||
{
|
||||
return this->currentSaveDirectory;
|
||||
}
|
||||
/*! \brief sets the property currentFileFormat to the specified \a __value.
|
||||
\details Description of the parameter currentFileFormat is: <BLOCKQUOTE>\copybrief currentFileFormat </BLOCKQUOTE>
|
||||
\details Description of the parameter currentFileFormat is: <BLOCKQUOTE>\copydoc currentFileFormat </BLOCKQUOTE>
|
||||
\see currentFileFormat for more information */
|
||||
inline virtual void set_currentFileFormat(const QString & __value)
|
||||
{
|
||||
this->currentFileFormat = __value;
|
||||
}
|
||||
/*! \brief returns the property currentFileFormat.
|
||||
\details Description of the parameter currentFileFormat is: <BLOCKQUOTE>\copybrief currentFileFormat </BLOCKQUOTE>
|
||||
\details Description of the parameter currentFileFormat is: <BLOCKQUOTE>\copydoc currentFileFormat </BLOCKQUOTE>
|
||||
\see currentFileFormat for more information */
|
||||
inline virtual QString get_currentFileFormat() const
|
||||
{
|
||||
return this->currentFileFormat;
|
||||
}
|
||||
/*! \brief sets the property CSVdecimalSeparator to the specified \a __value.
|
||||
\details Description of the parameter CSVdecimalSeparator is: <BLOCKQUOTE>\copybrief CSVdecimalSeparator </BLOCKQUOTE>
|
||||
\details Description of the parameter CSVdecimalSeparator is: <BLOCKQUOTE>\copydoc CSVdecimalSeparator </BLOCKQUOTE>
|
||||
\see CSVdecimalSeparator for more information */
|
||||
inline virtual void set_CSVdecimalSeparator(const QString & __value)
|
||||
{
|
||||
this->CSVdecimalSeparator = __value;
|
||||
}
|
||||
/*! \brief returns the property CSVdecimalSeparator.
|
||||
\details Description of the parameter CSVdecimalSeparator is: <BLOCKQUOTE>\copybrief CSVdecimalSeparator </BLOCKQUOTE>
|
||||
\details Description of the parameter CSVdecimalSeparator is: <BLOCKQUOTE>\copydoc CSVdecimalSeparator </BLOCKQUOTE>
|
||||
\see CSVdecimalSeparator for more information */
|
||||
inline virtual QString get_CSVdecimalSeparator() const
|
||||
{
|
||||
return this->CSVdecimalSeparator;
|
||||
}
|
||||
/*! \brief sets the property CSVcommentInitializer to the specified \a __value.
|
||||
\details Description of the parameter CSVcommentInitializer is: <BLOCKQUOTE>\copybrief CSVcommentInitializer </BLOCKQUOTE>
|
||||
\details Description of the parameter CSVcommentInitializer is: <BLOCKQUOTE>\copydoc CSVcommentInitializer </BLOCKQUOTE>
|
||||
\see CSVcommentInitializer for more information */
|
||||
inline virtual void set_CSVcommentInitializer(const QString & __value)
|
||||
{
|
||||
this->CSVcommentInitializer = __value;
|
||||
}
|
||||
/*! \brief returns the property CSVcommentInitializer.
|
||||
\details Description of the parameter CSVcommentInitializer is: <BLOCKQUOTE>\copybrief CSVcommentInitializer </BLOCKQUOTE>
|
||||
\details Description of the parameter CSVcommentInitializer is: <BLOCKQUOTE>\copydoc CSVcommentInitializer </BLOCKQUOTE>
|
||||
\see CSVcommentInitializer for more information */
|
||||
inline virtual QString get_CSVcommentInitializer() const
|
||||
{
|
||||
return this->CSVcommentInitializer;
|
||||
}
|
||||
|
||||
/*! \brief returns the property iplotBorderTop. \details Description of the parameter iplotBorderTop is: <BLOCKQUOTE>\copybrief iplotBorderTop </BLOCKQUOTE>. \see iplotBorderTop for more information */
|
||||
/*! \brief returns the property iplotBorderTop. \details Description of the parameter iplotBorderTop is: <BLOCKQUOTE>\copydoc iplotBorderTop </BLOCKQUOTE>. \see iplotBorderTop for more information */
|
||||
inline int get_iplotBorderTop() const { return this->iplotBorderTop; }
|
||||
/*! \brief returns the property iplotBorderLeft. \details Description of the parameter iplotBorderLeft is: <BLOCKQUOTE>\copybrief iplotBorderLeft </BLOCKQUOTE>. \see iplotBorderLeft for more information */
|
||||
/*! \brief returns the property iplotBorderLeft. \details Description of the parameter iplotBorderLeft is: <BLOCKQUOTE>\copydoc iplotBorderLeft </BLOCKQUOTE>. \see iplotBorderLeft for more information */
|
||||
inline int get_iplotBorderLeft() const { return this->iplotBorderLeft; }
|
||||
/*! \brief returns the property iplotBorderBottom. \details Description of the parameter iplotBorderBottom is: <BLOCKQUOTE>\copybrief iplotBorderBottom </BLOCKQUOTE>. \see iplotBorderBottom for more information */
|
||||
/*! \brief returns the property iplotBorderBottom. \details Description of the parameter iplotBorderBottom is: <BLOCKQUOTE>\copydoc iplotBorderBottom </BLOCKQUOTE>. \see iplotBorderBottom for more information */
|
||||
inline int get_iplotBorderBottom() const { return this->iplotBorderBottom; }
|
||||
/*! \brief returns the property iplotBorderRight. \details Description of the parameter iplotBorderRight is: <BLOCKQUOTE>\copybrief iplotBorderRight </BLOCKQUOTE>. \see iplotBorderRight for more information */
|
||||
/*! \brief returns the property iplotBorderRight. \details Description of the parameter iplotBorderRight is: <BLOCKQUOTE>\copydoc iplotBorderRight </BLOCKQUOTE>. \see iplotBorderRight for more information */
|
||||
inline int get_iplotBorderRight() const { return this->iplotBorderRight; }
|
||||
/*! \brief returns the property plotWidth. \details Description of the parameter plotWidth is: <BLOCKQUOTE>\copybrief plotWidth </BLOCKQUOTE>. \see plotWidth for more information */
|
||||
/*! \brief returns the property plotWidth. \details Description of the parameter plotWidth is: <BLOCKQUOTE>\copydoc plotWidth </BLOCKQUOTE>. \see plotWidth for more information */
|
||||
inline int get_plotWidth() const { return this->plotWidth; }
|
||||
/*! \brief returns the property plotHeight. \details Description of the parameter plotHeight is: <BLOCKQUOTE>\copybrief plotHeight </BLOCKQUOTE>. \see plotHeight for more information */
|
||||
/*! \brief returns the property plotHeight. \details Description of the parameter plotHeight is: <BLOCKQUOTE>\copydoc plotHeight </BLOCKQUOTE>. \see plotHeight for more information */
|
||||
inline int get_plotHeight() const { return this->plotHeight; }
|
||||
/** \brief returns the internal JKQTMathText, used to render text with LaTeX markup */
|
||||
inline JKQTMathText* get_mathText() { return &mathText; }
|
||||
@ -1841,58 +1841,58 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
inline const JKQTPVerticalAxis* get_yAxis() const { return yAxis; }
|
||||
|
||||
|
||||
/*! \brief returns the property actSavePlot. \details Description of the parameter actSavePlot is: <BLOCKQUOTE>\copybrief actSavePlot </BLOCKQUOTE>. \see actSavePlot for more information */
|
||||
/*! \brief returns the property actSavePlot. \details Description of the parameter actSavePlot is: <BLOCKQUOTE>\copydoc actSavePlot </BLOCKQUOTE>. \see actSavePlot for more information */
|
||||
inline QAction* get_actSavePlot() const { return this->actSavePlot; }
|
||||
/*! \brief returns the property actSaveData. \details Description of the parameter actSaveData is: <BLOCKQUOTE>\copybrief actSaveData </BLOCKQUOTE>. \see actSaveData for more information */
|
||||
/*! \brief returns the property actSaveData. \details Description of the parameter actSaveData is: <BLOCKQUOTE>\copydoc actSaveData </BLOCKQUOTE>. \see actSaveData for more information */
|
||||
inline QAction* get_actSaveData() const { return this->actSaveData; }
|
||||
/*! \brief returns the property actCopyData. \details Description of the parameter actCopyData is: <BLOCKQUOTE>\copybrief actCopyData </BLOCKQUOTE>. \see actCopyData for more information */
|
||||
/*! \brief returns the property actCopyData. \details Description of the parameter actCopyData is: <BLOCKQUOTE>\copydoc actCopyData </BLOCKQUOTE>. \see actCopyData for more information */
|
||||
inline QAction* get_actCopyData() const { return this->actCopyData; }
|
||||
/*! \brief returns the property actCopyPixelImage. \details Description of the parameter actCopyPixelImage is: <BLOCKQUOTE>\copybrief actCopyPixelImage </BLOCKQUOTE>. \see actCopyPixelImage for more information */
|
||||
/*! \brief returns the property actCopyPixelImage. \details Description of the parameter actCopyPixelImage is: <BLOCKQUOTE>\copydoc actCopyPixelImage </BLOCKQUOTE>. \see actCopyPixelImage for more information */
|
||||
inline QAction* get_actCopyPixelImage() const { return this->actCopyPixelImage; }
|
||||
/*! \brief returns the property actCopyMatlab. \details Description of the parameter actCopyMatlab is: <BLOCKQUOTE>\copybrief actCopyMatlab </BLOCKQUOTE>. \see actCopyMatlab for more information */
|
||||
/*! \brief returns the property actCopyMatlab. \details Description of the parameter actCopyMatlab is: <BLOCKQUOTE>\copydoc actCopyMatlab </BLOCKQUOTE>. \see actCopyMatlab for more information */
|
||||
inline QAction* get_actCopyMatlab() const { return this->actCopyMatlab; }
|
||||
/*! \brief returns the property actSavePDF. \details Description of the parameter actSavePDF is: <BLOCKQUOTE>\copybrief actSavePDF </BLOCKQUOTE>. \see actSavePDF for more information */
|
||||
/*! \brief returns the property actSavePDF. \details Description of the parameter actSavePDF is: <BLOCKQUOTE>\copydoc actSavePDF </BLOCKQUOTE>. \see actSavePDF for more information */
|
||||
inline QAction* get_actSavePDF() const { return this->actSavePDF; }
|
||||
#if (QT_VERSION < QT_VERSION_CHECK(5, 0, 0))
|
||||
/*! \brief returns the property actSavePS. \details Description of the parameter actSavePS is: <BLOCKQUOTE>\copybrief actSavePS </BLOCKQUOTE>. \see actSavePS for more information */
|
||||
/*! \brief returns the property actSavePS. \details Description of the parameter actSavePS is: <BLOCKQUOTE>\copydoc actSavePS </BLOCKQUOTE>. \see actSavePS for more information */
|
||||
inline QAction* get_actSavePS() const { return this->actSavePS; }
|
||||
#endif
|
||||
/*! \brief returns the property actSavePix. \details Description of the parameter actSavePix is: <BLOCKQUOTE>\copybrief actSavePix </BLOCKQUOTE>. \see actSavePix for more information */
|
||||
/*! \brief returns the property actSavePix. \details Description of the parameter actSavePix is: <BLOCKQUOTE>\copydoc actSavePix </BLOCKQUOTE>. \see actSavePix for more information */
|
||||
inline QAction* get_actSavePix() const { return this->actSavePix; }
|
||||
/*! \brief returns the property actSaveSVG. \details Description of the parameter actSaveSVG is: <BLOCKQUOTE>\copybrief actSaveSVG </BLOCKQUOTE>. \see actSaveSVG for more information */
|
||||
/*! \brief returns the property actSaveSVG. \details Description of the parameter actSaveSVG is: <BLOCKQUOTE>\copydoc actSaveSVG </BLOCKQUOTE>. \see actSaveSVG for more information */
|
||||
inline QAction* get_actSaveSVG() const { return this->actSaveSVG; }
|
||||
/*! \brief returns the property actPrint. \details Description of the parameter actPrint is: <BLOCKQUOTE>\copybrief actPrint </BLOCKQUOTE>. \see actPrint for more information */
|
||||
/*! \brief returns the property actPrint. \details Description of the parameter actPrint is: <BLOCKQUOTE>\copydoc actPrint </BLOCKQUOTE>. \see actPrint for more information */
|
||||
inline QAction* get_actPrint() const { return this->actPrint; }
|
||||
/*! \brief returns the property actSaveCSV. \details Description of the parameter actSaveCSV is: <BLOCKQUOTE>\copybrief actSaveCSV </BLOCKQUOTE>. \see actSaveCSV for more information */
|
||||
/*! \brief returns the property actSaveCSV. \details Description of the parameter actSaveCSV is: <BLOCKQUOTE>\copydoc actSaveCSV </BLOCKQUOTE>. \see actSaveCSV for more information */
|
||||
inline QAction* get_actSaveCSV() const { return this->actSaveCSV; }
|
||||
/*! \brief returns the property actZoomAll. \details Description of the parameter actZoomAll is: <BLOCKQUOTE>\copybrief actZoomAll </BLOCKQUOTE>. \see actZoomAll for more information */
|
||||
/*! \brief returns the property actZoomAll. \details Description of the parameter actZoomAll is: <BLOCKQUOTE>\copydoc actZoomAll </BLOCKQUOTE>. \see actZoomAll for more information */
|
||||
inline QAction* get_actZoomAll() const { return this->actZoomAll; }
|
||||
/*! \brief returns the property actZoomIn. \details Description of the parameter actZoomIn is: <BLOCKQUOTE>\copybrief actZoomIn </BLOCKQUOTE>. \see actZoomIn for more information */
|
||||
/*! \brief returns the property actZoomIn. \details Description of the parameter actZoomIn is: <BLOCKQUOTE>\copydoc actZoomIn </BLOCKQUOTE>. \see actZoomIn for more information */
|
||||
inline QAction* get_actZoomIn() const { return this->actZoomIn; }
|
||||
/*! \brief returns the property actZoomOut. \details Description of the parameter actZoomOut is: <BLOCKQUOTE>\copybrief actZoomOut </BLOCKQUOTE>. \see actZoomOut for more information */
|
||||
/*! \brief returns the property actZoomOut. \details Description of the parameter actZoomOut is: <BLOCKQUOTE>\copydoc actZoomOut </BLOCKQUOTE>. \see actZoomOut for more information */
|
||||
inline QAction* get_actZoomOut() const { return this->actZoomOut; }
|
||||
/*! \brief returns the property actShowPlotData. \details Description of the parameter actShowPlotData is: <BLOCKQUOTE>\copybrief actShowPlotData </BLOCKQUOTE>. \see actShowPlotData for more information */
|
||||
/*! \brief returns the property actShowPlotData. \details Description of the parameter actShowPlotData is: <BLOCKQUOTE>\copydoc actShowPlotData </BLOCKQUOTE>. \see actShowPlotData for more information */
|
||||
inline QAction* get_actShowPlotData() const { return this->actShowPlotData; }
|
||||
/*! \brief returns the property lstAdditionalPlotterActions. \details Description of the parameter lstAdditionalPlotterActions is: <BLOCKQUOTE>\copybrief lstAdditionalPlotterActions </BLOCKQUOTE>. \see lstAdditionalPlotterActions for more information */
|
||||
/*! \brief returns the property lstAdditionalPlotterActions. \details Description of the parameter lstAdditionalPlotterActions is: <BLOCKQUOTE>\copydoc lstAdditionalPlotterActions </BLOCKQUOTE>. \see lstAdditionalPlotterActions for more information */
|
||||
inline AdditionalActionsMap get_lstAdditionalPlotterActions() const { return this->lstAdditionalPlotterActions; }
|
||||
|
||||
/** \brief this function registers additional actions to lstAdditionalPlotterActions, which are displayed in the context-menu */
|
||||
void registerAdditionalAction(const QString& key, QAction* act);
|
||||
void deregisterAdditionalAction(QAction* act);
|
||||
|
||||
/*! \brief returns the property masterSynchronizeWidth. \details Description of the parameter masterSynchronizeWidth is: <BLOCKQUOTE>\copybrief masterSynchronizeWidth </BLOCKQUOTE>. \see masterSynchronizeWidth for more information */
|
||||
/*! \brief returns the property masterSynchronizeWidth. \details Description of the parameter masterSynchronizeWidth is: <BLOCKQUOTE>\copydoc masterSynchronizeWidth </BLOCKQUOTE>. \see masterSynchronizeWidth for more information */
|
||||
inline bool get_masterSynchronizeWidth() const { return this->masterSynchronizeWidth; }
|
||||
/*! \brief returns the property masterSynchronizeHeight. \details Description of the parameter masterSynchronizeHeight is: <BLOCKQUOTE>\copybrief masterSynchronizeHeight </BLOCKQUOTE>. \see masterSynchronizeHeight for more information */
|
||||
/*! \brief returns the property masterSynchronizeHeight. \details Description of the parameter masterSynchronizeHeight is: <BLOCKQUOTE>\copydoc masterSynchronizeHeight </BLOCKQUOTE>. \see masterSynchronizeHeight for more information */
|
||||
inline bool get_masterSynchronizeHeight() const { return this->masterSynchronizeHeight; }
|
||||
/*! \brief sets the property def_backgroundColor to the specified \a __value.
|
||||
\details Description of the parameter def_backgroundColor is: <BLOCKQUOTE>\copybrief def_backgroundColor </BLOCKQUOTE>
|
||||
\details Description of the parameter def_backgroundColor is: <BLOCKQUOTE>\copydoc def_backgroundColor </BLOCKQUOTE>
|
||||
\see def_backgroundColor for more information */
|
||||
inline virtual void set_def_backgroundColor(const QColor & __value)
|
||||
{
|
||||
this->def_backgroundColor = __value;
|
||||
}
|
||||
/*! \brief sets the property def_plotBackgroundColor to the specified \a __value.
|
||||
\details Description of the parameter def_plotBackgroundColor is: <BLOCKQUOTE>\copybrief def_plotBackgroundColor </BLOCKQUOTE>
|
||||
\details Description of the parameter def_plotBackgroundColor is: <BLOCKQUOTE>\copydoc def_plotBackgroundColor </BLOCKQUOTE>
|
||||
\see def_plotBackgroundColor for more information */
|
||||
inline virtual void set_def_plotBackgroundColor(const QColor & __value)
|
||||
{
|
||||
@ -1900,36 +1900,36 @@ class LIB_EXPORT JKQTBasePlotter: public QObject {
|
||||
}
|
||||
|
||||
/*! \brief sets the property fontSizePrintMultiplier to the specified \a __value.
|
||||
\details Description of the parameter fontSizePrintMultiplier is: <BLOCKQUOTE>\copybrief fontSizePrintMultiplier </BLOCKQUOTE>
|
||||
\details Description of the parameter fontSizePrintMultiplier is: <BLOCKQUOTE>\copydoc fontSizePrintMultiplier </BLOCKQUOTE>
|
||||
\see fontSizePrintMultiplier for more information */
|
||||
inline virtual void set_fontSizePrintMultiplier(double __value)
|
||||
{
|
||||
this->fontSizePrintMultiplier = __value;
|
||||
}
|
||||
/*! \brief returns the property fontSizePrintMultiplier.
|
||||
\details Description of the parameter fontSizePrintMultiplier is: <BLOCKQUOTE>\copybrief fontSizePrintMultiplier </BLOCKQUOTE>
|
||||
\details Description of the parameter fontSizePrintMultiplier is: <BLOCKQUOTE>\copydoc fontSizePrintMultiplier </BLOCKQUOTE>
|
||||
\see fontSizePrintMultiplier for more information */
|
||||
inline virtual double get_fontSizePrintMultiplier() const
|
||||
{
|
||||
return this->fontSizePrintMultiplier;
|
||||
}
|
||||
/*! \brief sets the property lineWidthPrintMultiplier to the specified \a __value.
|
||||
\details Description of the parameter lineWidthPrintMultiplier is: <BLOCKQUOTE>\copybrief lineWidthPrintMultiplier </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidthPrintMultiplier is: <BLOCKQUOTE>\copydoc lineWidthPrintMultiplier </BLOCKQUOTE>
|
||||
\see lineWidthPrintMultiplier for more information */
|
||||
inline virtual void set_lineWidthPrintMultiplier(double __value)
|
||||
{
|
||||
this->lineWidthPrintMultiplier = __value;
|
||||
}
|
||||
/*! \brief returns the property lineWidthPrintMultiplier.
|
||||
\details Description of the parameter lineWidthPrintMultiplier is: <BLOCKQUOTE>\copybrief lineWidthPrintMultiplier </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidthPrintMultiplier is: <BLOCKQUOTE>\copydoc lineWidthPrintMultiplier </BLOCKQUOTE>
|
||||
\see lineWidthPrintMultiplier for more information */
|
||||
inline virtual double get_lineWidthPrintMultiplier() const
|
||||
{
|
||||
return this->lineWidthPrintMultiplier;
|
||||
}
|
||||
/*! \brief returns the property fontSizeMultiplier. \details Description of the parameter fontSizeMultiplier is: <BLOCKQUOTE>\copybrief fontSizeMultiplier </BLOCKQUOTE>. \see fontSizeMultiplier for more information */
|
||||
/*! \brief returns the property fontSizeMultiplier. \details Description of the parameter fontSizeMultiplier is: <BLOCKQUOTE>\copydoc fontSizeMultiplier </BLOCKQUOTE>. \see fontSizeMultiplier for more information */
|
||||
inline double get_fontSizeMultiplier() const { return this->fontSizeMultiplier; }
|
||||
/*! \brief returns the property lineWidthMultiplier. \details Description of the parameter lineWidthMultiplier is: <BLOCKQUOTE>\copybrief lineWidthMultiplier </BLOCKQUOTE>. \see lineWidthMultiplier for more information */
|
||||
/*! \brief returns the property lineWidthMultiplier. \details Description of the parameter lineWidthMultiplier is: <BLOCKQUOTE>\copydoc lineWidthMultiplier </BLOCKQUOTE>. \see lineWidthMultiplier for more information */
|
||||
inline double get_lineWidthMultiplier() const { return this->lineWidthMultiplier; }
|
||||
|
||||
|
||||
|
@ -626,7 +626,7 @@ class LIB_EXPORT JKQTPColumn {
|
||||
/** \brief class destructor */
|
||||
~JKQTPColumn() ;
|
||||
|
||||
/*! \brief sets the property name to the specified \a __value. \details Description of the parameter name is: <BLOCKQUOTE>\copybrief JKQTPColumn::name </BLOCKQUOTE> \see JKQTPColumn::name for more information */
|
||||
/*! \brief sets the property name to the specified \a __value. \details Description of the parameter name is: <BLOCKQUOTE>\copydoc JKQTPColumn::name </BLOCKQUOTE> \see JKQTPColumn::name for more information */
|
||||
inline void set_name (const QString& __value)
|
||||
{
|
||||
this->name = __value;
|
||||
@ -713,10 +713,10 @@ class LIB_EXPORT JKQTPColumn {
|
||||
void setAll(double value);
|
||||
|
||||
|
||||
/*! \brief returns the property datastoreItem. \details Description of the parameter datastoreItem is: <BLOCKQUOTE>\copybrief JKQTPColumn::datastoreItem </BLOCKQUOTE>. \see JKQTPColumn::datastoreItem for more information */ \
|
||||
/*! \brief returns the property datastoreItem. \details Description of the parameter datastoreItem is: <BLOCKQUOTE>\copydoc JKQTPColumn::datastoreItem </BLOCKQUOTE>. \see JKQTPColumn::datastoreItem for more information */ \
|
||||
inline size_t get_datastoreItem() const \
|
||||
{ return this->datastoreItem; }
|
||||
/*! \brief returns the property datastoreOffset. \details Description of the parameter datastoreOffset is: <BLOCKQUOTE>\copybrief JKQTPColumn::datastoreOffset </BLOCKQUOTE>. \see JKQTPColumn::datastoreOffset for more information */ \
|
||||
/*! \brief returns the property datastoreOffset. \details Description of the parameter datastoreOffset is: <BLOCKQUOTE>\copydoc JKQTPColumn::datastoreOffset </BLOCKQUOTE>. \see JKQTPColumn::datastoreOffset for more information */ \
|
||||
inline size_t get_datastoreOffset() const \
|
||||
{ return this->datastoreOffset; }
|
||||
};
|
||||
@ -773,10 +773,10 @@ class LIB_EXPORT JKQTPDatastoreItem {
|
||||
/** \brief change the size of all columns to the givne number of rows. The data will be lost */
|
||||
void resizeColumns(size_t rows);
|
||||
|
||||
/*! \brief returns the property rows. \details Description of the parameter rows is: <BLOCKQUOTE>\copybrief JKQTPDatastoreItem::JKQTPDatastoreItemrows </BLOCKQUOTE>. \see JKQTPDatastoreItem::rows for more information */ \
|
||||
/*! \brief returns the property rows. \details Description of the parameter rows is: <BLOCKQUOTE>\copydoc JKQTPDatastoreItem::JKQTPDatastoreItemrows </BLOCKQUOTE>. \see JKQTPDatastoreItem::rows for more information */ \
|
||||
inline size_t get_rows() const
|
||||
{ return rows; }
|
||||
/*! \brief returns the property columns. \details Description of the parameter columns is: <BLOCKQUOTE>\copybrief JKQTPDatastoreItem::columns </BLOCKQUOTE>. \see JKQTPDatastoreItem::columns for more information */ \
|
||||
/*! \brief returns the property columns. \details Description of the parameter columns is: <BLOCKQUOTE>\copydoc JKQTPDatastoreItem::columns </BLOCKQUOTE>. \see JKQTPDatastoreItem::columns for more information */ \
|
||||
inline size_t get_columns() const
|
||||
{ return columns; }
|
||||
|
||||
|
@ -56,126 +56,126 @@ class LIB_EXPORT JKQTPOverlayElement : public QObject {
|
||||
virtual void setParent(JKQTBasePlotter* parent);
|
||||
|
||||
/*! \brief sets the property color to the specified \a __value.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual void set_color(const QColor & __value)
|
||||
{
|
||||
this->color = __value;
|
||||
}
|
||||
/*! \brief returns the property color.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual QColor get_color() const
|
||||
{
|
||||
return this->color;
|
||||
}
|
||||
/*! \brief sets the property fillColor to the specified \a __value.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual void set_fillColor(const QColor & __value)
|
||||
{
|
||||
this->fillColor = __value;
|
||||
}
|
||||
/*! \brief returns the property fillColor.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual QColor get_fillColor() const
|
||||
{
|
||||
return this->fillColor;
|
||||
}
|
||||
/*! \brief sets the property lineStyle to the specified \a __value.
|
||||
\details Description of the parameter lineStyle is: <BLOCKQUOTE>\copybrief lineStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter lineStyle is: <BLOCKQUOTE>\copydoc lineStyle </BLOCKQUOTE>
|
||||
\see lineStyle for more information */
|
||||
inline virtual void set_lineStyle(const Qt::PenStyle & __value)
|
||||
{
|
||||
this->lineStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property lineStyle.
|
||||
\details Description of the parameter lineStyle is: <BLOCKQUOTE>\copybrief lineStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter lineStyle is: <BLOCKQUOTE>\copydoc lineStyle </BLOCKQUOTE>
|
||||
\see lineStyle for more information */
|
||||
inline virtual Qt::PenStyle get_lineStyle() const
|
||||
{
|
||||
return this->lineStyle;
|
||||
}
|
||||
/*! \brief sets the property fillStyle to the specified \a __value.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual void set_fillStyle(const Qt::BrushStyle & __value)
|
||||
{
|
||||
this->fillStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property fillStyle.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual Qt::BrushStyle get_fillStyle() const
|
||||
{
|
||||
return this->fillStyle;
|
||||
}
|
||||
/*! \brief sets the property lineWidth to the specified \a __value.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual void set_lineWidth(double __value)
|
||||
{
|
||||
this->lineWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property lineWidth.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual double get_lineWidth() const
|
||||
{
|
||||
return this->lineWidth;
|
||||
}
|
||||
/*! \brief sets the property text to the specified \a __value.
|
||||
\details Description of the parameter text is: <BLOCKQUOTE>\copybrief text </BLOCKQUOTE>
|
||||
\details Description of the parameter text is: <BLOCKQUOTE>\copydoc text </BLOCKQUOTE>
|
||||
\see text for more information */
|
||||
inline virtual void set_text(const QString & __value)
|
||||
{
|
||||
this->text = __value;
|
||||
}
|
||||
/*! \brief returns the property text.
|
||||
\details Description of the parameter text is: <BLOCKQUOTE>\copybrief text </BLOCKQUOTE>
|
||||
\details Description of the parameter text is: <BLOCKQUOTE>\copydoc text </BLOCKQUOTE>
|
||||
\see text for more information */
|
||||
inline virtual QString get_text() const
|
||||
{
|
||||
return this->text;
|
||||
}
|
||||
/*! \brief sets the property fontName to the specified \a __value.
|
||||
\details Description of the parameter fontName is: <BLOCKQUOTE>\copybrief fontName </BLOCKQUOTE>
|
||||
\details Description of the parameter fontName is: <BLOCKQUOTE>\copydoc fontName </BLOCKQUOTE>
|
||||
\see fontName for more information */
|
||||
inline virtual void set_fontName(const QString & __value)
|
||||
{
|
||||
this->fontName = __value;
|
||||
}
|
||||
/*! \brief returns the property fontName.
|
||||
\details Description of the parameter fontName is: <BLOCKQUOTE>\copybrief fontName </BLOCKQUOTE>
|
||||
\details Description of the parameter fontName is: <BLOCKQUOTE>\copydoc fontName </BLOCKQUOTE>
|
||||
\see fontName for more information */
|
||||
inline virtual QString get_fontName() const
|
||||
{
|
||||
return this->fontName;
|
||||
}
|
||||
/*! \brief sets the property fontSize to the specified \a __value.
|
||||
\details Description of the parameter fontSize is: <BLOCKQUOTE>\copybrief fontSize </BLOCKQUOTE>
|
||||
\details Description of the parameter fontSize is: <BLOCKQUOTE>\copydoc fontSize </BLOCKQUOTE>
|
||||
\see fontSize for more information */
|
||||
inline virtual void set_fontSize(double __value)
|
||||
{
|
||||
this->fontSize = __value;
|
||||
}
|
||||
/*! \brief returns the property fontSize.
|
||||
\details Description of the parameter fontSize is: <BLOCKQUOTE>\copybrief fontSize </BLOCKQUOTE>
|
||||
\details Description of the parameter fontSize is: <BLOCKQUOTE>\copydoc fontSize </BLOCKQUOTE>
|
||||
\see fontSize for more information */
|
||||
inline virtual double get_fontSize() const
|
||||
{
|
||||
return this->fontSize;
|
||||
}
|
||||
/*! \brief sets the property visible to the specified \a __value.
|
||||
\details Description of the parameter visible is: <BLOCKQUOTE>\copybrief visible </BLOCKQUOTE>
|
||||
\details Description of the parameter visible is: <BLOCKQUOTE>\copydoc visible </BLOCKQUOTE>
|
||||
\see visible for more information */
|
||||
inline virtual void set_visible(bool __value)
|
||||
{
|
||||
this->visible = __value;
|
||||
}
|
||||
/*! \brief returns the property visible.
|
||||
\details Description of the parameter visible is: <BLOCKQUOTE>\copybrief visible </BLOCKQUOTE>
|
||||
\details Description of the parameter visible is: <BLOCKQUOTE>\copydoc visible </BLOCKQUOTE>
|
||||
\see visible for more information */
|
||||
inline virtual bool get_visible() const
|
||||
{
|
||||
@ -244,56 +244,56 @@ class LIB_EXPORT JKQTPOverlayTwoPositionOverlay : public JKQTPOverlayElement {
|
||||
explicit JKQTPOverlayTwoPositionOverlay(double x1, double y1, double x2, double y2, JKQTBasePlotter *parent = 0);
|
||||
|
||||
/*! \brief sets the property x1 to the specified \a __value.
|
||||
\details Description of the parameter x1 is: <BLOCKQUOTE>\copybrief x1 </BLOCKQUOTE>
|
||||
\details Description of the parameter x1 is: <BLOCKQUOTE>\copydoc x1 </BLOCKQUOTE>
|
||||
\see x1 for more information */
|
||||
inline virtual void set_x1(double __value)
|
||||
{
|
||||
this->x1 = __value;
|
||||
}
|
||||
/*! \brief returns the property x1.
|
||||
\details Description of the parameter x1 is: <BLOCKQUOTE>\copybrief x1 </BLOCKQUOTE>
|
||||
\details Description of the parameter x1 is: <BLOCKQUOTE>\copydoc x1 </BLOCKQUOTE>
|
||||
\see x1 for more information */
|
||||
inline virtual double get_x1() const
|
||||
{
|
||||
return this->x1;
|
||||
}
|
||||
/*! \brief sets the property x2 to the specified \a __value.
|
||||
\details Description of the parameter x2 is: <BLOCKQUOTE>\copybrief x2 </BLOCKQUOTE>
|
||||
\details Description of the parameter x2 is: <BLOCKQUOTE>\copydoc x2 </BLOCKQUOTE>
|
||||
\see x2 for more information */
|
||||
inline virtual void set_x2(double __value)
|
||||
{
|
||||
this->x2 = __value;
|
||||
}
|
||||
/*! \brief returns the property x2.
|
||||
\details Description of the parameter x2 is: <BLOCKQUOTE>\copybrief x2 </BLOCKQUOTE>
|
||||
\details Description of the parameter x2 is: <BLOCKQUOTE>\copydoc x2 </BLOCKQUOTE>
|
||||
\see x2 for more information */
|
||||
inline virtual double get_x2() const
|
||||
{
|
||||
return this->x2;
|
||||
}
|
||||
/*! \brief sets the property y1 to the specified \a __value.
|
||||
\details Description of the parameter y1 is: <BLOCKQUOTE>\copybrief y1 </BLOCKQUOTE>
|
||||
\details Description of the parameter y1 is: <BLOCKQUOTE>\copydoc y1 </BLOCKQUOTE>
|
||||
\see y1 for more information */
|
||||
inline virtual void set_y1(double __value)
|
||||
{
|
||||
this->y1 = __value;
|
||||
}
|
||||
/*! \brief returns the property y1.
|
||||
\details Description of the parameter y1 is: <BLOCKQUOTE>\copybrief y1 </BLOCKQUOTE>
|
||||
\details Description of the parameter y1 is: <BLOCKQUOTE>\copydoc y1 </BLOCKQUOTE>
|
||||
\see y1 for more information */
|
||||
inline virtual double get_y1() const
|
||||
{
|
||||
return this->y1;
|
||||
}
|
||||
/*! \brief sets the property y2 to the specified \a __value.
|
||||
\details Description of the parameter y2 is: <BLOCKQUOTE>\copybrief y2 </BLOCKQUOTE>
|
||||
\details Description of the parameter y2 is: <BLOCKQUOTE>\copydoc y2 </BLOCKQUOTE>
|
||||
\see y2 for more information */
|
||||
inline virtual void set_y2(double __value)
|
||||
{
|
||||
this->y2 = __value;
|
||||
}
|
||||
/*! \brief returns the property y2.
|
||||
\details Description of the parameter y2 is: <BLOCKQUOTE>\copybrief y2 </BLOCKQUOTE>
|
||||
\details Description of the parameter y2 is: <BLOCKQUOTE>\copydoc y2 </BLOCKQUOTE>
|
||||
\see y2 for more information */
|
||||
inline virtual double get_y2() const
|
||||
{
|
||||
@ -317,14 +317,14 @@ class LIB_EXPORT JKQTPOverlayOneCoordOverlay : public JKQTPOverlayElement {
|
||||
explicit JKQTPOverlayOneCoordOverlay(double pos, JKQTBasePlotter *parent = 0);
|
||||
|
||||
/*! \brief sets the property position to the specified \a __value.
|
||||
\details Description of the parameter position is: <BLOCKQUOTE>\copybrief position </BLOCKQUOTE>
|
||||
\details Description of the parameter position is: <BLOCKQUOTE>\copydoc position </BLOCKQUOTE>
|
||||
\see position for more information */
|
||||
inline virtual void set_position(double __value)
|
||||
{
|
||||
this->position = __value;
|
||||
}
|
||||
/*! \brief returns the property position.
|
||||
\details Description of the parameter position is: <BLOCKQUOTE>\copybrief position </BLOCKQUOTE>
|
||||
\details Description of the parameter position is: <BLOCKQUOTE>\copydoc position </BLOCKQUOTE>
|
||||
\see position for more information */
|
||||
inline virtual double get_position() const
|
||||
{
|
||||
@ -345,14 +345,14 @@ class LIB_EXPORT JKQTPOverlayTwoCoordOverlay : public JKQTPOverlayOneCoordOverla
|
||||
explicit JKQTPOverlayTwoCoordOverlay(double pos, double pos2, JKQTBasePlotter *parent = 0);
|
||||
|
||||
/*! \brief sets the property position2 to the specified \a __value.
|
||||
\details Description of the parameter position2 is: <BLOCKQUOTE>\copybrief position2 </BLOCKQUOTE>
|
||||
\details Description of the parameter position2 is: <BLOCKQUOTE>\copydoc position2 </BLOCKQUOTE>
|
||||
\see position2 for more information */
|
||||
inline virtual void set_position2(double __value)
|
||||
{
|
||||
this->position2 = __value;
|
||||
}
|
||||
/*! \brief returns the property position2.
|
||||
\details Description of the parameter position2 is: <BLOCKQUOTE>\copybrief position2 </BLOCKQUOTE>
|
||||
\details Description of the parameter position2 is: <BLOCKQUOTE>\copydoc position2 </BLOCKQUOTE>
|
||||
\see position2 for more information */
|
||||
inline virtual double get_position2() const
|
||||
{
|
||||
@ -397,14 +397,14 @@ class LIB_EXPORT JKQTPOverlayVerticalRange : public JKQTPOverlayTwoCoordOverlay
|
||||
virtual void draw(JKQTPEnhancedPainter& painter);
|
||||
|
||||
/*! \brief sets the property inverted to the specified \a __value.
|
||||
\details Description of the parameter inverted is: <BLOCKQUOTE>\copybrief inverted </BLOCKQUOTE>
|
||||
\details Description of the parameter inverted is: <BLOCKQUOTE>\copydoc inverted </BLOCKQUOTE>
|
||||
\see inverted for more information */
|
||||
inline virtual void set_inverted(bool __value)
|
||||
{
|
||||
this->inverted = __value;
|
||||
}
|
||||
/*! \brief returns the property inverted.
|
||||
\details Description of the parameter inverted is: <BLOCKQUOTE>\copybrief inverted </BLOCKQUOTE>
|
||||
\details Description of the parameter inverted is: <BLOCKQUOTE>\copydoc inverted </BLOCKQUOTE>
|
||||
\see inverted for more information */
|
||||
inline virtual bool get_inverted() const
|
||||
{
|
||||
@ -428,14 +428,14 @@ class LIB_EXPORT JKQTPOverlayLine : public JKQTPOverlayTwoPositionOverlay {
|
||||
virtual void draw(JKQTPEnhancedPainter& painter);
|
||||
|
||||
/*! \brief sets the property infinite to the specified \a __value.
|
||||
\details Description of the parameter infinite is: <BLOCKQUOTE>\copybrief infinite </BLOCKQUOTE>
|
||||
\details Description of the parameter infinite is: <BLOCKQUOTE>\copydoc infinite </BLOCKQUOTE>
|
||||
\see infinite for more information */
|
||||
inline virtual void set_infinite(bool __value)
|
||||
{
|
||||
this->infinite = __value;
|
||||
}
|
||||
/*! \brief returns the property infinite.
|
||||
\details Description of the parameter infinite is: <BLOCKQUOTE>\copybrief infinite </BLOCKQUOTE>
|
||||
\details Description of the parameter infinite is: <BLOCKQUOTE>\copydoc infinite </BLOCKQUOTE>
|
||||
\see infinite for more information */
|
||||
inline virtual bool get_infinite() const
|
||||
{
|
||||
|
@ -67,140 +67,140 @@ class LIB_EXPORT JKQTPXYLineGraph: public JKQTPXYGraph {
|
||||
virtual QColor getKeyLabelColor() override;
|
||||
|
||||
/*! \brief sets the property color to the specified \a __value.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual void set_color(const QColor & __value)
|
||||
{
|
||||
this->color = __value;
|
||||
}
|
||||
/*! \brief returns the property color.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual QColor get_color() const
|
||||
{
|
||||
return this->color;
|
||||
}
|
||||
/*! \brief sets the property fillColor to the specified \a __value.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual void set_fillColor(const QColor & __value)
|
||||
{
|
||||
this->fillColor = __value;
|
||||
}
|
||||
/*! \brief returns the property fillColor.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual QColor get_fillColor() const
|
||||
{
|
||||
return this->fillColor;
|
||||
}
|
||||
/*! \brief sets the property style to the specified \a __value.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual void set_style(const Qt::PenStyle & __value)
|
||||
{
|
||||
this->style = __value;
|
||||
}
|
||||
/*! \brief returns the property style.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual Qt::PenStyle get_style() const
|
||||
{
|
||||
return this->style;
|
||||
}
|
||||
/*! \brief sets the property lineWidth to the specified \a __value.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual void set_lineWidth(double __value)
|
||||
{
|
||||
this->lineWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property lineWidth.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual double get_lineWidth() const
|
||||
{
|
||||
return this->lineWidth;
|
||||
}
|
||||
/*! \brief sets the property symbol to the specified \a __value.
|
||||
\details Description of the parameter symbol is: <BLOCKQUOTE>\copybrief symbol </BLOCKQUOTE>
|
||||
\details Description of the parameter symbol is: <BLOCKQUOTE>\copydoc symbol </BLOCKQUOTE>
|
||||
\see symbol for more information */
|
||||
inline virtual void set_symbol(const JKQTPGraphSymbols & __value)
|
||||
{
|
||||
this->symbol = __value;
|
||||
}
|
||||
/*! \brief returns the property symbol.
|
||||
\details Description of the parameter symbol is: <BLOCKQUOTE>\copybrief symbol </BLOCKQUOTE>
|
||||
\details Description of the parameter symbol is: <BLOCKQUOTE>\copydoc symbol </BLOCKQUOTE>
|
||||
\see symbol for more information */
|
||||
inline virtual JKQTPGraphSymbols get_symbol() const
|
||||
{
|
||||
return this->symbol;
|
||||
}
|
||||
/*! \brief sets the property symbolWidth to the specified \a __value.
|
||||
\details Description of the parameter symbolWidth is: <BLOCKQUOTE>\copybrief symbolWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter symbolWidth is: <BLOCKQUOTE>\copydoc symbolWidth </BLOCKQUOTE>
|
||||
\see symbolWidth for more information */
|
||||
inline virtual void set_symbolWidth(double __value)
|
||||
{
|
||||
this->symbolWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property symbolWidth.
|
||||
\details Description of the parameter symbolWidth is: <BLOCKQUOTE>\copybrief symbolWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter symbolWidth is: <BLOCKQUOTE>\copydoc symbolWidth </BLOCKQUOTE>
|
||||
\see symbolWidth for more information */
|
||||
inline virtual double get_symbolWidth() const
|
||||
{
|
||||
return this->symbolWidth;
|
||||
}
|
||||
/*! \brief sets the property symbolSize to the specified \a __value.
|
||||
\details Description of the parameter symbolSize is: <BLOCKQUOTE>\copybrief symbolSize </BLOCKQUOTE>
|
||||
\details Description of the parameter symbolSize is: <BLOCKQUOTE>\copydoc symbolSize </BLOCKQUOTE>
|
||||
\see symbolSize for more information */
|
||||
inline virtual void set_symbolSize(double __value)
|
||||
{
|
||||
this->symbolSize = __value;
|
||||
}
|
||||
/*! \brief returns the property symbolSize.
|
||||
\details Description of the parameter symbolSize is: <BLOCKQUOTE>\copybrief symbolSize </BLOCKQUOTE>
|
||||
\details Description of the parameter symbolSize is: <BLOCKQUOTE>\copydoc symbolSize </BLOCKQUOTE>
|
||||
\see symbolSize for more information */
|
||||
inline virtual double get_symbolSize() const
|
||||
{
|
||||
return this->symbolSize;
|
||||
}
|
||||
/*! \brief sets the property drawLine to the specified \a __value.
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copybrief drawLine </BLOCKQUOTE>
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copydoc drawLine </BLOCKQUOTE>
|
||||
\see drawLine for more information */
|
||||
inline virtual void set_drawLine(bool __value)
|
||||
{
|
||||
this->drawLine = __value;
|
||||
}
|
||||
/*! \brief returns the property drawLine.
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copybrief drawLine </BLOCKQUOTE>
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copydoc drawLine </BLOCKQUOTE>
|
||||
\see drawLine for more information */
|
||||
inline virtual bool get_drawLine() const
|
||||
{
|
||||
return this->drawLine;
|
||||
}
|
||||
/*! \brief sets the property drawSelectionLine to the specified \a __value.
|
||||
\details Description of the parameter drawSelectionLine is: <BLOCKQUOTE>\copybrief drawSelectionLine </BLOCKQUOTE>
|
||||
\details Description of the parameter drawSelectionLine is: <BLOCKQUOTE>\copydoc drawSelectionLine </BLOCKQUOTE>
|
||||
\see drawSelectionLine for more information */
|
||||
inline virtual void set_drawSelectionLine(bool __value)
|
||||
{
|
||||
this->drawSelectionLine = __value;
|
||||
}
|
||||
/*! \brief returns the property drawSelectionLine.
|
||||
\details Description of the parameter drawSelectionLine is: <BLOCKQUOTE>\copybrief drawSelectionLine </BLOCKQUOTE>
|
||||
\details Description of the parameter drawSelectionLine is: <BLOCKQUOTE>\copydoc drawSelectionLine </BLOCKQUOTE>
|
||||
\see drawSelectionLine for more information */
|
||||
inline virtual bool get_drawSelectionLine() const
|
||||
{
|
||||
return this->drawSelectionLine;
|
||||
}
|
||||
/*! \brief sets the property selectionLineColor to the specified \a __value.
|
||||
\details Description of the parameter selectionLineColor is: <BLOCKQUOTE>\copybrief selectionLineColor </BLOCKQUOTE>
|
||||
\details Description of the parameter selectionLineColor is: <BLOCKQUOTE>\copydoc selectionLineColor </BLOCKQUOTE>
|
||||
\see selectionLineColor for more information */
|
||||
inline virtual void set_selectionLineColor(const QColor & __value)
|
||||
{
|
||||
this->selectionLineColor = __value;
|
||||
}
|
||||
/*! \brief returns the property selectionLineColor.
|
||||
\details Description of the parameter selectionLineColor is: <BLOCKQUOTE>\copybrief selectionLineColor </BLOCKQUOTE>
|
||||
\details Description of the parameter selectionLineColor is: <BLOCKQUOTE>\copydoc selectionLineColor </BLOCKQUOTE>
|
||||
\see selectionLineColor for more information */
|
||||
inline virtual QColor get_selectionLineColor() const
|
||||
{
|
||||
@ -271,142 +271,142 @@ class LIB_EXPORT JKQTPXYParametrizedScatterGraph: public JKQTPXYLineGraph, publi
|
||||
virtual QColor getKeyLabelColor() override;
|
||||
|
||||
/*! \brief sets the property sizeColumn to the specified \a __value.
|
||||
\details Description of the parameter sizeColumn is: <BLOCKQUOTE>\copybrief sizeColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter sizeColumn is: <BLOCKQUOTE>\copydoc sizeColumn </BLOCKQUOTE>
|
||||
\see sizeColumn for more information */
|
||||
inline virtual void set_sizeColumn(int __value)
|
||||
{
|
||||
this->sizeColumn = __value;
|
||||
}
|
||||
/*! \brief returns the property sizeColumn.
|
||||
\details Description of the parameter sizeColumn is: <BLOCKQUOTE>\copybrief sizeColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter sizeColumn is: <BLOCKQUOTE>\copydoc sizeColumn </BLOCKQUOTE>
|
||||
\see sizeColumn for more information */
|
||||
inline virtual int get_sizeColumn() const
|
||||
{
|
||||
return this->sizeColumn;
|
||||
}
|
||||
/*! \brief sets the property sizeColumn to the specified \a __value, where __value is static_cast'ed from size_t to int.
|
||||
\details Description of the parameter sizeColumn is: <BLOCKQUOTE>\copybrief sizeColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter sizeColumn is: <BLOCKQUOTE>\copydoc sizeColumn </BLOCKQUOTE>
|
||||
\see sizeColumn for more information */
|
||||
inline virtual void set_sizeColumn (size_t __value) { this->sizeColumn = static_cast<int>(__value); }
|
||||
/*! \brief sets the property colorColumn to the specified \a __value.
|
||||
\details Description of the parameter colorColumn is: <BLOCKQUOTE>\copybrief colorColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter colorColumn is: <BLOCKQUOTE>\copydoc colorColumn </BLOCKQUOTE>
|
||||
\see colorColumn for more information */
|
||||
inline virtual void set_colorColumn(int __value)
|
||||
{
|
||||
this->colorColumn = __value;
|
||||
}
|
||||
/*! \brief returns the property colorColumn.
|
||||
\details Description of the parameter colorColumn is: <BLOCKQUOTE>\copybrief colorColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter colorColumn is: <BLOCKQUOTE>\copydoc colorColumn </BLOCKQUOTE>
|
||||
\see colorColumn for more information */
|
||||
inline virtual int get_colorColumn() const
|
||||
{
|
||||
return this->colorColumn;
|
||||
}
|
||||
/*! \brief sets the property colorColumn to the specified \a __value, where __value is static_cast'ed from size_t to int.
|
||||
\details Description of the parameter colorColumn is: <BLOCKQUOTE>\copybrief colorColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter colorColumn is: <BLOCKQUOTE>\copydoc colorColumn </BLOCKQUOTE>
|
||||
\see colorColumn for more information */
|
||||
inline virtual void set_colorColumn (size_t __value) { this->colorColumn = static_cast<int>(__value); }
|
||||
/*! \brief sets the property symbolColumn to the specified \a __value.
|
||||
\details Description of the parameter symbolColumn is: <BLOCKQUOTE>\copybrief symbolColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter symbolColumn is: <BLOCKQUOTE>\copydoc symbolColumn </BLOCKQUOTE>
|
||||
\see symbolColumn for more information */
|
||||
inline virtual void set_symbolColumn(int __value)
|
||||
{
|
||||
this->symbolColumn = __value;
|
||||
}
|
||||
/*! \brief returns the property symbolColumn.
|
||||
\details Description of the parameter symbolColumn is: <BLOCKQUOTE>\copybrief symbolColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter symbolColumn is: <BLOCKQUOTE>\copydoc symbolColumn </BLOCKQUOTE>
|
||||
\see symbolColumn for more information */
|
||||
inline virtual int get_symbolColumn() const
|
||||
{
|
||||
return this->symbolColumn;
|
||||
}
|
||||
/*! \brief sets the property symbolColumn to the specified \a __value, where __value is static_cast'ed from size_t to int.
|
||||
\details Description of the parameter symbolColumn is: <BLOCKQUOTE>\copybrief symbolColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter symbolColumn is: <BLOCKQUOTE>\copydoc symbolColumn </BLOCKQUOTE>
|
||||
\see symbolColumn for more information */
|
||||
inline virtual void set_symbolColumn (size_t __value) { this->symbolColumn = static_cast<int>(__value); }
|
||||
/*! \brief sets the property linewidthColumn to the specified \a __value.
|
||||
\details Description of the parameter linewidthColumn is: <BLOCKQUOTE>\copybrief linewidthColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter linewidthColumn is: <BLOCKQUOTE>\copydoc linewidthColumn </BLOCKQUOTE>
|
||||
\see linewidthColumn for more information */
|
||||
inline virtual void set_linewidthColumn(int __value)
|
||||
{
|
||||
this->linewidthColumn = __value;
|
||||
}
|
||||
/*! \brief returns the property linewidthColumn.
|
||||
\details Description of the parameter linewidthColumn is: <BLOCKQUOTE>\copybrief linewidthColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter linewidthColumn is: <BLOCKQUOTE>\copydoc linewidthColumn </BLOCKQUOTE>
|
||||
\see linewidthColumn for more information */
|
||||
inline virtual int get_linewidthColumn() const
|
||||
{
|
||||
return this->linewidthColumn;
|
||||
}
|
||||
/*! \brief sets the property linewidthColumn to the specified \a __value, where __value is static_cast'ed from size_t to int.
|
||||
\details Description of the parameter linewidthColumn is: <BLOCKQUOTE>\copybrief linewidthColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter linewidthColumn is: <BLOCKQUOTE>\copydoc linewidthColumn </BLOCKQUOTE>
|
||||
\see linewidthColumn for more information */
|
||||
inline virtual void set_linewidthColumn( size_t __value) { this->linewidthColumn = static_cast<int>(__value); }
|
||||
/*! \brief sets the property colorColumnContainsRGB to the specified \a __value.
|
||||
\details Description of the parameter colorColumnContainsRGB is: <BLOCKQUOTE>\copybrief colorColumnContainsRGB </BLOCKQUOTE>
|
||||
\details Description of the parameter colorColumnContainsRGB is: <BLOCKQUOTE>\copydoc colorColumnContainsRGB </BLOCKQUOTE>
|
||||
\see colorColumnContainsRGB for more information */
|
||||
inline virtual void set_colorColumnContainsRGB(bool __value)
|
||||
{
|
||||
this->colorColumnContainsRGB = __value;
|
||||
}
|
||||
/*! \brief returns the property colorColumnContainsRGB.
|
||||
\details Description of the parameter colorColumnContainsRGB is: <BLOCKQUOTE>\copybrief colorColumnContainsRGB </BLOCKQUOTE>
|
||||
\details Description of the parameter colorColumnContainsRGB is: <BLOCKQUOTE>\copydoc colorColumnContainsRGB </BLOCKQUOTE>
|
||||
\see colorColumnContainsRGB for more information */
|
||||
inline virtual bool get_colorColumnContainsRGB() const
|
||||
{
|
||||
return this->colorColumnContainsRGB;
|
||||
}
|
||||
/*! \brief sets the property gridModeForSymbolSize to the specified \a __value.
|
||||
\details Description of the parameter gridModeForSymbolSize is: <BLOCKQUOTE>\copybrief gridModeForSymbolSize </BLOCKQUOTE>
|
||||
\details Description of the parameter gridModeForSymbolSize is: <BLOCKQUOTE>\copydoc gridModeForSymbolSize </BLOCKQUOTE>
|
||||
\see gridModeForSymbolSize for more information */
|
||||
inline virtual void set_gridModeForSymbolSize(bool __value)
|
||||
{
|
||||
this->gridModeForSymbolSize = __value;
|
||||
}
|
||||
/*! \brief returns the property gridModeForSymbolSize.
|
||||
\details Description of the parameter gridModeForSymbolSize is: <BLOCKQUOTE>\copybrief gridModeForSymbolSize </BLOCKQUOTE>
|
||||
\details Description of the parameter gridModeForSymbolSize is: <BLOCKQUOTE>\copydoc gridModeForSymbolSize </BLOCKQUOTE>
|
||||
\see gridModeForSymbolSize for more information */
|
||||
inline virtual bool get_gridModeForSymbolSize() const
|
||||
{
|
||||
return this->gridModeForSymbolSize;
|
||||
}
|
||||
/*! \brief sets the property gridDeltaX to the specified \a __value.
|
||||
\details Description of the parameter gridDeltaX is: <BLOCKQUOTE>\copybrief gridDeltaX </BLOCKQUOTE>
|
||||
\details Description of the parameter gridDeltaX is: <BLOCKQUOTE>\copydoc gridDeltaX </BLOCKQUOTE>
|
||||
\see gridDeltaX for more information */
|
||||
inline virtual void set_gridDeltaX(double __value)
|
||||
{
|
||||
this->gridDeltaX = __value;
|
||||
}
|
||||
/*! \brief returns the property gridDeltaX.
|
||||
\details Description of the parameter gridDeltaX is: <BLOCKQUOTE>\copybrief gridDeltaX </BLOCKQUOTE>
|
||||
\details Description of the parameter gridDeltaX is: <BLOCKQUOTE>\copydoc gridDeltaX </BLOCKQUOTE>
|
||||
\see gridDeltaX for more information */
|
||||
inline virtual double get_gridDeltaX() const
|
||||
{
|
||||
return this->gridDeltaX;
|
||||
}
|
||||
/*! \brief sets the property gridDeltaY to the specified \a __value.
|
||||
\details Description of the parameter gridDeltaY is: <BLOCKQUOTE>\copybrief gridDeltaY </BLOCKQUOTE>
|
||||
\details Description of the parameter gridDeltaY is: <BLOCKQUOTE>\copydoc gridDeltaY </BLOCKQUOTE>
|
||||
\see gridDeltaY for more information */
|
||||
inline virtual void set_gridDeltaY(double __value)
|
||||
{
|
||||
this->gridDeltaY = __value;
|
||||
}
|
||||
/*! \brief returns the property gridDeltaY.
|
||||
\details Description of the parameter gridDeltaY is: <BLOCKQUOTE>\copybrief gridDeltaY </BLOCKQUOTE>
|
||||
\details Description of the parameter gridDeltaY is: <BLOCKQUOTE>\copydoc gridDeltaY </BLOCKQUOTE>
|
||||
\see gridDeltaY for more information */
|
||||
inline virtual double get_gridDeltaY() const
|
||||
{
|
||||
return this->gridDeltaY;
|
||||
}
|
||||
/*! \brief sets the property gridSymbolFractionSize to the specified \a __value.
|
||||
\details Description of the parameter gridSymbolFractionSize is: <BLOCKQUOTE>\copybrief gridSymbolFractionSize </BLOCKQUOTE>
|
||||
\details Description of the parameter gridSymbolFractionSize is: <BLOCKQUOTE>\copydoc gridSymbolFractionSize </BLOCKQUOTE>
|
||||
\see gridSymbolFractionSize for more information */
|
||||
inline virtual void set_gridSymbolFractionSize(double __value)
|
||||
{
|
||||
this->gridSymbolFractionSize = __value;
|
||||
}
|
||||
/*! \brief returns the property gridSymbolFractionSize.
|
||||
\details Description of the parameter gridSymbolFractionSize is: <BLOCKQUOTE>\copybrief gridSymbolFractionSize </BLOCKQUOTE>
|
||||
\details Description of the parameter gridSymbolFractionSize is: <BLOCKQUOTE>\copydoc gridSymbolFractionSize </BLOCKQUOTE>
|
||||
\see gridSymbolFractionSize for more information */
|
||||
inline virtual double get_gridSymbolFractionSize() const
|
||||
{
|
||||
@ -585,112 +585,112 @@ class LIB_EXPORT JKQTPStepHorizontalGraph: public JKQTPXYGraph {
|
||||
virtual QColor getKeyLabelColor() override;
|
||||
|
||||
/*! \brief sets the property color to the specified \a __value.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual void set_color(const QColor & __value)
|
||||
{
|
||||
this->color = __value;
|
||||
}
|
||||
/*! \brief returns the property color.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual QColor get_color() const
|
||||
{
|
||||
return this->color;
|
||||
}
|
||||
/*! \brief sets the property fillColor to the specified \a __value.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual void set_fillColor(const QColor & __value)
|
||||
{
|
||||
this->fillColor = __value;
|
||||
}
|
||||
/*! \brief returns the property fillColor.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual QColor get_fillColor() const
|
||||
{
|
||||
return this->fillColor;
|
||||
}
|
||||
/*! \brief sets the property fillStyle to the specified \a __value.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual void set_fillStyle(const Qt::BrushStyle & __value)
|
||||
{
|
||||
this->fillStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property fillStyle.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual Qt::BrushStyle get_fillStyle() const
|
||||
{
|
||||
return this->fillStyle;
|
||||
}
|
||||
/*! \brief sets the property style to the specified \a __value.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual void set_style(const Qt::PenStyle & __value)
|
||||
{
|
||||
this->style = __value;
|
||||
}
|
||||
/*! \brief returns the property style.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual Qt::PenStyle get_style() const
|
||||
{
|
||||
return this->style;
|
||||
}
|
||||
/*! \brief sets the property lineWidth to the specified \a __value.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual void set_lineWidth(double __value)
|
||||
{
|
||||
this->lineWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property lineWidth.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual double get_lineWidth() const
|
||||
{
|
||||
return this->lineWidth;
|
||||
}
|
||||
/*! \brief sets the property drawLine to the specified \a __value.
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copybrief drawLine </BLOCKQUOTE>
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copydoc drawLine </BLOCKQUOTE>
|
||||
\see drawLine for more information */
|
||||
inline virtual void set_drawLine(bool __value)
|
||||
{
|
||||
this->drawLine = __value;
|
||||
}
|
||||
/*! \brief returns the property drawLine.
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copybrief drawLine </BLOCKQUOTE>
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copydoc drawLine </BLOCKQUOTE>
|
||||
\see drawLine for more information */
|
||||
inline virtual bool get_drawLine() const
|
||||
{
|
||||
return this->drawLine;
|
||||
}
|
||||
/*! \brief sets the property fillCurve to the specified \a __value.
|
||||
\details Description of the parameter fillCurve is: <BLOCKQUOTE>\copybrief fillCurve </BLOCKQUOTE>
|
||||
\details Description of the parameter fillCurve is: <BLOCKQUOTE>\copydoc fillCurve </BLOCKQUOTE>
|
||||
\see fillCurve for more information */
|
||||
inline virtual void set_fillCurve(bool __value)
|
||||
{
|
||||
this->fillCurve = __value;
|
||||
}
|
||||
/*! \brief returns the property fillCurve.
|
||||
\details Description of the parameter fillCurve is: <BLOCKQUOTE>\copybrief fillCurve </BLOCKQUOTE>
|
||||
\details Description of the parameter fillCurve is: <BLOCKQUOTE>\copydoc fillCurve </BLOCKQUOTE>
|
||||
\see fillCurve for more information */
|
||||
inline virtual bool get_fillCurve() const
|
||||
{
|
||||
return this->fillCurve;
|
||||
}
|
||||
/*! \brief sets the property stepType to the specified \a __value.
|
||||
\details Description of the parameter stepType is: <BLOCKQUOTE>\copybrief stepType </BLOCKQUOTE>
|
||||
\details Description of the parameter stepType is: <BLOCKQUOTE>\copydoc stepType </BLOCKQUOTE>
|
||||
\see stepType for more information */
|
||||
inline virtual void set_stepType(const JKQTPStepType & __value)
|
||||
{
|
||||
this->stepType = __value;
|
||||
}
|
||||
/*! \brief returns the property stepType.
|
||||
\details Description of the parameter stepType is: <BLOCKQUOTE>\copybrief stepType </BLOCKQUOTE>
|
||||
\details Description of the parameter stepType is: <BLOCKQUOTE>\copydoc stepType </BLOCKQUOTE>
|
||||
\see stepType for more information */
|
||||
inline virtual JKQTPStepType get_stepType() const
|
||||
{
|
||||
@ -796,196 +796,196 @@ class LIB_EXPORT JKQTPHorizontalRange: public JKQTPGraph {
|
||||
void setDrawCenterLineOnly();
|
||||
|
||||
/*! \brief sets the property color to the specified \a __value.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual void set_color(const QColor & __value)
|
||||
{
|
||||
this->color = __value;
|
||||
}
|
||||
/*! \brief returns the property color.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual QColor get_color() const
|
||||
{
|
||||
return this->color;
|
||||
}
|
||||
/*! \brief sets the property fillColor to the specified \a __value.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual void set_fillColor(const QColor & __value)
|
||||
{
|
||||
this->fillColor = __value;
|
||||
}
|
||||
/*! \brief returns the property fillColor.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual QColor get_fillColor() const
|
||||
{
|
||||
return this->fillColor;
|
||||
}
|
||||
/*! \brief sets the property fillStyle to the specified \a __value.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual void set_fillStyle(const Qt::BrushStyle & __value)
|
||||
{
|
||||
this->fillStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property fillStyle.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual Qt::BrushStyle get_fillStyle() const
|
||||
{
|
||||
return this->fillStyle;
|
||||
}
|
||||
/*! \brief sets the property style to the specified \a __value.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual void set_style(const Qt::PenStyle & __value)
|
||||
{
|
||||
this->style = __value;
|
||||
}
|
||||
/*! \brief returns the property style.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual Qt::PenStyle get_style() const
|
||||
{
|
||||
return this->style;
|
||||
}
|
||||
/*! \brief sets the property lineWidth to the specified \a __value.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual void set_lineWidth(double __value)
|
||||
{
|
||||
this->lineWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property lineWidth.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual double get_lineWidth() const
|
||||
{
|
||||
return this->lineWidth;
|
||||
}
|
||||
/*! \brief sets the property centerColor to the specified \a __value.
|
||||
\details Description of the parameter centerColor is: <BLOCKQUOTE>\copybrief centerColor </BLOCKQUOTE>
|
||||
\details Description of the parameter centerColor is: <BLOCKQUOTE>\copydoc centerColor </BLOCKQUOTE>
|
||||
\see centerColor for more information */
|
||||
inline virtual void set_centerColor(const QColor & __value)
|
||||
{
|
||||
this->centerColor = __value;
|
||||
}
|
||||
/*! \brief returns the property centerColor.
|
||||
\details Description of the parameter centerColor is: <BLOCKQUOTE>\copybrief centerColor </BLOCKQUOTE>
|
||||
\details Description of the parameter centerColor is: <BLOCKQUOTE>\copydoc centerColor </BLOCKQUOTE>
|
||||
\see centerColor for more information */
|
||||
inline virtual QColor get_centerColor() const
|
||||
{
|
||||
return this->centerColor;
|
||||
}
|
||||
/*! \brief sets the property centerStyle to the specified \a __value.
|
||||
\details Description of the parameter centerStyle is: <BLOCKQUOTE>\copybrief centerStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter centerStyle is: <BLOCKQUOTE>\copydoc centerStyle </BLOCKQUOTE>
|
||||
\see centerStyle for more information */
|
||||
inline virtual void set_centerStyle(const Qt::PenStyle & __value)
|
||||
{
|
||||
this->centerStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property centerStyle.
|
||||
\details Description of the parameter centerStyle is: <BLOCKQUOTE>\copybrief centerStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter centerStyle is: <BLOCKQUOTE>\copydoc centerStyle </BLOCKQUOTE>
|
||||
\see centerStyle for more information */
|
||||
inline virtual Qt::PenStyle get_centerStyle() const
|
||||
{
|
||||
return this->centerStyle;
|
||||
}
|
||||
/*! \brief sets the property centerLineWidth to the specified \a __value.
|
||||
\details Description of the parameter centerLineWidth is: <BLOCKQUOTE>\copybrief centerLineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter centerLineWidth is: <BLOCKQUOTE>\copydoc centerLineWidth </BLOCKQUOTE>
|
||||
\see centerLineWidth for more information */
|
||||
inline virtual void set_centerLineWidth(double __value)
|
||||
{
|
||||
this->centerLineWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property centerLineWidth.
|
||||
\details Description of the parameter centerLineWidth is: <BLOCKQUOTE>\copybrief centerLineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter centerLineWidth is: <BLOCKQUOTE>\copydoc centerLineWidth </BLOCKQUOTE>
|
||||
\see centerLineWidth for more information */
|
||||
inline virtual double get_centerLineWidth() const
|
||||
{
|
||||
return this->centerLineWidth;
|
||||
}
|
||||
/*! \brief sets the property rangeMin to the specified \a __value.
|
||||
\details Description of the parameter rangeMin is: <BLOCKQUOTE>\copybrief rangeMin </BLOCKQUOTE>
|
||||
\details Description of the parameter rangeMin is: <BLOCKQUOTE>\copydoc rangeMin </BLOCKQUOTE>
|
||||
\see rangeMin for more information */
|
||||
inline virtual void set_rangeMin(double __value)
|
||||
{
|
||||
this->rangeMin = __value;
|
||||
}
|
||||
/*! \brief returns the property rangeMin.
|
||||
\details Description of the parameter rangeMin is: <BLOCKQUOTE>\copybrief rangeMin </BLOCKQUOTE>
|
||||
\details Description of the parameter rangeMin is: <BLOCKQUOTE>\copydoc rangeMin </BLOCKQUOTE>
|
||||
\see rangeMin for more information */
|
||||
inline virtual double get_rangeMin() const
|
||||
{
|
||||
return this->rangeMin;
|
||||
}
|
||||
/*! \brief sets the property rangeMax to the specified \a __value.
|
||||
\details Description of the parameter rangeMax is: <BLOCKQUOTE>\copybrief rangeMax </BLOCKQUOTE>
|
||||
\details Description of the parameter rangeMax is: <BLOCKQUOTE>\copydoc rangeMax </BLOCKQUOTE>
|
||||
\see rangeMax for more information */
|
||||
inline virtual void set_rangeMax(double __value)
|
||||
{
|
||||
this->rangeMax = __value;
|
||||
}
|
||||
/*! \brief returns the property rangeMax.
|
||||
\details Description of the parameter rangeMax is: <BLOCKQUOTE>\copybrief rangeMax </BLOCKQUOTE>
|
||||
\details Description of the parameter rangeMax is: <BLOCKQUOTE>\copydoc rangeMax </BLOCKQUOTE>
|
||||
\see rangeMax for more information */
|
||||
inline virtual double get_rangeMax() const
|
||||
{
|
||||
return this->rangeMax;
|
||||
}
|
||||
/*! \brief sets the property sizeMin to the specified \a __value.
|
||||
\details Description of the parameter sizeMin is: <BLOCKQUOTE>\copybrief sizeMin </BLOCKQUOTE>
|
||||
\details Description of the parameter sizeMin is: <BLOCKQUOTE>\copydoc sizeMin </BLOCKQUOTE>
|
||||
\see sizeMin for more information */
|
||||
inline virtual void set_sizeMin(double __value)
|
||||
{
|
||||
this->sizeMin = __value;
|
||||
}
|
||||
/*! \brief returns the property sizeMin.
|
||||
\details Description of the parameter sizeMin is: <BLOCKQUOTE>\copybrief sizeMin </BLOCKQUOTE>
|
||||
\details Description of the parameter sizeMin is: <BLOCKQUOTE>\copydoc sizeMin </BLOCKQUOTE>
|
||||
\see sizeMin for more information */
|
||||
inline virtual double get_sizeMin() const
|
||||
{
|
||||
return this->sizeMin;
|
||||
}
|
||||
/*! \brief sets the property sizeMax to the specified \a __value.
|
||||
\details Description of the parameter sizeMax is: <BLOCKQUOTE>\copybrief sizeMax </BLOCKQUOTE>
|
||||
\details Description of the parameter sizeMax is: <BLOCKQUOTE>\copydoc sizeMax </BLOCKQUOTE>
|
||||
\see sizeMax for more information */
|
||||
inline virtual void set_sizeMax(double __value)
|
||||
{
|
||||
this->sizeMax = __value;
|
||||
}
|
||||
/*! \brief returns the property sizeMax.
|
||||
\details Description of the parameter sizeMax is: <BLOCKQUOTE>\copybrief sizeMax </BLOCKQUOTE>
|
||||
\details Description of the parameter sizeMax is: <BLOCKQUOTE>\copydoc sizeMax </BLOCKQUOTE>
|
||||
\see sizeMax for more information */
|
||||
inline virtual double get_sizeMax() const
|
||||
{
|
||||
return this->sizeMax;
|
||||
}
|
||||
/*! \brief sets the property unlimitedSizeMin to the specified \a __value.
|
||||
\details Description of the parameter unlimitedSizeMin is: <BLOCKQUOTE>\copybrief unlimitedSizeMin </BLOCKQUOTE>
|
||||
\details Description of the parameter unlimitedSizeMin is: <BLOCKQUOTE>\copydoc unlimitedSizeMin </BLOCKQUOTE>
|
||||
\see unlimitedSizeMin for more information */
|
||||
inline virtual void set_unlimitedSizeMin(bool __value)
|
||||
{
|
||||
this->unlimitedSizeMin = __value;
|
||||
}
|
||||
/*! \brief returns the property unlimitedSizeMin.
|
||||
\details Description of the parameter unlimitedSizeMin is: <BLOCKQUOTE>\copybrief unlimitedSizeMin </BLOCKQUOTE>
|
||||
\details Description of the parameter unlimitedSizeMin is: <BLOCKQUOTE>\copydoc unlimitedSizeMin </BLOCKQUOTE>
|
||||
\see unlimitedSizeMin for more information */
|
||||
inline virtual bool get_unlimitedSizeMin() const
|
||||
{
|
||||
return this->unlimitedSizeMin;
|
||||
}
|
||||
/*! \brief sets the property unlimitedSizeMax to the specified \a __value.
|
||||
\details Description of the parameter unlimitedSizeMax is: <BLOCKQUOTE>\copybrief unlimitedSizeMax </BLOCKQUOTE>
|
||||
\details Description of the parameter unlimitedSizeMax is: <BLOCKQUOTE>\copydoc unlimitedSizeMax </BLOCKQUOTE>
|
||||
\see unlimitedSizeMax for more information */
|
||||
inline virtual void set_unlimitedSizeMax(bool __value)
|
||||
{
|
||||
this->unlimitedSizeMax = __value;
|
||||
}
|
||||
/*! \brief returns the property unlimitedSizeMax.
|
||||
\details Description of the parameter unlimitedSizeMax is: <BLOCKQUOTE>\copybrief unlimitedSizeMax </BLOCKQUOTE>
|
||||
\details Description of the parameter unlimitedSizeMax is: <BLOCKQUOTE>\copydoc unlimitedSizeMax </BLOCKQUOTE>
|
||||
\see unlimitedSizeMax for more information */
|
||||
inline virtual bool get_unlimitedSizeMax() const
|
||||
{
|
||||
@ -993,84 +993,84 @@ class LIB_EXPORT JKQTPHorizontalRange: public JKQTPGraph {
|
||||
}
|
||||
|
||||
/*! \brief sets the property rangeCenter to the specified \a __value.
|
||||
\details Description of the parameter rangeCenter is: <BLOCKQUOTE>\copybrief rangeCenter </BLOCKQUOTE>
|
||||
\details Description of the parameter rangeCenter is: <BLOCKQUOTE>\copydoc rangeCenter </BLOCKQUOTE>
|
||||
\see rangeCenter for more information */
|
||||
inline virtual void set_rangeCenter(double __value)
|
||||
{
|
||||
this->rangeCenter = __value;
|
||||
}
|
||||
/*! \brief returns the property rangeCenter.
|
||||
\details Description of the parameter rangeCenter is: <BLOCKQUOTE>\copybrief rangeCenter </BLOCKQUOTE>
|
||||
\details Description of the parameter rangeCenter is: <BLOCKQUOTE>\copydoc rangeCenter </BLOCKQUOTE>
|
||||
\see rangeCenter for more information */
|
||||
inline virtual double get_rangeCenter() const
|
||||
{
|
||||
return this->rangeCenter;
|
||||
}
|
||||
/*! \brief sets the property plotCenterLine to the specified \a __value.
|
||||
\details Description of the parameter plotCenterLine is: <BLOCKQUOTE>\copybrief plotCenterLine </BLOCKQUOTE>
|
||||
\details Description of the parameter plotCenterLine is: <BLOCKQUOTE>\copydoc plotCenterLine </BLOCKQUOTE>
|
||||
\see plotCenterLine for more information */
|
||||
inline virtual void set_plotCenterLine(bool __value)
|
||||
{
|
||||
this->plotCenterLine = __value;
|
||||
}
|
||||
/*! \brief returns the property plotCenterLine.
|
||||
\details Description of the parameter plotCenterLine is: <BLOCKQUOTE>\copybrief plotCenterLine </BLOCKQUOTE>
|
||||
\details Description of the parameter plotCenterLine is: <BLOCKQUOTE>\copydoc plotCenterLine </BLOCKQUOTE>
|
||||
\see plotCenterLine for more information */
|
||||
inline virtual bool get_plotCenterLine() const
|
||||
{
|
||||
return this->plotCenterLine;
|
||||
}
|
||||
/*! \brief sets the property invertedRange to the specified \a __value.
|
||||
\details Description of the parameter invertedRange is: <BLOCKQUOTE>\copybrief invertedRange </BLOCKQUOTE>
|
||||
\details Description of the parameter invertedRange is: <BLOCKQUOTE>\copydoc invertedRange </BLOCKQUOTE>
|
||||
\see invertedRange for more information */
|
||||
inline virtual void set_invertedRange(bool __value)
|
||||
{
|
||||
this->invertedRange = __value;
|
||||
}
|
||||
/*! \brief returns the property invertedRange.
|
||||
\details Description of the parameter invertedRange is: <BLOCKQUOTE>\copybrief invertedRange </BLOCKQUOTE>
|
||||
\details Description of the parameter invertedRange is: <BLOCKQUOTE>\copydoc invertedRange </BLOCKQUOTE>
|
||||
\see invertedRange for more information */
|
||||
inline virtual bool get_invertedRange() const
|
||||
{
|
||||
return this->invertedRange;
|
||||
}
|
||||
/*! \brief sets the property plotRange to the specified \a __value.
|
||||
\details Description of the parameter plotRange is: <BLOCKQUOTE>\copybrief plotRange </BLOCKQUOTE>
|
||||
\details Description of the parameter plotRange is: <BLOCKQUOTE>\copydoc plotRange </BLOCKQUOTE>
|
||||
\see plotRange for more information */
|
||||
inline virtual void set_plotRange(bool __value)
|
||||
{
|
||||
this->plotRange = __value;
|
||||
}
|
||||
/*! \brief returns the property plotRange.
|
||||
\details Description of the parameter plotRange is: <BLOCKQUOTE>\copybrief plotRange </BLOCKQUOTE>
|
||||
\details Description of the parameter plotRange is: <BLOCKQUOTE>\copydoc plotRange </BLOCKQUOTE>
|
||||
\see plotRange for more information */
|
||||
inline virtual bool get_plotRange() const
|
||||
{
|
||||
return this->plotRange;
|
||||
}
|
||||
/*! \brief sets the property fillRange to the specified \a __value.
|
||||
\details Description of the parameter fillRange is: <BLOCKQUOTE>\copybrief fillRange </BLOCKQUOTE>
|
||||
\details Description of the parameter fillRange is: <BLOCKQUOTE>\copydoc fillRange </BLOCKQUOTE>
|
||||
\see fillRange for more information */
|
||||
inline virtual void set_fillRange(bool __value)
|
||||
{
|
||||
this->fillRange = __value;
|
||||
}
|
||||
/*! \brief returns the property fillRange.
|
||||
\details Description of the parameter fillRange is: <BLOCKQUOTE>\copybrief fillRange </BLOCKQUOTE>
|
||||
\details Description of the parameter fillRange is: <BLOCKQUOTE>\copydoc fillRange </BLOCKQUOTE>
|
||||
\see fillRange for more information */
|
||||
inline virtual bool get_fillRange() const
|
||||
{
|
||||
return this->fillRange;
|
||||
}
|
||||
/*! \brief sets the property plotRangeLines to the specified \a __value.
|
||||
\details Description of the parameter plotRangeLines is: <BLOCKQUOTE>\copybrief plotRangeLines </BLOCKQUOTE>
|
||||
\details Description of the parameter plotRangeLines is: <BLOCKQUOTE>\copydoc plotRangeLines </BLOCKQUOTE>
|
||||
\see plotRangeLines for more information */
|
||||
inline virtual void set_plotRangeLines(bool __value)
|
||||
{
|
||||
this->plotRangeLines = __value;
|
||||
}
|
||||
/*! \brief returns the property plotRangeLines.
|
||||
\details Description of the parameter plotRangeLines is: <BLOCKQUOTE>\copybrief plotRangeLines </BLOCKQUOTE>
|
||||
\details Description of the parameter plotRangeLines is: <BLOCKQUOTE>\copydoc plotRangeLines </BLOCKQUOTE>
|
||||
\see plotRangeLines for more information */
|
||||
inline virtual bool get_plotRangeLines() const
|
||||
{
|
||||
|
@ -99,112 +99,112 @@ class LIB_EXPORT JKQTPBarVerticalGraph: public JKQTPXYGraph {
|
||||
virtual bool isHorizontal() const;
|
||||
|
||||
/*! \brief sets the property color to the specified \a __value.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual void set_color(const QColor & __value)
|
||||
{
|
||||
this->color = __value;
|
||||
}
|
||||
/*! \brief returns the property color.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual QColor get_color() const
|
||||
{
|
||||
return this->color;
|
||||
}
|
||||
/*! \brief sets the property fillColor to the specified \a __value.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual void set_fillColor(const QColor & __value)
|
||||
{
|
||||
this->fillColor = __value;
|
||||
}
|
||||
/*! \brief returns the property fillColor.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual QColor get_fillColor() const
|
||||
{
|
||||
return this->fillColor;
|
||||
}
|
||||
/*! \brief sets the property fillStyle to the specified \a __value.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual void set_fillStyle(const Qt::BrushStyle & __value)
|
||||
{
|
||||
this->fillStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property fillStyle.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual Qt::BrushStyle get_fillStyle() const
|
||||
{
|
||||
return this->fillStyle;
|
||||
}
|
||||
/*! \brief sets the property style to the specified \a __value.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual void set_style(const Qt::PenStyle & __value)
|
||||
{
|
||||
this->style = __value;
|
||||
}
|
||||
/*! \brief returns the property style.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual Qt::PenStyle get_style() const
|
||||
{
|
||||
return this->style;
|
||||
}
|
||||
/*! \brief sets the property lineWidth to the specified \a __value.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual void set_lineWidth(double __value)
|
||||
{
|
||||
this->lineWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property lineWidth.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual double get_lineWidth() const
|
||||
{
|
||||
return this->lineWidth;
|
||||
}
|
||||
/*! \brief sets the property shift to the specified \a __value.
|
||||
\details Description of the parameter shift is: <BLOCKQUOTE>\copybrief shift </BLOCKQUOTE>
|
||||
\details Description of the parameter shift is: <BLOCKQUOTE>\copydoc shift </BLOCKQUOTE>
|
||||
\see shift for more information */
|
||||
inline virtual void set_shift(double __value)
|
||||
{
|
||||
this->shift = __value;
|
||||
}
|
||||
/*! \brief returns the property shift.
|
||||
\details Description of the parameter shift is: <BLOCKQUOTE>\copybrief shift </BLOCKQUOTE>
|
||||
\details Description of the parameter shift is: <BLOCKQUOTE>\copydoc shift </BLOCKQUOTE>
|
||||
\see shift for more information */
|
||||
inline virtual double get_shift() const
|
||||
{
|
||||
return this->shift;
|
||||
}
|
||||
/*! \brief sets the property width to the specified \a __value.
|
||||
\details Description of the parameter width is: <BLOCKQUOTE>\copybrief width </BLOCKQUOTE>
|
||||
\details Description of the parameter width is: <BLOCKQUOTE>\copydoc width </BLOCKQUOTE>
|
||||
\see width for more information */
|
||||
inline virtual void set_width(double __value)
|
||||
{
|
||||
this->width = __value;
|
||||
}
|
||||
/*! \brief returns the property width.
|
||||
\details Description of the parameter width is: <BLOCKQUOTE>\copybrief width </BLOCKQUOTE>
|
||||
\details Description of the parameter width is: <BLOCKQUOTE>\copydoc width </BLOCKQUOTE>
|
||||
\see width for more information */
|
||||
inline virtual double get_width() const
|
||||
{
|
||||
return this->width;
|
||||
}
|
||||
/*! \brief sets the property baseline to the specified \a __value.
|
||||
\details Description of the parameter baseline is: <BLOCKQUOTE>\copybrief baseline </BLOCKQUOTE>
|
||||
\details Description of the parameter baseline is: <BLOCKQUOTE>\copydoc baseline </BLOCKQUOTE>
|
||||
\see baseline for more information */
|
||||
inline virtual void set_baseline(double __value)
|
||||
{
|
||||
this->baseline = __value;
|
||||
}
|
||||
/*! \brief returns the property baseline.
|
||||
\details Description of the parameter baseline is: <BLOCKQUOTE>\copybrief baseline </BLOCKQUOTE>
|
||||
\details Description of the parameter baseline is: <BLOCKQUOTE>\copydoc baseline </BLOCKQUOTE>
|
||||
\see baseline for more information */
|
||||
inline virtual double get_baseline() const
|
||||
{
|
||||
|
@ -92,28 +92,28 @@ class LIB_EXPORT JKQTPPlotElement: public QObject {
|
||||
virtual QColor getKeyLabelColor()=0;
|
||||
|
||||
/*! \brief sets the property title to the specified \a __value.
|
||||
\details Description of the parameter title is: <BLOCKQUOTE>\copybrief title </BLOCKQUOTE>
|
||||
\details Description of the parameter title is: <BLOCKQUOTE>\copydoc title </BLOCKQUOTE>
|
||||
\see title for more information */
|
||||
inline virtual void set_title(const QString & __value)
|
||||
{
|
||||
this->title = __value;
|
||||
}
|
||||
/*! \brief returns the property title.
|
||||
\details Description of the parameter title is: <BLOCKQUOTE>\copybrief title </BLOCKQUOTE>
|
||||
\details Description of the parameter title is: <BLOCKQUOTE>\copydoc title </BLOCKQUOTE>
|
||||
\see title for more information */
|
||||
inline virtual QString get_title() const
|
||||
{
|
||||
return this->title;
|
||||
}
|
||||
/*! \brief sets the property visible to the specified \a __value.
|
||||
\details Description of the parameter visible is: <BLOCKQUOTE>\copybrief visible </BLOCKQUOTE>
|
||||
\details Description of the parameter visible is: <BLOCKQUOTE>\copydoc visible </BLOCKQUOTE>
|
||||
\see visible for more information */
|
||||
inline virtual void set_visible(bool __value)
|
||||
{
|
||||
this->visible = __value;
|
||||
}
|
||||
/*! \brief returns the property visible.
|
||||
\details Description of the parameter visible is: <BLOCKQUOTE>\copybrief visible </BLOCKQUOTE>
|
||||
\details Description of the parameter visible is: <BLOCKQUOTE>\copydoc visible </BLOCKQUOTE>
|
||||
\see visible for more information */
|
||||
inline virtual bool get_visible() const
|
||||
{
|
||||
@ -226,28 +226,28 @@ class LIB_EXPORT JKQTPGraph: public JKQTPPlotElement {
|
||||
|
||||
|
||||
/*! \brief sets the property datarange_start to the specified \a __value.
|
||||
\details Description of the parameter datarange_start is: <BLOCKQUOTE>\copybrief datarange_start </BLOCKQUOTE>
|
||||
\details Description of the parameter datarange_start is: <BLOCKQUOTE>\copydoc datarange_start </BLOCKQUOTE>
|
||||
\see datarange_start for more information */
|
||||
inline virtual void set_datarange_start(int __value)
|
||||
{
|
||||
this->datarange_start = __value;
|
||||
}
|
||||
/*! \brief returns the property datarange_start.
|
||||
\details Description of the parameter datarange_start is: <BLOCKQUOTE>\copybrief datarange_start </BLOCKQUOTE>
|
||||
\details Description of the parameter datarange_start is: <BLOCKQUOTE>\copydoc datarange_start </BLOCKQUOTE>
|
||||
\see datarange_start for more information */
|
||||
inline virtual int get_datarange_start() const
|
||||
{
|
||||
return this->datarange_start;
|
||||
}
|
||||
/*! \brief sets the property datarange_end to the specified \a __value.
|
||||
\details Description of the parameter datarange_end is: <BLOCKQUOTE>\copybrief datarange_end </BLOCKQUOTE>
|
||||
\details Description of the parameter datarange_end is: <BLOCKQUOTE>\copydoc datarange_end </BLOCKQUOTE>
|
||||
\see datarange_end for more information */
|
||||
inline virtual void set_datarange_end(int __value)
|
||||
{
|
||||
this->datarange_end = __value;
|
||||
}
|
||||
/*! \brief returns the property datarange_end.
|
||||
\details Description of the parameter datarange_end is: <BLOCKQUOTE>\copybrief datarange_end </BLOCKQUOTE>
|
||||
\details Description of the parameter datarange_end is: <BLOCKQUOTE>\copydoc datarange_end </BLOCKQUOTE>
|
||||
\see datarange_end for more information */
|
||||
inline virtual int get_datarange_end() const
|
||||
{
|
||||
@ -357,56 +357,56 @@ class LIB_EXPORT JKQTPXYGraph: public JKQTPGraph {
|
||||
virtual bool usesColumn(int column) const override;
|
||||
|
||||
/*! \brief sets the property xColumn to the specified \a __value.
|
||||
\details Description of the parameter xColumn is: <BLOCKQUOTE>\copybrief xColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter xColumn is: <BLOCKQUOTE>\copydoc xColumn </BLOCKQUOTE>
|
||||
\see xColumn for more information */
|
||||
inline virtual void set_xColumn(int __value)
|
||||
{
|
||||
this->xColumn = __value;
|
||||
}
|
||||
/*! \brief returns the property xColumn.
|
||||
\details Description of the parameter xColumn is: <BLOCKQUOTE>\copybrief xColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter xColumn is: <BLOCKQUOTE>\copydoc xColumn </BLOCKQUOTE>
|
||||
\see xColumn for more information */
|
||||
inline virtual int get_xColumn() const
|
||||
{
|
||||
return this->xColumn;
|
||||
}
|
||||
/*! \brief sets the property xColumn to the specified \a __value, where __value is static_cast'ed from size_t to int.
|
||||
\details Description of the parameter xColumn is: <BLOCKQUOTE>\copybrief xColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter xColumn is: <BLOCKQUOTE>\copydoc xColumn </BLOCKQUOTE>
|
||||
\see xColumn for more information */
|
||||
inline virtual void set_xColumn (size_t __value) { this->xColumn = static_cast<int>(__value); }
|
||||
/*! \brief sets the property yColumn to the specified \a __value.
|
||||
\details Description of the parameter yColumn is: <BLOCKQUOTE>\copybrief yColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter yColumn is: <BLOCKQUOTE>\copydoc yColumn </BLOCKQUOTE>
|
||||
\see yColumn for more information */
|
||||
inline virtual void set_yColumn(int __value)
|
||||
{
|
||||
this->yColumn = __value;
|
||||
}
|
||||
/*! \brief returns the property yColumn.
|
||||
\details Description of the parameter yColumn is: <BLOCKQUOTE>\copybrief yColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter yColumn is: <BLOCKQUOTE>\copydoc yColumn </BLOCKQUOTE>
|
||||
\see yColumn for more information */
|
||||
inline virtual int get_yColumn() const
|
||||
{
|
||||
return this->yColumn;
|
||||
}
|
||||
/*! \brief sets the property yColumn to the specified \a __value, where __value is static_cast'ed from size_t to int.
|
||||
\details Description of the parameter yColumn is: <BLOCKQUOTE>\copybrief yColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter yColumn is: <BLOCKQUOTE>\copydoc yColumn </BLOCKQUOTE>
|
||||
\see yColumn for more information */
|
||||
inline virtual void set_yColumn (size_t __value) { this->yColumn = static_cast<int>(__value); }
|
||||
/*! \brief sets the property sortData to the specified \a __value.
|
||||
\details Description of the parameter sortData is: <BLOCKQUOTE>\copybrief sortData </BLOCKQUOTE>
|
||||
\details Description of the parameter sortData is: <BLOCKQUOTE>\copydoc sortData </BLOCKQUOTE>
|
||||
\see sortData for more information */
|
||||
inline virtual void set_sortData(const DataSortOrder & __value)
|
||||
{
|
||||
this->sortData = __value;
|
||||
}
|
||||
/*! \brief returns the property sortData.
|
||||
\details Description of the parameter sortData is: <BLOCKQUOTE>\copybrief sortData </BLOCKQUOTE>
|
||||
\details Description of the parameter sortData is: <BLOCKQUOTE>\copydoc sortData </BLOCKQUOTE>
|
||||
\see sortData for more information */
|
||||
inline virtual DataSortOrder get_sortData() const
|
||||
{
|
||||
return this->sortData;
|
||||
}
|
||||
/*! \brief sets the property sortData to the specified \a __value. \details Description of the parameter sortData is: <BLOCKQUOTE>\copybrief sortData </BLOCKQUOTE> \see sortData for more information */
|
||||
/*! \brief sets the property sortData to the specified \a __value. \details Description of the parameter sortData is: <BLOCKQUOTE>\copydoc sortData </BLOCKQUOTE> \see sortData for more information */
|
||||
void set_sortData(int __value);
|
||||
|
||||
protected:
|
||||
@ -465,80 +465,80 @@ class LIB_EXPORT JKQTPSingleColumnGraph: public JKQTPGraph {
|
||||
virtual QColor getKeyLabelColor();
|
||||
|
||||
/*! \brief sets the property dataColumn to the specified \a __value.
|
||||
\details Description of the parameter dataColumn is: <BLOCKQUOTE>\copybrief dataColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter dataColumn is: <BLOCKQUOTE>\copydoc dataColumn </BLOCKQUOTE>
|
||||
\see dataColumn for more information */
|
||||
inline virtual void set_dataColumn(int __value)
|
||||
{
|
||||
this->dataColumn = __value;
|
||||
}
|
||||
/*! \brief returns the property dataColumn.
|
||||
\details Description of the parameter dataColumn is: <BLOCKQUOTE>\copybrief dataColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter dataColumn is: <BLOCKQUOTE>\copydoc dataColumn </BLOCKQUOTE>
|
||||
\see dataColumn for more information */
|
||||
inline virtual int get_dataColumn() const
|
||||
{
|
||||
return this->dataColumn;
|
||||
}
|
||||
/*! \brief sets the property dataColumn to the specified \a __value, where __value is static_cast'ed from size_t to int.
|
||||
\details Description of the parameter dataColumn is: <BLOCKQUOTE>\copybrief dataColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter dataColumn is: <BLOCKQUOTE>\copydoc dataColumn </BLOCKQUOTE>
|
||||
\see dataColumn for more information */
|
||||
inline virtual void set_dataColumn (size_t __value) { this->dataColumn = static_cast<int>(__value); }
|
||||
/*! \brief sets the property color to the specified \a __value.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual void set_color(const QColor & __value)
|
||||
{
|
||||
this->color = __value;
|
||||
}
|
||||
/*! \brief returns the property color.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual QColor get_color() const
|
||||
{
|
||||
return this->color;
|
||||
}
|
||||
/*! \brief sets the property style to the specified \a __value.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual void set_style(const Qt::PenStyle & __value)
|
||||
{
|
||||
this->style = __value;
|
||||
}
|
||||
/*! \brief returns the property style.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual Qt::PenStyle get_style() const
|
||||
{
|
||||
return this->style;
|
||||
}
|
||||
/*! \brief sets the property lineWidth to the specified \a __value.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual void set_lineWidth(double __value)
|
||||
{
|
||||
this->lineWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property lineWidth.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual double get_lineWidth() const
|
||||
{
|
||||
return this->lineWidth;
|
||||
}
|
||||
/*! \brief sets the property sortData to the specified \a __value.
|
||||
\details Description of the parameter sortData is: <BLOCKQUOTE>\copybrief sortData </BLOCKQUOTE>
|
||||
\details Description of the parameter sortData is: <BLOCKQUOTE>\copydoc sortData </BLOCKQUOTE>
|
||||
\see sortData for more information */
|
||||
inline virtual void set_sortData(const DataSortOrder & __value)
|
||||
{
|
||||
this->sortData = __value;
|
||||
}
|
||||
/*! \brief returns the property sortData.
|
||||
\details Description of the parameter sortData is: <BLOCKQUOTE>\copybrief sortData </BLOCKQUOTE>
|
||||
\details Description of the parameter sortData is: <BLOCKQUOTE>\copydoc sortData </BLOCKQUOTE>
|
||||
\see sortData for more information */
|
||||
inline virtual DataSortOrder get_sortData() const
|
||||
{
|
||||
return this->sortData;
|
||||
}
|
||||
/*! \brief sets the property sortData to the specified \a __value. \details Description of the parameter sortData is: <BLOCKQUOTE>\copybrief sortData </BLOCKQUOTE> \see sortData for more information */
|
||||
/*! \brief sets the property sortData to the specified \a __value. \details Description of the parameter sortData is: <BLOCKQUOTE>\copydoc sortData </BLOCKQUOTE> \see sortData for more information */
|
||||
void set_sortData(int __value);
|
||||
|
||||
/** \copydoc JKQTPGraph::usesColumn() */
|
||||
@ -600,84 +600,84 @@ class LIB_EXPORT JKQTPGraphErrors {
|
||||
virtual ~JKQTPGraphErrors();
|
||||
|
||||
/*! \brief sets the property errorColor to the specified \a __value.
|
||||
\details Description of the parameter errorColor is: <BLOCKQUOTE>\copybrief errorColor </BLOCKQUOTE>
|
||||
\details Description of the parameter errorColor is: <BLOCKQUOTE>\copydoc errorColor </BLOCKQUOTE>
|
||||
\see errorColor for more information */
|
||||
inline virtual void set_errorColor(const QColor & __value)
|
||||
{
|
||||
this->errorColor = __value;
|
||||
}
|
||||
/*! \brief returns the property errorColor.
|
||||
\details Description of the parameter errorColor is: <BLOCKQUOTE>\copybrief errorColor </BLOCKQUOTE>
|
||||
\details Description of the parameter errorColor is: <BLOCKQUOTE>\copydoc errorColor </BLOCKQUOTE>
|
||||
\see errorColor for more information */
|
||||
inline virtual QColor get_errorColor() const
|
||||
{
|
||||
return this->errorColor;
|
||||
}
|
||||
/*! \brief sets the property errorStyle to the specified \a __value.
|
||||
\details Description of the parameter errorStyle is: <BLOCKQUOTE>\copybrief errorStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter errorStyle is: <BLOCKQUOTE>\copydoc errorStyle </BLOCKQUOTE>
|
||||
\see errorStyle for more information */
|
||||
inline virtual void set_errorStyle(const Qt::PenStyle & __value)
|
||||
{
|
||||
this->errorStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property errorStyle.
|
||||
\details Description of the parameter errorStyle is: <BLOCKQUOTE>\copybrief errorStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter errorStyle is: <BLOCKQUOTE>\copydoc errorStyle </BLOCKQUOTE>
|
||||
\see errorStyle for more information */
|
||||
inline virtual Qt::PenStyle get_errorStyle() const
|
||||
{
|
||||
return this->errorStyle;
|
||||
}
|
||||
/*! \brief sets the property errorWidth to the specified \a __value.
|
||||
\details Description of the parameter errorWidth is: <BLOCKQUOTE>\copybrief errorWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter errorWidth is: <BLOCKQUOTE>\copydoc errorWidth </BLOCKQUOTE>
|
||||
\see errorWidth for more information */
|
||||
inline virtual void set_errorWidth(double __value)
|
||||
{
|
||||
this->errorWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property errorWidth.
|
||||
\details Description of the parameter errorWidth is: <BLOCKQUOTE>\copybrief errorWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter errorWidth is: <BLOCKQUOTE>\copydoc errorWidth </BLOCKQUOTE>
|
||||
\see errorWidth for more information */
|
||||
inline virtual double get_errorWidth() const
|
||||
{
|
||||
return this->errorWidth;
|
||||
}
|
||||
/*! \brief sets the property errorFillColor to the specified \a __value.
|
||||
\details Description of the parameter errorFillColor is: <BLOCKQUOTE>\copybrief errorFillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter errorFillColor is: <BLOCKQUOTE>\copydoc errorFillColor </BLOCKQUOTE>
|
||||
\see errorFillColor for more information */
|
||||
inline virtual void set_errorFillColor(const QColor & __value)
|
||||
{
|
||||
this->errorFillColor = __value;
|
||||
}
|
||||
/*! \brief returns the property errorFillColor.
|
||||
\details Description of the parameter errorFillColor is: <BLOCKQUOTE>\copybrief errorFillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter errorFillColor is: <BLOCKQUOTE>\copydoc errorFillColor </BLOCKQUOTE>
|
||||
\see errorFillColor for more information */
|
||||
inline virtual QColor get_errorFillColor() const
|
||||
{
|
||||
return this->errorFillColor;
|
||||
}
|
||||
/*! \brief sets the property errorFillStyle to the specified \a __value.
|
||||
\details Description of the parameter errorFillStyle is: <BLOCKQUOTE>\copybrief errorFillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter errorFillStyle is: <BLOCKQUOTE>\copydoc errorFillStyle </BLOCKQUOTE>
|
||||
\see errorFillStyle for more information */
|
||||
inline virtual void set_errorFillStyle(const Qt::BrushStyle & __value)
|
||||
{
|
||||
this->errorFillStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property errorFillStyle.
|
||||
\details Description of the parameter errorFillStyle is: <BLOCKQUOTE>\copybrief errorFillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter errorFillStyle is: <BLOCKQUOTE>\copydoc errorFillStyle </BLOCKQUOTE>
|
||||
\see errorFillStyle for more information */
|
||||
inline virtual Qt::BrushStyle get_errorFillStyle() const
|
||||
{
|
||||
return this->errorFillStyle;
|
||||
}
|
||||
/*! \brief sets the property errorbarSize to the specified \a __value.
|
||||
\details Description of the parameter errorbarSize is: <BLOCKQUOTE>\copybrief errorbarSize </BLOCKQUOTE>
|
||||
\details Description of the parameter errorbarSize is: <BLOCKQUOTE>\copydoc errorbarSize </BLOCKQUOTE>
|
||||
\see errorbarSize for more information */
|
||||
inline virtual void set_errorbarSize(double __value)
|
||||
{
|
||||
this->errorbarSize = __value;
|
||||
}
|
||||
/*! \brief returns the property errorbarSize.
|
||||
\details Description of the parameter errorbarSize is: <BLOCKQUOTE>\copybrief errorbarSize </BLOCKQUOTE>
|
||||
\details Description of the parameter errorbarSize is: <BLOCKQUOTE>\copydoc errorbarSize </BLOCKQUOTE>
|
||||
\see errorbarSize for more information */
|
||||
inline virtual double get_errorbarSize() const
|
||||
{
|
||||
@ -737,32 +737,32 @@ class LIB_EXPORT JKQTPXGraphErrors: public JKQTPGraphErrors {
|
||||
JKQTPXGraphErrors(QColor graphColor=QColor("black"));
|
||||
|
||||
/*! \brief sets the property xErrorSymmetric to the specified \a __value.
|
||||
\details Description of the parameter xErrorSymmetric is: <BLOCKQUOTE>\copybrief xErrorSymmetric </BLOCKQUOTE>
|
||||
\details Description of the parameter xErrorSymmetric is: <BLOCKQUOTE>\copydoc xErrorSymmetric </BLOCKQUOTE>
|
||||
\see xErrorSymmetric for more information */
|
||||
inline virtual void set_xErrorSymmetric(bool __value)
|
||||
{
|
||||
this->xErrorSymmetric = __value;
|
||||
}
|
||||
/*! \brief returns the property xErrorSymmetric.
|
||||
\details Description of the parameter xErrorSymmetric is: <BLOCKQUOTE>\copybrief xErrorSymmetric </BLOCKQUOTE>
|
||||
\details Description of the parameter xErrorSymmetric is: <BLOCKQUOTE>\copydoc xErrorSymmetric </BLOCKQUOTE>
|
||||
\see xErrorSymmetric for more information */
|
||||
inline virtual bool get_xErrorSymmetric() const
|
||||
{
|
||||
return this->xErrorSymmetric;
|
||||
}
|
||||
/*! \brief returns the property xErrorColumnLower. \details Description of the parameter xErrorColumnLower is: <BLOCKQUOTE>\copybrief xErrorColumnLower </BLOCKQUOTE>. \see xErrorColumnLower for more information */
|
||||
/*! \brief returns the property xErrorColumnLower. \details Description of the parameter xErrorColumnLower is: <BLOCKQUOTE>\copydoc xErrorColumnLower </BLOCKQUOTE>. \see xErrorColumnLower for more information */
|
||||
inline int get_xErrorColumnLower() const { return this->xErrorColumnLower; }
|
||||
/*! \brief returns the property xErrorColumn. \details Description of the parameter xErrorColumn is: <BLOCKQUOTE>\copybrief xErrorColumn </BLOCKQUOTE>. \see xErrorColumn for more information */
|
||||
/*! \brief returns the property xErrorColumn. \details Description of the parameter xErrorColumn is: <BLOCKQUOTE>\copydoc xErrorColumn </BLOCKQUOTE>. \see xErrorColumn for more information */
|
||||
inline int get_xErrorColumn() const { return this->xErrorColumn; }
|
||||
/*! \brief sets the property xErrorStyle to the specified \a __value.
|
||||
\details Description of the parameter xErrorStyle is: <BLOCKQUOTE>\copybrief xErrorStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter xErrorStyle is: <BLOCKQUOTE>\copydoc xErrorStyle </BLOCKQUOTE>
|
||||
\see xErrorStyle for more information */
|
||||
inline virtual void set_xErrorStyle(const JKQTPErrorPlotstyle & __value)
|
||||
{
|
||||
this->xErrorStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property xErrorStyle.
|
||||
\details Description of the parameter xErrorStyle is: <BLOCKQUOTE>\copybrief xErrorStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter xErrorStyle is: <BLOCKQUOTE>\copydoc xErrorStyle </BLOCKQUOTE>
|
||||
\see xErrorStyle for more information */
|
||||
inline virtual JKQTPErrorPlotstyle get_xErrorStyle() const
|
||||
{
|
||||
@ -807,32 +807,32 @@ class LIB_EXPORT JKQTPYGraphErrors: public JKQTPGraphErrors {
|
||||
JKQTPYGraphErrors(QColor graphColor=QColor("black"));
|
||||
|
||||
/*! \brief sets the property yErrorSymmetric to the specified \a __value.
|
||||
\details Description of the parameter yErrorSymmetric is: <BLOCKQUOTE>\copybrief yErrorSymmetric </BLOCKQUOTE>
|
||||
\details Description of the parameter yErrorSymmetric is: <BLOCKQUOTE>\copydoc yErrorSymmetric </BLOCKQUOTE>
|
||||
\see yErrorSymmetric for more information */
|
||||
inline virtual void set_yErrorSymmetric(bool __value)
|
||||
{
|
||||
this->yErrorSymmetric = __value;
|
||||
}
|
||||
/*! \brief returns the property yErrorSymmetric.
|
||||
\details Description of the parameter yErrorSymmetric is: <BLOCKQUOTE>\copybrief yErrorSymmetric </BLOCKQUOTE>
|
||||
\details Description of the parameter yErrorSymmetric is: <BLOCKQUOTE>\copydoc yErrorSymmetric </BLOCKQUOTE>
|
||||
\see yErrorSymmetric for more information */
|
||||
inline virtual bool get_yErrorSymmetric() const
|
||||
{
|
||||
return this->yErrorSymmetric;
|
||||
}
|
||||
/*! \brief returns the property yErrorColumnLower. \details Description of the parameter yErrorColumnLower is: <BLOCKQUOTE>\copybrief yErrorColumnLower </BLOCKQUOTE>. \see yErrorColumnLower for more information */
|
||||
/*! \brief returns the property yErrorColumnLower. \details Description of the parameter yErrorColumnLower is: <BLOCKQUOTE>\copydoc yErrorColumnLower </BLOCKQUOTE>. \see yErrorColumnLower for more information */
|
||||
inline int get_yErrorColumnLower() const { return this->yErrorColumnLower; }
|
||||
/*! \brief returns the property yErrorColumn. \details Description of the parameter yErrorColumn is: <BLOCKQUOTE>\copybrief yErrorColumn </BLOCKQUOTE>. \see yErrorColumn for more information */
|
||||
/*! \brief returns the property yErrorColumn. \details Description of the parameter yErrorColumn is: <BLOCKQUOTE>\copydoc yErrorColumn </BLOCKQUOTE>. \see yErrorColumn for more information */
|
||||
inline int get_yErrorColumn() const { return this->yErrorColumn; }
|
||||
/*! \brief sets the property yErrorStyle to the specified \a __value.
|
||||
\details Description of the parameter yErrorStyle is: <BLOCKQUOTE>\copybrief yErrorStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter yErrorStyle is: <BLOCKQUOTE>\copydoc yErrorStyle </BLOCKQUOTE>
|
||||
\see yErrorStyle for more information */
|
||||
inline virtual void set_yErrorStyle(const JKQTPErrorPlotstyle & __value)
|
||||
{
|
||||
this->yErrorStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property yErrorStyle.
|
||||
\details Description of the parameter yErrorStyle is: <BLOCKQUOTE>\copybrief yErrorStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter yErrorStyle is: <BLOCKQUOTE>\copydoc yErrorStyle </BLOCKQUOTE>
|
||||
\see yErrorStyle for more information */
|
||||
inline virtual JKQTPErrorPlotstyle get_yErrorStyle() const
|
||||
{
|
||||
@ -874,64 +874,64 @@ class LIB_EXPORT JKQTPXYGraphErrors: public JKQTPGraphErrors {
|
||||
/** \brief class contructor */
|
||||
JKQTPXYGraphErrors(QColor graphColor=QColor("black"));
|
||||
/*! \brief sets the property xErrorSymmetric to the specified \a __value.
|
||||
\details Description of the parameter xErrorSymmetric is: <BLOCKQUOTE>\copybrief xErrorSymmetric </BLOCKQUOTE>
|
||||
\details Description of the parameter xErrorSymmetric is: <BLOCKQUOTE>\copydoc xErrorSymmetric </BLOCKQUOTE>
|
||||
\see xErrorSymmetric for more information */
|
||||
inline virtual void set_xErrorSymmetric(bool __value)
|
||||
{
|
||||
this->xErrorSymmetric = __value;
|
||||
}
|
||||
/*! \brief returns the property xErrorSymmetric.
|
||||
\details Description of the parameter xErrorSymmetric is: <BLOCKQUOTE>\copybrief xErrorSymmetric </BLOCKQUOTE>
|
||||
\details Description of the parameter xErrorSymmetric is: <BLOCKQUOTE>\copydoc xErrorSymmetric </BLOCKQUOTE>
|
||||
\see xErrorSymmetric for more information */
|
||||
inline virtual bool get_xErrorSymmetric() const
|
||||
{
|
||||
return this->xErrorSymmetric;
|
||||
}
|
||||
/*! \brief sets the property yErrorSymmetric to the specified \a __value.
|
||||
\details Description of the parameter yErrorSymmetric is: <BLOCKQUOTE>\copybrief yErrorSymmetric </BLOCKQUOTE>
|
||||
\details Description of the parameter yErrorSymmetric is: <BLOCKQUOTE>\copydoc yErrorSymmetric </BLOCKQUOTE>
|
||||
\see yErrorSymmetric for more information */
|
||||
inline virtual void set_yErrorSymmetric(bool __value)
|
||||
{
|
||||
this->yErrorSymmetric = __value;
|
||||
}
|
||||
/*! \brief returns the property yErrorSymmetric.
|
||||
\details Description of the parameter yErrorSymmetric is: <BLOCKQUOTE>\copybrief yErrorSymmetric </BLOCKQUOTE>
|
||||
\details Description of the parameter yErrorSymmetric is: <BLOCKQUOTE>\copydoc yErrorSymmetric </BLOCKQUOTE>
|
||||
\see yErrorSymmetric for more information */
|
||||
inline virtual bool get_yErrorSymmetric() const
|
||||
{
|
||||
return this->yErrorSymmetric;
|
||||
}
|
||||
/*! \brief returns the property xErrorColumnLower. \details Description of the parameter xErrorColumnLower is: <BLOCKQUOTE>\copybrief xErrorColumnLower </BLOCKQUOTE>. \see xErrorColumnLower for more information */
|
||||
/*! \brief returns the property xErrorColumnLower. \details Description of the parameter xErrorColumnLower is: <BLOCKQUOTE>\copydoc xErrorColumnLower </BLOCKQUOTE>. \see xErrorColumnLower for more information */
|
||||
inline int get_xErrorColumnLower() const { return this->xErrorColumnLower; }
|
||||
/*! \brief returns the property xErrorColumn. \details Description of the parameter xErrorColumn is: <BLOCKQUOTE>\copybrief xErrorColumn </BLOCKQUOTE>. \see xErrorColumn for more information */
|
||||
/*! \brief returns the property xErrorColumn. \details Description of the parameter xErrorColumn is: <BLOCKQUOTE>\copydoc xErrorColumn </BLOCKQUOTE>. \see xErrorColumn for more information */
|
||||
inline int get_xErrorColumn() const { return this->xErrorColumn; }
|
||||
/*! \brief returns the property yErrorColumnLower. \details Description of the parameter yErrorColumnLower is: <BLOCKQUOTE>\copybrief yErrorColumnLower </BLOCKQUOTE>. \see yErrorColumnLower for more information */
|
||||
/*! \brief returns the property yErrorColumnLower. \details Description of the parameter yErrorColumnLower is: <BLOCKQUOTE>\copydoc yErrorColumnLower </BLOCKQUOTE>. \see yErrorColumnLower for more information */
|
||||
inline int get_yErrorColumnLower() const { return this->yErrorColumnLower; }
|
||||
/*! \brief returns the property yErrorColumn. \details Description of the parameter yErrorColumn is: <BLOCKQUOTE>\copybrief yErrorColumn </BLOCKQUOTE>. \see yErrorColumn for more information */
|
||||
/*! \brief returns the property yErrorColumn. \details Description of the parameter yErrorColumn is: <BLOCKQUOTE>\copydoc yErrorColumn </BLOCKQUOTE>. \see yErrorColumn for more information */
|
||||
inline int get_yErrorColumn() const { return this->yErrorColumn; }
|
||||
/*! \brief sets the property yErrorStyle to the specified \a __value.
|
||||
\details Description of the parameter yErrorStyle is: <BLOCKQUOTE>\copybrief yErrorStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter yErrorStyle is: <BLOCKQUOTE>\copydoc yErrorStyle </BLOCKQUOTE>
|
||||
\see yErrorStyle for more information */
|
||||
inline virtual void set_yErrorStyle(const JKQTPErrorPlotstyle & __value)
|
||||
{
|
||||
this->yErrorStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property yErrorStyle.
|
||||
\details Description of the parameter yErrorStyle is: <BLOCKQUOTE>\copybrief yErrorStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter yErrorStyle is: <BLOCKQUOTE>\copydoc yErrorStyle </BLOCKQUOTE>
|
||||
\see yErrorStyle for more information */
|
||||
inline virtual JKQTPErrorPlotstyle get_yErrorStyle() const
|
||||
{
|
||||
return this->yErrorStyle;
|
||||
}
|
||||
/*! \brief sets the property xErrorStyle to the specified \a __value.
|
||||
\details Description of the parameter xErrorStyle is: <BLOCKQUOTE>\copybrief xErrorStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter xErrorStyle is: <BLOCKQUOTE>\copydoc xErrorStyle </BLOCKQUOTE>
|
||||
\see xErrorStyle for more information */
|
||||
inline virtual void set_xErrorStyle(const JKQTPErrorPlotstyle & __value)
|
||||
{
|
||||
this->xErrorStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property xErrorStyle.
|
||||
\details Description of the parameter xErrorStyle is: <BLOCKQUOTE>\copybrief xErrorStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter xErrorStyle is: <BLOCKQUOTE>\copydoc xErrorStyle </BLOCKQUOTE>
|
||||
\see xErrorStyle for more information */
|
||||
inline virtual JKQTPErrorPlotstyle get_xErrorStyle() const
|
||||
{
|
||||
|
@ -128,226 +128,226 @@ class LIB_EXPORT JKQTPBoxplotVerticalGraph: public JKQTPGraph {
|
||||
virtual bool usesColumn(int c) const override;
|
||||
|
||||
/*! \brief sets the property sortData to the specified \a __value.
|
||||
\details Description of the parameter sortData is: <BLOCKQUOTE>\copybrief sortData </BLOCKQUOTE>
|
||||
\details Description of the parameter sortData is: <BLOCKQUOTE>\copydoc sortData </BLOCKQUOTE>
|
||||
\see sortData for more information */
|
||||
inline virtual void set_sortData(const DataSortOrder & __value)
|
||||
{
|
||||
this->sortData = __value;
|
||||
}
|
||||
/*! \brief returns the property sortData.
|
||||
\details Description of the parameter sortData is: <BLOCKQUOTE>\copybrief sortData </BLOCKQUOTE>
|
||||
\details Description of the parameter sortData is: <BLOCKQUOTE>\copydoc sortData </BLOCKQUOTE>
|
||||
\see sortData for more information */
|
||||
inline virtual DataSortOrder get_sortData() const
|
||||
{
|
||||
return this->sortData;
|
||||
}
|
||||
/*! \brief sets the property sortData to the specified \a __value. \details Description of the parameter sortData is: <BLOCKQUOTE>\copybrief sortData </BLOCKQUOTE> \see sortData for more information */
|
||||
/*! \brief sets the property sortData to the specified \a __value. \details Description of the parameter sortData is: <BLOCKQUOTE>\copydoc sortData </BLOCKQUOTE> \see sortData for more information */
|
||||
void set_sortData(int __value);
|
||||
/*! \brief sets the property posColumn to the specified \a __value.
|
||||
\details Description of the parameter posColumn is: <BLOCKQUOTE>\copybrief posColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter posColumn is: <BLOCKQUOTE>\copydoc posColumn </BLOCKQUOTE>
|
||||
\see posColumn for more information */
|
||||
inline virtual void set_posColumn(int __value)
|
||||
{
|
||||
this->posColumn = __value;
|
||||
}
|
||||
/*! \brief returns the property posColumn.
|
||||
\details Description of the parameter posColumn is: <BLOCKQUOTE>\copybrief posColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter posColumn is: <BLOCKQUOTE>\copydoc posColumn </BLOCKQUOTE>
|
||||
\see posColumn for more information */
|
||||
inline virtual int get_posColumn() const
|
||||
{
|
||||
return this->posColumn;
|
||||
}
|
||||
/*! \brief sets the property posColumn to the specified \a __value, where __value is static_cast'ed from size_t to int.
|
||||
\details Description of the parameter posColumn is: <BLOCKQUOTE>\copybrief posColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter posColumn is: <BLOCKQUOTE>\copydoc posColumn </BLOCKQUOTE>
|
||||
\see posColumn for more information */
|
||||
inline virtual void set_posColumn (size_t __value) { this->posColumn = static_cast<int>(__value); }
|
||||
/*! \brief sets the property medianColumn to the specified \a __value.
|
||||
\details Description of the parameter medianColumn is: <BLOCKQUOTE>\copybrief medianColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter medianColumn is: <BLOCKQUOTE>\copydoc medianColumn </BLOCKQUOTE>
|
||||
\see medianColumn for more information */
|
||||
inline virtual void set_medianColumn(int __value)
|
||||
{
|
||||
this->medianColumn = __value;
|
||||
}
|
||||
/*! \brief returns the property medianColumn.
|
||||
\details Description of the parameter medianColumn is: <BLOCKQUOTE>\copybrief medianColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter medianColumn is: <BLOCKQUOTE>\copydoc medianColumn </BLOCKQUOTE>
|
||||
\see medianColumn for more information */
|
||||
inline virtual int get_medianColumn() const
|
||||
{
|
||||
return this->medianColumn;
|
||||
}
|
||||
/*! \brief sets the property medianColumn to the specified \a __value, where __value is static_cast'ed from size_t to int.
|
||||
\details Description of the parameter medianColumn is: <BLOCKQUOTE>\copybrief medianColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter medianColumn is: <BLOCKQUOTE>\copydoc medianColumn </BLOCKQUOTE>
|
||||
\see medianColumn for more information */
|
||||
inline virtual void set_medianColumn (size_t __value) { this->medianColumn = static_cast<int>(__value); }
|
||||
/*! \brief sets the property meanColumn to the specified \a __value.
|
||||
\details Description of the parameter meanColumn is: <BLOCKQUOTE>\copybrief meanColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter meanColumn is: <BLOCKQUOTE>\copydoc meanColumn </BLOCKQUOTE>
|
||||
\see meanColumn for more information */
|
||||
inline virtual void set_meanColumn(int __value)
|
||||
{
|
||||
this->meanColumn = __value;
|
||||
}
|
||||
/*! \brief returns the property meanColumn.
|
||||
\details Description of the parameter meanColumn is: <BLOCKQUOTE>\copybrief meanColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter meanColumn is: <BLOCKQUOTE>\copydoc meanColumn </BLOCKQUOTE>
|
||||
\see meanColumn for more information */
|
||||
inline virtual int get_meanColumn() const
|
||||
{
|
||||
return this->meanColumn;
|
||||
}
|
||||
/*! \brief sets the property meanColumn to the specified \a __value, where __value is static_cast'ed from size_t to int.
|
||||
\details Description of the parameter meanColumn is: <BLOCKQUOTE>\copybrief meanColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter meanColumn is: <BLOCKQUOTE>\copydoc meanColumn </BLOCKQUOTE>
|
||||
\see meanColumn for more information */
|
||||
inline virtual void set_meanColumn (size_t __value) { this->meanColumn = static_cast<int>(__value); }
|
||||
/*! \brief sets the property minColumn to the specified \a __value.
|
||||
\details Description of the parameter minColumn is: <BLOCKQUOTE>\copybrief minColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter minColumn is: <BLOCKQUOTE>\copydoc minColumn </BLOCKQUOTE>
|
||||
\see minColumn for more information */
|
||||
inline virtual void set_minColumn(int __value)
|
||||
{
|
||||
this->minColumn = __value;
|
||||
}
|
||||
/*! \brief returns the property minColumn.
|
||||
\details Description of the parameter minColumn is: <BLOCKQUOTE>\copybrief minColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter minColumn is: <BLOCKQUOTE>\copydoc minColumn </BLOCKQUOTE>
|
||||
\see minColumn for more information */
|
||||
inline virtual int get_minColumn() const
|
||||
{
|
||||
return this->minColumn;
|
||||
}
|
||||
/*! \brief sets the property minColumn to the specified \a __value, where __value is static_cast'ed from size_t to int.
|
||||
\details Description of the parameter minColumn is: <BLOCKQUOTE>\copybrief minColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter minColumn is: <BLOCKQUOTE>\copydoc minColumn </BLOCKQUOTE>
|
||||
\see minColumn for more information */
|
||||
inline virtual void set_minColumn( size_t __value) { this->minColumn = static_cast<int>(__value); }
|
||||
/*! \brief sets the property maxColumn to the specified \a __value.
|
||||
\details Description of the parameter maxColumn is: <BLOCKQUOTE>\copybrief maxColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter maxColumn is: <BLOCKQUOTE>\copydoc maxColumn </BLOCKQUOTE>
|
||||
\see maxColumn for more information */
|
||||
inline virtual void set_maxColumn(int __value)
|
||||
{
|
||||
this->maxColumn = __value;
|
||||
}
|
||||
/*! \brief returns the property maxColumn.
|
||||
\details Description of the parameter maxColumn is: <BLOCKQUOTE>\copybrief maxColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter maxColumn is: <BLOCKQUOTE>\copydoc maxColumn </BLOCKQUOTE>
|
||||
\see maxColumn for more information */
|
||||
inline virtual int get_maxColumn() const
|
||||
{
|
||||
return this->maxColumn;
|
||||
}
|
||||
/*! \brief sets the property maxColumn to the specified \a __value, where __value is static_cast'ed from size_t to int.
|
||||
\details Description of the parameter maxColumn is: <BLOCKQUOTE>\copybrief maxColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter maxColumn is: <BLOCKQUOTE>\copydoc maxColumn </BLOCKQUOTE>
|
||||
\see maxColumn for more information */
|
||||
inline virtual void set_maxColumn (size_t __value) { this->maxColumn = static_cast<int>(__value); }
|
||||
/*! \brief sets the property percentile25Column to the specified \a __value.
|
||||
\details Description of the parameter percentile25Column is: <BLOCKQUOTE>\copybrief percentile25Column </BLOCKQUOTE>
|
||||
\details Description of the parameter percentile25Column is: <BLOCKQUOTE>\copydoc percentile25Column </BLOCKQUOTE>
|
||||
\see percentile25Column for more information */
|
||||
inline virtual void set_percentile25Column(int __value)
|
||||
{
|
||||
this->percentile25Column = __value;
|
||||
}
|
||||
/*! \brief returns the property percentile25Column.
|
||||
\details Description of the parameter percentile25Column is: <BLOCKQUOTE>\copybrief percentile25Column </BLOCKQUOTE>
|
||||
\details Description of the parameter percentile25Column is: <BLOCKQUOTE>\copydoc percentile25Column </BLOCKQUOTE>
|
||||
\see percentile25Column for more information */
|
||||
inline virtual int get_percentile25Column() const
|
||||
{
|
||||
return this->percentile25Column;
|
||||
}
|
||||
/*! \brief sets the property percentile25Column to the specified \a __value, where __value is static_cast'ed from size_t to int.
|
||||
\details Description of the parameter percentile25Column is: <BLOCKQUOTE>\copybrief percentile25Column </BLOCKQUOTE>
|
||||
\details Description of the parameter percentile25Column is: <BLOCKQUOTE>\copydoc percentile25Column </BLOCKQUOTE>
|
||||
\see percentile25Column for more information */
|
||||
inline virtual void set_percentile25Column (size_t __value) { this->percentile25Column = static_cast<int>(__value); }
|
||||
/*! \brief sets the property percentile75Column to the specified \a __value.
|
||||
\details Description of the parameter percentile75Column is: <BLOCKQUOTE>\copybrief percentile75Column </BLOCKQUOTE>
|
||||
\details Description of the parameter percentile75Column is: <BLOCKQUOTE>\copydoc percentile75Column </BLOCKQUOTE>
|
||||
\see percentile75Column for more information */
|
||||
inline virtual void set_percentile75Column(int __value)
|
||||
{
|
||||
this->percentile75Column = __value;
|
||||
}
|
||||
/*! \brief returns the property percentile75Column.
|
||||
\details Description of the parameter percentile75Column is: <BLOCKQUOTE>\copybrief percentile75Column </BLOCKQUOTE>
|
||||
\details Description of the parameter percentile75Column is: <BLOCKQUOTE>\copydoc percentile75Column </BLOCKQUOTE>
|
||||
\see percentile75Column for more information */
|
||||
inline virtual int get_percentile75Column() const
|
||||
{
|
||||
return this->percentile75Column;
|
||||
}
|
||||
/*! \brief sets the property percentile75Column to the specified \a __value, where __value is static_cast'ed from size_t to int.
|
||||
\details Description of the parameter percentile75Column is: <BLOCKQUOTE>\copybrief percentile75Column </BLOCKQUOTE>
|
||||
\details Description of the parameter percentile75Column is: <BLOCKQUOTE>\copydoc percentile75Column </BLOCKQUOTE>
|
||||
\see percentile75Column for more information */
|
||||
inline virtual void set_percentile75Column (size_t __value) { this->percentile75Column = static_cast<int>(__value); }
|
||||
/*! \brief sets the property color to the specified \a __value.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual void set_color(const QColor & __value)
|
||||
{
|
||||
this->color = __value;
|
||||
}
|
||||
/*! \brief returns the property color.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual QColor get_color() const
|
||||
{
|
||||
return this->color;
|
||||
}
|
||||
/*! \brief sets the property fillColor to the specified \a __value.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual void set_fillColor(const QColor & __value)
|
||||
{
|
||||
this->fillColor = __value;
|
||||
}
|
||||
/*! \brief returns the property fillColor.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual QColor get_fillColor() const
|
||||
{
|
||||
return this->fillColor;
|
||||
}
|
||||
/*! \brief sets the property whiskerStyle to the specified \a __value.
|
||||
\details Description of the parameter whiskerStyle is: <BLOCKQUOTE>\copybrief whiskerStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter whiskerStyle is: <BLOCKQUOTE>\copydoc whiskerStyle </BLOCKQUOTE>
|
||||
\see whiskerStyle for more information */
|
||||
inline virtual void set_whiskerStyle(const Qt::PenStyle & __value)
|
||||
{
|
||||
this->whiskerStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property whiskerStyle.
|
||||
\details Description of the parameter whiskerStyle is: <BLOCKQUOTE>\copybrief whiskerStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter whiskerStyle is: <BLOCKQUOTE>\copydoc whiskerStyle </BLOCKQUOTE>
|
||||
\see whiskerStyle for more information */
|
||||
inline virtual Qt::PenStyle get_whiskerStyle() const
|
||||
{
|
||||
return this->whiskerStyle;
|
||||
}
|
||||
/*! \brief sets the property fillStyle to the specified \a __value.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual void set_fillStyle(const Qt::BrushStyle & __value)
|
||||
{
|
||||
this->fillStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property fillStyle.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual Qt::BrushStyle get_fillStyle() const
|
||||
{
|
||||
return this->fillStyle;
|
||||
}
|
||||
/*! \brief sets the property lineWidth to the specified \a __value.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual void set_lineWidth(double __value)
|
||||
{
|
||||
this->lineWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property lineWidth.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual double get_lineWidth() const
|
||||
{
|
||||
return this->lineWidth;
|
||||
}
|
||||
/*! \brief sets the property boxWidth to the specified \a __value.
|
||||
\details Description of the parameter boxWidth is: <BLOCKQUOTE>\copybrief boxWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter boxWidth is: <BLOCKQUOTE>\copydoc boxWidth </BLOCKQUOTE>
|
||||
\see boxWidth for more information */
|
||||
inline virtual void set_boxWidth(double __value)
|
||||
{
|
||||
this->boxWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property boxWidth.
|
||||
\details Description of the parameter boxWidth is: <BLOCKQUOTE>\copybrief boxWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter boxWidth is: <BLOCKQUOTE>\copydoc boxWidth </BLOCKQUOTE>
|
||||
\see boxWidth for more information */
|
||||
inline virtual double get_boxWidth() const
|
||||
{
|
||||
@ -355,42 +355,42 @@ class LIB_EXPORT JKQTPBoxplotVerticalGraph: public JKQTPGraph {
|
||||
}
|
||||
|
||||
/*! \brief sets the property meanSymbol to the specified \a __value.
|
||||
\details Description of the parameter meanSymbol is: <BLOCKQUOTE>\copybrief meanSymbol </BLOCKQUOTE>
|
||||
\details Description of the parameter meanSymbol is: <BLOCKQUOTE>\copydoc meanSymbol </BLOCKQUOTE>
|
||||
\see meanSymbol for more information */
|
||||
inline virtual void set_meanSymbol(const JKQTPGraphSymbols & __value)
|
||||
{
|
||||
this->meanSymbol = __value;
|
||||
}
|
||||
/*! \brief returns the property meanSymbol.
|
||||
\details Description of the parameter meanSymbol is: <BLOCKQUOTE>\copybrief meanSymbol </BLOCKQUOTE>
|
||||
\details Description of the parameter meanSymbol is: <BLOCKQUOTE>\copydoc meanSymbol </BLOCKQUOTE>
|
||||
\see meanSymbol for more information */
|
||||
inline virtual JKQTPGraphSymbols get_meanSymbol() const
|
||||
{
|
||||
return this->meanSymbol;
|
||||
}
|
||||
/*! \brief sets the property meanSymbolWidth to the specified \a __value.
|
||||
\details Description of the parameter meanSymbolWidth is: <BLOCKQUOTE>\copybrief meanSymbolWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter meanSymbolWidth is: <BLOCKQUOTE>\copydoc meanSymbolWidth </BLOCKQUOTE>
|
||||
\see meanSymbolWidth for more information */
|
||||
inline virtual void set_meanSymbolWidth(double __value)
|
||||
{
|
||||
this->meanSymbolWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property meanSymbolWidth.
|
||||
\details Description of the parameter meanSymbolWidth is: <BLOCKQUOTE>\copybrief meanSymbolWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter meanSymbolWidth is: <BLOCKQUOTE>\copydoc meanSymbolWidth </BLOCKQUOTE>
|
||||
\see meanSymbolWidth for more information */
|
||||
inline virtual double get_meanSymbolWidth() const
|
||||
{
|
||||
return this->meanSymbolWidth;
|
||||
}
|
||||
/*! \brief sets the property meanSymbolSize to the specified \a __value.
|
||||
\details Description of the parameter meanSymbolSize is: <BLOCKQUOTE>\copybrief meanSymbolSize </BLOCKQUOTE>
|
||||
\details Description of the parameter meanSymbolSize is: <BLOCKQUOTE>\copydoc meanSymbolSize </BLOCKQUOTE>
|
||||
\see meanSymbolSize for more information */
|
||||
inline virtual void set_meanSymbolSize(double __value)
|
||||
{
|
||||
this->meanSymbolSize = __value;
|
||||
}
|
||||
/*! \brief returns the property meanSymbolSize.
|
||||
\details Description of the parameter meanSymbolSize is: <BLOCKQUOTE>\copybrief meanSymbolSize </BLOCKQUOTE>
|
||||
\details Description of the parameter meanSymbolSize is: <BLOCKQUOTE>\copydoc meanSymbolSize </BLOCKQUOTE>
|
||||
\see meanSymbolSize for more information */
|
||||
inline virtual double get_meanSymbolSize() const
|
||||
{
|
||||
@ -539,21 +539,21 @@ class LIB_EXPORT JKQTPBoxplotVerticalElement: public JKQTPPlotObject {
|
||||
|
||||
|
||||
/*! \brief sets the property pos to the specified \a __value.
|
||||
\details Description of the parameter pos is: <BLOCKQUOTE>\copybrief pos </BLOCKQUOTE>
|
||||
\details Description of the parameter pos is: <BLOCKQUOTE>\copydoc pos </BLOCKQUOTE>
|
||||
\see pos for more information */
|
||||
inline virtual void set_pos(double __value)
|
||||
{
|
||||
this->pos = __value;
|
||||
}
|
||||
/*! \brief returns the property pos.
|
||||
\details Description of the parameter pos is: <BLOCKQUOTE>\copybrief pos </BLOCKQUOTE>
|
||||
\details Description of the parameter pos is: <BLOCKQUOTE>\copydoc pos </BLOCKQUOTE>
|
||||
\see pos for more information */
|
||||
inline virtual double get_pos() const
|
||||
{
|
||||
return this->pos;
|
||||
}
|
||||
/*! \brief sets the property median to the specified \a __value.
|
||||
\details Description of the parameter median is: <BLOCKQUOTE>\copybrief median </BLOCKQUOTE>
|
||||
\details Description of the parameter median is: <BLOCKQUOTE>\copydoc median </BLOCKQUOTE>
|
||||
\see median for more information */
|
||||
inline virtual void set_median(double __value)
|
||||
{
|
||||
@ -563,14 +563,14 @@ class LIB_EXPORT JKQTPBoxplotVerticalElement: public JKQTPPlotObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property median.
|
||||
\details Description of the parameter median is: <BLOCKQUOTE>\copybrief median </BLOCKQUOTE>
|
||||
\details Description of the parameter median is: <BLOCKQUOTE>\copydoc median </BLOCKQUOTE>
|
||||
\see median for more information */
|
||||
inline virtual double get_median() const
|
||||
{
|
||||
return this->median;
|
||||
}
|
||||
/*! \brief sets the property mean to the specified \a __value.
|
||||
\details Description of the parameter mean is: <BLOCKQUOTE>\copybrief mean </BLOCKQUOTE>
|
||||
\details Description of the parameter mean is: <BLOCKQUOTE>\copydoc mean </BLOCKQUOTE>
|
||||
\see mean for more information */
|
||||
inline virtual void set_mean(double __value)
|
||||
{
|
||||
@ -580,14 +580,14 @@ class LIB_EXPORT JKQTPBoxplotVerticalElement: public JKQTPPlotObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property mean.
|
||||
\details Description of the parameter mean is: <BLOCKQUOTE>\copybrief mean </BLOCKQUOTE>
|
||||
\details Description of the parameter mean is: <BLOCKQUOTE>\copydoc mean </BLOCKQUOTE>
|
||||
\see mean for more information */
|
||||
inline virtual double get_mean() const
|
||||
{
|
||||
return this->mean;
|
||||
}
|
||||
/*! \brief sets the property min to the specified \a __value.
|
||||
\details Description of the parameter min is: <BLOCKQUOTE>\copybrief min </BLOCKQUOTE>
|
||||
\details Description of the parameter min is: <BLOCKQUOTE>\copydoc min </BLOCKQUOTE>
|
||||
\see min for more information */
|
||||
inline virtual void set_min(double __value)
|
||||
{
|
||||
@ -597,14 +597,14 @@ class LIB_EXPORT JKQTPBoxplotVerticalElement: public JKQTPPlotObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property min.
|
||||
\details Description of the parameter min is: <BLOCKQUOTE>\copybrief min </BLOCKQUOTE>
|
||||
\details Description of the parameter min is: <BLOCKQUOTE>\copydoc min </BLOCKQUOTE>
|
||||
\see min for more information */
|
||||
inline virtual double get_min() const
|
||||
{
|
||||
return this->min;
|
||||
}
|
||||
/*! \brief sets the property max to the specified \a __value.
|
||||
\details Description of the parameter max is: <BLOCKQUOTE>\copybrief max </BLOCKQUOTE>
|
||||
\details Description of the parameter max is: <BLOCKQUOTE>\copydoc max </BLOCKQUOTE>
|
||||
\see max for more information */
|
||||
inline virtual void set_max(double __value)
|
||||
{
|
||||
@ -614,105 +614,105 @@ class LIB_EXPORT JKQTPBoxplotVerticalElement: public JKQTPPlotObject {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property max.
|
||||
\details Description of the parameter max is: <BLOCKQUOTE>\copybrief max </BLOCKQUOTE>
|
||||
\details Description of the parameter max is: <BLOCKQUOTE>\copydoc max </BLOCKQUOTE>
|
||||
\see max for more information */
|
||||
inline virtual double get_max() const
|
||||
{
|
||||
return this->max;
|
||||
}
|
||||
/*! \brief sets the property percentile25 to the specified \a __value.
|
||||
\details Description of the parameter percentile25 is: <BLOCKQUOTE>\copybrief percentile25 </BLOCKQUOTE>
|
||||
\details Description of the parameter percentile25 is: <BLOCKQUOTE>\copydoc percentile25 </BLOCKQUOTE>
|
||||
\see percentile25 for more information */
|
||||
inline virtual void set_percentile25(double __value)
|
||||
{
|
||||
this->percentile25 = __value;
|
||||
}
|
||||
/*! \brief returns the property percentile25.
|
||||
\details Description of the parameter percentile25 is: <BLOCKQUOTE>\copybrief percentile25 </BLOCKQUOTE>
|
||||
\details Description of the parameter percentile25 is: <BLOCKQUOTE>\copydoc percentile25 </BLOCKQUOTE>
|
||||
\see percentile25 for more information */
|
||||
inline virtual double get_percentile25() const
|
||||
{
|
||||
return this->percentile25;
|
||||
}
|
||||
/*! \brief sets the property percentile75 to the specified \a __value.
|
||||
\details Description of the parameter percentile75 is: <BLOCKQUOTE>\copybrief percentile75 </BLOCKQUOTE>
|
||||
\details Description of the parameter percentile75 is: <BLOCKQUOTE>\copydoc percentile75 </BLOCKQUOTE>
|
||||
\see percentile75 for more information */
|
||||
inline virtual void set_percentile75(double __value)
|
||||
{
|
||||
this->percentile75 = __value;
|
||||
}
|
||||
/*! \brief returns the property percentile75.
|
||||
\details Description of the parameter percentile75 is: <BLOCKQUOTE>\copybrief percentile75 </BLOCKQUOTE>
|
||||
\details Description of the parameter percentile75 is: <BLOCKQUOTE>\copydoc percentile75 </BLOCKQUOTE>
|
||||
\see percentile75 for more information */
|
||||
inline virtual double get_percentile75() const
|
||||
{
|
||||
return this->percentile75;
|
||||
}
|
||||
/*! \brief sets the property color to the specified \a __value.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual void set_color(const QColor & __value)
|
||||
{
|
||||
this->color = __value;
|
||||
}
|
||||
/*! \brief returns the property color.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual QColor get_color() const
|
||||
{
|
||||
return this->color;
|
||||
}
|
||||
/*! \brief sets the property fillColor to the specified \a __value.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual void set_fillColor(const QColor & __value)
|
||||
{
|
||||
this->fillColor = __value;
|
||||
}
|
||||
/*! \brief returns the property fillColor.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual QColor get_fillColor() const
|
||||
{
|
||||
return this->fillColor;
|
||||
}
|
||||
/*! \brief sets the property whiskerStyle to the specified \a __value.
|
||||
\details Description of the parameter whiskerStyle is: <BLOCKQUOTE>\copybrief whiskerStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter whiskerStyle is: <BLOCKQUOTE>\copydoc whiskerStyle </BLOCKQUOTE>
|
||||
\see whiskerStyle for more information */
|
||||
inline virtual void set_whiskerStyle(const Qt::PenStyle & __value)
|
||||
{
|
||||
this->whiskerStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property whiskerStyle.
|
||||
\details Description of the parameter whiskerStyle is: <BLOCKQUOTE>\copybrief whiskerStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter whiskerStyle is: <BLOCKQUOTE>\copydoc whiskerStyle </BLOCKQUOTE>
|
||||
\see whiskerStyle for more information */
|
||||
inline virtual Qt::PenStyle get_whiskerStyle() const
|
||||
{
|
||||
return this->whiskerStyle;
|
||||
}
|
||||
/*! \brief sets the property lineWidth to the specified \a __value.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual void set_lineWidth(double __value)
|
||||
{
|
||||
this->lineWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property lineWidth.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual double get_lineWidth() const
|
||||
{
|
||||
return this->lineWidth;
|
||||
}
|
||||
/*! \brief sets the property boxWidth to the specified \a __value.
|
||||
\details Description of the parameter boxWidth is: <BLOCKQUOTE>\copybrief boxWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter boxWidth is: <BLOCKQUOTE>\copydoc boxWidth </BLOCKQUOTE>
|
||||
\see boxWidth for more information */
|
||||
inline virtual void set_boxWidth(double __value)
|
||||
{
|
||||
this->boxWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property boxWidth.
|
||||
\details Description of the parameter boxWidth is: <BLOCKQUOTE>\copybrief boxWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter boxWidth is: <BLOCKQUOTE>\copydoc boxWidth </BLOCKQUOTE>
|
||||
\see boxWidth for more information */
|
||||
inline virtual double get_boxWidth() const
|
||||
{
|
||||
@ -720,84 +720,84 @@ class LIB_EXPORT JKQTPBoxplotVerticalElement: public JKQTPPlotObject {
|
||||
}
|
||||
|
||||
/*! \brief sets the property meanSymbol to the specified \a __value.
|
||||
\details Description of the parameter meanSymbol is: <BLOCKQUOTE>\copybrief meanSymbol </BLOCKQUOTE>
|
||||
\details Description of the parameter meanSymbol is: <BLOCKQUOTE>\copydoc meanSymbol </BLOCKQUOTE>
|
||||
\see meanSymbol for more information */
|
||||
inline virtual void set_meanSymbol(const JKQTPGraphSymbols & __value)
|
||||
{
|
||||
this->meanSymbol = __value;
|
||||
}
|
||||
/*! \brief returns the property meanSymbol.
|
||||
\details Description of the parameter meanSymbol is: <BLOCKQUOTE>\copybrief meanSymbol </BLOCKQUOTE>
|
||||
\details Description of the parameter meanSymbol is: <BLOCKQUOTE>\copydoc meanSymbol </BLOCKQUOTE>
|
||||
\see meanSymbol for more information */
|
||||
inline virtual JKQTPGraphSymbols get_meanSymbol() const
|
||||
{
|
||||
return this->meanSymbol;
|
||||
}
|
||||
/*! \brief sets the property meanSymbolWidth to the specified \a __value.
|
||||
\details Description of the parameter meanSymbolWidth is: <BLOCKQUOTE>\copybrief meanSymbolWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter meanSymbolWidth is: <BLOCKQUOTE>\copydoc meanSymbolWidth </BLOCKQUOTE>
|
||||
\see meanSymbolWidth for more information */
|
||||
inline virtual void set_meanSymbolWidth(double __value)
|
||||
{
|
||||
this->meanSymbolWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property meanSymbolWidth.
|
||||
\details Description of the parameter meanSymbolWidth is: <BLOCKQUOTE>\copybrief meanSymbolWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter meanSymbolWidth is: <BLOCKQUOTE>\copydoc meanSymbolWidth </BLOCKQUOTE>
|
||||
\see meanSymbolWidth for more information */
|
||||
inline virtual double get_meanSymbolWidth() const
|
||||
{
|
||||
return this->meanSymbolWidth;
|
||||
}
|
||||
/*! \brief sets the property meanSymbolSize to the specified \a __value.
|
||||
\details Description of the parameter meanSymbolSize is: <BLOCKQUOTE>\copybrief meanSymbolSize </BLOCKQUOTE>
|
||||
\details Description of the parameter meanSymbolSize is: <BLOCKQUOTE>\copydoc meanSymbolSize </BLOCKQUOTE>
|
||||
\see meanSymbolSize for more information */
|
||||
inline virtual void set_meanSymbolSize(double __value)
|
||||
{
|
||||
this->meanSymbolSize = __value;
|
||||
}
|
||||
/*! \brief returns the property meanSymbolSize.
|
||||
\details Description of the parameter meanSymbolSize is: <BLOCKQUOTE>\copybrief meanSymbolSize </BLOCKQUOTE>
|
||||
\details Description of the parameter meanSymbolSize is: <BLOCKQUOTE>\copydoc meanSymbolSize </BLOCKQUOTE>
|
||||
\see meanSymbolSize for more information */
|
||||
inline virtual double get_meanSymbolSize() const
|
||||
{
|
||||
return this->meanSymbolSize;
|
||||
}
|
||||
/*! \brief sets the property drawMean to the specified \a __value.
|
||||
\details Description of the parameter drawMean is: <BLOCKQUOTE>\copybrief drawMean </BLOCKQUOTE>
|
||||
\details Description of the parameter drawMean is: <BLOCKQUOTE>\copydoc drawMean </BLOCKQUOTE>
|
||||
\see drawMean for more information */
|
||||
inline virtual void set_drawMean(bool __value)
|
||||
{
|
||||
this->drawMean = __value;
|
||||
}
|
||||
/*! \brief returns the property drawMean.
|
||||
\details Description of the parameter drawMean is: <BLOCKQUOTE>\copybrief drawMean </BLOCKQUOTE>
|
||||
\details Description of the parameter drawMean is: <BLOCKQUOTE>\copydoc drawMean </BLOCKQUOTE>
|
||||
\see drawMean for more information */
|
||||
inline virtual bool get_drawMean() const
|
||||
{
|
||||
return this->drawMean;
|
||||
}
|
||||
/*! \brief sets the property drawMedian to the specified \a __value.
|
||||
\details Description of the parameter drawMedian is: <BLOCKQUOTE>\copybrief drawMedian </BLOCKQUOTE>
|
||||
\details Description of the parameter drawMedian is: <BLOCKQUOTE>\copydoc drawMedian </BLOCKQUOTE>
|
||||
\see drawMedian for more information */
|
||||
inline virtual void set_drawMedian(bool __value)
|
||||
{
|
||||
this->drawMedian = __value;
|
||||
}
|
||||
/*! \brief returns the property drawMedian.
|
||||
\details Description of the parameter drawMedian is: <BLOCKQUOTE>\copybrief drawMedian </BLOCKQUOTE>
|
||||
\details Description of the parameter drawMedian is: <BLOCKQUOTE>\copydoc drawMedian </BLOCKQUOTE>
|
||||
\see drawMedian for more information */
|
||||
inline virtual bool get_drawMedian() const
|
||||
{
|
||||
return this->drawMedian;
|
||||
}
|
||||
/*! \brief sets the property drawMinMax to the specified \a __value.
|
||||
\details Description of the parameter drawMinMax is: <BLOCKQUOTE>\copybrief drawMinMax </BLOCKQUOTE>
|
||||
\details Description of the parameter drawMinMax is: <BLOCKQUOTE>\copydoc drawMinMax </BLOCKQUOTE>
|
||||
\see drawMinMax for more information */
|
||||
inline virtual void set_drawMinMax(bool __value)
|
||||
{
|
||||
this->drawMinMax = __value;
|
||||
}
|
||||
/*! \brief returns the property drawMinMax.
|
||||
\details Description of the parameter drawMinMax is: <BLOCKQUOTE>\copybrief drawMinMax </BLOCKQUOTE>
|
||||
\details Description of the parameter drawMinMax is: <BLOCKQUOTE>\copydoc drawMinMax </BLOCKQUOTE>
|
||||
\see drawMinMax for more information */
|
||||
inline virtual bool get_drawMinMax() const
|
||||
{
|
||||
|
@ -112,84 +112,84 @@ class LIB_EXPORT JKQTPXFunctionLineGraph: public JKQTPGraph {
|
||||
void clearData();
|
||||
|
||||
/*! \brief sets the property color to the specified \a __value.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual void set_color(const QColor & __value)
|
||||
{
|
||||
this->color = __value;
|
||||
}
|
||||
/*! \brief returns the property color.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual QColor get_color() const
|
||||
{
|
||||
return this->color;
|
||||
}
|
||||
/*! \brief sets the property fillColor to the specified \a __value.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual void set_fillColor(const QColor & __value)
|
||||
{
|
||||
this->fillColor = __value;
|
||||
}
|
||||
/*! \brief returns the property fillColor.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual QColor get_fillColor() const
|
||||
{
|
||||
return this->fillColor;
|
||||
}
|
||||
/*! \brief sets the property fillStyle to the specified \a __value.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual void set_fillStyle(const Qt::BrushStyle & __value)
|
||||
{
|
||||
this->fillStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property fillStyle.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual Qt::BrushStyle get_fillStyle() const
|
||||
{
|
||||
return this->fillStyle;
|
||||
}
|
||||
/*! \brief sets the property style to the specified \a __value.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual void set_style(const Qt::PenStyle & __value)
|
||||
{
|
||||
this->style = __value;
|
||||
}
|
||||
/*! \brief returns the property style.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual Qt::PenStyle get_style() const
|
||||
{
|
||||
return this->style;
|
||||
}
|
||||
/*! \brief sets the property lineWidth to the specified \a __value.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual void set_lineWidth(double __value)
|
||||
{
|
||||
this->lineWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property lineWidth.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual double get_lineWidth() const
|
||||
{
|
||||
return this->lineWidth;
|
||||
}
|
||||
/*! \brief sets the property drawLine to the specified \a __value.
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copybrief drawLine </BLOCKQUOTE>
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copydoc drawLine </BLOCKQUOTE>
|
||||
\see drawLine for more information */
|
||||
inline virtual void set_drawLine(bool __value)
|
||||
{
|
||||
this->drawLine = __value;
|
||||
}
|
||||
/*! \brief returns the property drawLine.
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copybrief drawLine </BLOCKQUOTE>
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copydoc drawLine </BLOCKQUOTE>
|
||||
\see drawLine for more information */
|
||||
inline virtual bool get_drawLine() const
|
||||
{
|
||||
@ -198,22 +198,22 @@ class LIB_EXPORT JKQTPXFunctionLineGraph: public JKQTPGraph {
|
||||
|
||||
/** \brief sets the property plotFunction to the specified \a __value.
|
||||
*
|
||||
* \details Description of the parameter varname is: <BLOCKQUOTE>\copybrief plotFunction </BLOCKQUOTE>
|
||||
* \details Description of the parameter varname is: <BLOCKQUOTE>\copydoc plotFunction </BLOCKQUOTE>
|
||||
* \see plotFunction for more information */
|
||||
virtual void set_plotFunction (jkqtpPlotFunctionType && __value);
|
||||
/** \brief sets the property plotFunction to the specified \a __value.
|
||||
*
|
||||
* \details Description of the parameter varname is: <BLOCKQUOTE>\copybrief plotFunction </BLOCKQUOTE>
|
||||
* \details Description of the parameter varname is: <BLOCKQUOTE>\copydoc plotFunction </BLOCKQUOTE>
|
||||
* \see plotFunction for more information */
|
||||
virtual void set_plotFunction (const jkqtpPlotFunctionType & __value);
|
||||
/** \brief sets the property plotFunction to the specified \a __value.
|
||||
*
|
||||
* \details Description of the parameter plotFunction is: <BLOCKQUOTE>\copybrief plotFunction </BLOCKQUOTE>
|
||||
* \details Description of the parameter plotFunction is: <BLOCKQUOTE>\copydoc plotFunction </BLOCKQUOTE>
|
||||
* \see plotFunction for more information */
|
||||
virtual void set_plotFunction (jkqtpSimplePlotFunctionType && __value);
|
||||
/** \brief sets the property plotFunction to the specified \a __value.
|
||||
*
|
||||
* \details Description of the parameter plotFunction is: <BLOCKQUOTE>\copybrief plotFunction </BLOCKQUOTE>
|
||||
* \details Description of the parameter plotFunction is: <BLOCKQUOTE>\copydoc plotFunction </BLOCKQUOTE>
|
||||
* \see plotFunction for more information */
|
||||
virtual void set_plotFunction (const jkqtpSimplePlotFunctionType & __value);
|
||||
/*! \brief returns the property plotFunction. \see plotFunction for more information */ \
|
||||
@ -222,7 +222,7 @@ class LIB_EXPORT JKQTPXFunctionLineGraph: public JKQTPGraph {
|
||||
virtual jkqtpSimplePlotFunctionType get_simplePlotFunction () const;
|
||||
|
||||
/*! \brief sets the property params to the specified \a __value.
|
||||
\details Description of the parameter params is: <BLOCKQUOTE>\copybrief params </BLOCKQUOTE>
|
||||
\details Description of the parameter params is: <BLOCKQUOTE>\copydoc params </BLOCKQUOTE>
|
||||
\see params for more information */
|
||||
inline virtual void set_params(void* __value)
|
||||
{
|
||||
@ -232,7 +232,7 @@ class LIB_EXPORT JKQTPXFunctionLineGraph: public JKQTPGraph {
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property params.
|
||||
\details Description of the parameter params is: <BLOCKQUOTE>\copybrief params </BLOCKQUOTE>
|
||||
\details Description of the parameter params is: <BLOCKQUOTE>\copydoc params </BLOCKQUOTE>
|
||||
\see params for more information */
|
||||
inline virtual void* get_params() const
|
||||
{
|
||||
@ -258,112 +258,112 @@ class LIB_EXPORT JKQTPXFunctionLineGraph: public JKQTPGraph {
|
||||
/** \brief returns the currently set internal parameter vector */
|
||||
QVector<double> get_internalErrorParams() const;
|
||||
/*! \brief sets the property minSamples to the specified \a __value.
|
||||
\details Description of the parameter minSamples is: <BLOCKQUOTE>\copybrief minSamples </BLOCKQUOTE>
|
||||
\details Description of the parameter minSamples is: <BLOCKQUOTE>\copydoc minSamples </BLOCKQUOTE>
|
||||
\see minSamples for more information */
|
||||
inline virtual void set_minSamples(const unsigned int & __value)
|
||||
{
|
||||
this->minSamples = __value;
|
||||
}
|
||||
/*! \brief returns the property minSamples.
|
||||
\details Description of the parameter minSamples is: <BLOCKQUOTE>\copybrief minSamples </BLOCKQUOTE>
|
||||
\details Description of the parameter minSamples is: <BLOCKQUOTE>\copydoc minSamples </BLOCKQUOTE>
|
||||
\see minSamples for more information */
|
||||
inline virtual unsigned int get_minSamples() const
|
||||
{
|
||||
return this->minSamples;
|
||||
}
|
||||
/*! \brief sets the property maxRefinementDegree to the specified \a __value.
|
||||
\details Description of the parameter maxRefinementDegree is: <BLOCKQUOTE>\copybrief maxRefinementDegree </BLOCKQUOTE>
|
||||
\details Description of the parameter maxRefinementDegree is: <BLOCKQUOTE>\copydoc maxRefinementDegree </BLOCKQUOTE>
|
||||
\see maxRefinementDegree for more information */
|
||||
inline virtual void set_maxRefinementDegree(const unsigned int & __value)
|
||||
{
|
||||
this->maxRefinementDegree = __value;
|
||||
}
|
||||
/*! \brief returns the property maxRefinementDegree.
|
||||
\details Description of the parameter maxRefinementDegree is: <BLOCKQUOTE>\copybrief maxRefinementDegree </BLOCKQUOTE>
|
||||
\details Description of the parameter maxRefinementDegree is: <BLOCKQUOTE>\copydoc maxRefinementDegree </BLOCKQUOTE>
|
||||
\see maxRefinementDegree for more information */
|
||||
inline virtual unsigned int get_maxRefinementDegree() const
|
||||
{
|
||||
return this->maxRefinementDegree;
|
||||
}
|
||||
/*! \brief sets the property slopeTolerance to the specified \a __value.
|
||||
\details Description of the parameter slopeTolerance is: <BLOCKQUOTE>\copybrief slopeTolerance </BLOCKQUOTE>
|
||||
\details Description of the parameter slopeTolerance is: <BLOCKQUOTE>\copydoc slopeTolerance </BLOCKQUOTE>
|
||||
\see slopeTolerance for more information */
|
||||
inline virtual void set_slopeTolerance(double __value)
|
||||
{
|
||||
this->slopeTolerance = __value;
|
||||
}
|
||||
/*! \brief returns the property slopeTolerance.
|
||||
\details Description of the parameter slopeTolerance is: <BLOCKQUOTE>\copybrief slopeTolerance </BLOCKQUOTE>
|
||||
\details Description of the parameter slopeTolerance is: <BLOCKQUOTE>\copydoc slopeTolerance </BLOCKQUOTE>
|
||||
\see slopeTolerance for more information */
|
||||
inline virtual double get_slopeTolerance() const
|
||||
{
|
||||
return this->slopeTolerance;
|
||||
}
|
||||
/*! \brief sets the property minPixelPerSample to the specified \a __value.
|
||||
\details Description of the parameter minPixelPerSample is: <BLOCKQUOTE>\copybrief minPixelPerSample </BLOCKQUOTE>
|
||||
\details Description of the parameter minPixelPerSample is: <BLOCKQUOTE>\copydoc minPixelPerSample </BLOCKQUOTE>
|
||||
\see minPixelPerSample for more information */
|
||||
inline virtual void set_minPixelPerSample(double __value)
|
||||
{
|
||||
this->minPixelPerSample = __value;
|
||||
}
|
||||
/*! \brief returns the property minPixelPerSample.
|
||||
\details Description of the parameter minPixelPerSample is: <BLOCKQUOTE>\copybrief minPixelPerSample </BLOCKQUOTE>
|
||||
\details Description of the parameter minPixelPerSample is: <BLOCKQUOTE>\copydoc minPixelPerSample </BLOCKQUOTE>
|
||||
\see minPixelPerSample for more information */
|
||||
inline virtual double get_minPixelPerSample() const
|
||||
{
|
||||
return this->minPixelPerSample;
|
||||
}
|
||||
/*! \brief sets the property plotRefinement to the specified \a __value.
|
||||
\details Description of the parameter plotRefinement is: <BLOCKQUOTE>\copybrief plotRefinement </BLOCKQUOTE>
|
||||
\details Description of the parameter plotRefinement is: <BLOCKQUOTE>\copydoc plotRefinement </BLOCKQUOTE>
|
||||
\see plotRefinement for more information */
|
||||
inline virtual void set_plotRefinement(bool __value)
|
||||
{
|
||||
this->plotRefinement = __value;
|
||||
}
|
||||
/*! \brief returns the property plotRefinement.
|
||||
\details Description of the parameter plotRefinement is: <BLOCKQUOTE>\copybrief plotRefinement </BLOCKQUOTE>
|
||||
\details Description of the parameter plotRefinement is: <BLOCKQUOTE>\copydoc plotRefinement </BLOCKQUOTE>
|
||||
\see plotRefinement for more information */
|
||||
inline virtual bool get_plotRefinement() const
|
||||
{
|
||||
return this->plotRefinement;
|
||||
}
|
||||
/*! \brief sets the property displaySamplePoints to the specified \a __value.
|
||||
\details Description of the parameter displaySamplePoints is: <BLOCKQUOTE>\copybrief displaySamplePoints </BLOCKQUOTE>
|
||||
\details Description of the parameter displaySamplePoints is: <BLOCKQUOTE>\copydoc displaySamplePoints </BLOCKQUOTE>
|
||||
\see displaySamplePoints for more information */
|
||||
inline virtual void set_displaySamplePoints(bool __value)
|
||||
{
|
||||
this->displaySamplePoints = __value;
|
||||
}
|
||||
/*! \brief returns the property displaySamplePoints.
|
||||
\details Description of the parameter displaySamplePoints is: <BLOCKQUOTE>\copybrief displaySamplePoints </BLOCKQUOTE>
|
||||
\details Description of the parameter displaySamplePoints is: <BLOCKQUOTE>\copydoc displaySamplePoints </BLOCKQUOTE>
|
||||
\see displaySamplePoints for more information */
|
||||
inline virtual bool get_displaySamplePoints() const
|
||||
{
|
||||
return this->displaySamplePoints;
|
||||
}
|
||||
/*! \brief sets the property drawErrorPolygons to the specified \a __value.
|
||||
\details Description of the parameter drawErrorPolygons is: <BLOCKQUOTE>\copybrief drawErrorPolygons </BLOCKQUOTE>
|
||||
\details Description of the parameter drawErrorPolygons is: <BLOCKQUOTE>\copydoc drawErrorPolygons </BLOCKQUOTE>
|
||||
\see drawErrorPolygons for more information */
|
||||
inline virtual void set_drawErrorPolygons(bool __value)
|
||||
{
|
||||
this->drawErrorPolygons = __value;
|
||||
}
|
||||
/*! \brief returns the property drawErrorPolygons.
|
||||
\details Description of the parameter drawErrorPolygons is: <BLOCKQUOTE>\copybrief drawErrorPolygons </BLOCKQUOTE>
|
||||
\details Description of the parameter drawErrorPolygons is: <BLOCKQUOTE>\copydoc drawErrorPolygons </BLOCKQUOTE>
|
||||
\see drawErrorPolygons for more information */
|
||||
inline virtual bool get_drawErrorPolygons() const
|
||||
{
|
||||
return this->drawErrorPolygons;
|
||||
}
|
||||
/*! \brief sets the property drawErrorLines to the specified \a __value.
|
||||
\details Description of the parameter drawErrorLines is: <BLOCKQUOTE>\copybrief drawErrorLines </BLOCKQUOTE>
|
||||
\details Description of the parameter drawErrorLines is: <BLOCKQUOTE>\copydoc drawErrorLines </BLOCKQUOTE>
|
||||
\see drawErrorLines for more information */
|
||||
inline virtual void set_drawErrorLines(bool __value)
|
||||
{
|
||||
this->drawErrorLines = __value;
|
||||
}
|
||||
/*! \brief returns the property drawErrorLines.
|
||||
\details Description of the parameter drawErrorLines is: <BLOCKQUOTE>\copybrief drawErrorLines </BLOCKQUOTE>
|
||||
\details Description of the parameter drawErrorLines is: <BLOCKQUOTE>\copydoc drawErrorLines </BLOCKQUOTE>
|
||||
\see drawErrorLines for more information */
|
||||
inline virtual bool get_drawErrorLines() const
|
||||
{
|
||||
@ -371,37 +371,37 @@ class LIB_EXPORT JKQTPXFunctionLineGraph: public JKQTPGraph {
|
||||
}
|
||||
/** \brief sets the property errorPlotFunction to the specified \a __value.
|
||||
*
|
||||
* \details Description of the parameter varname is: <BLOCKQUOTE>\copybrief errorPlotFunction </BLOCKQUOTE>
|
||||
* \details Description of the parameter varname is: <BLOCKQUOTE>\copydoc errorPlotFunction </BLOCKQUOTE>
|
||||
* \see errorPlotFunction for more information */
|
||||
virtual void set_errorPlotFunction (jkqtpPlotFunctionType && __value);
|
||||
/** \brief sets the property errorPlotFunction to the specified \a __value.
|
||||
*
|
||||
* \details Description of the parameter varname is: <BLOCKQUOTE>\copybrief errorPlotFunction </BLOCKQUOTE>
|
||||
* \details Description of the parameter varname is: <BLOCKQUOTE>\copydoc errorPlotFunction </BLOCKQUOTE>
|
||||
* \see errorPlotFunction for more information */
|
||||
virtual void set_errorPlotFunction (const jkqtpPlotFunctionType & __value);
|
||||
/*! \brief returns the property varname. \see varname for more information */ \
|
||||
virtual jkqtpPlotFunctionType get_errorPlotFunction () const;
|
||||
/** \brief sets the property errorPlotFunction to the specified \a __value.
|
||||
*
|
||||
* \details Description of the parameter varname is: <BLOCKQUOTE>\copybrief errorPlotFunction </BLOCKQUOTE>
|
||||
* \details Description of the parameter varname is: <BLOCKQUOTE>\copydoc errorPlotFunction </BLOCKQUOTE>
|
||||
* \see errorPlotFunction for more information */
|
||||
virtual void set_errorPlotFunction (jkqtpSimplePlotFunctionType && __value);
|
||||
/** \brief sets the property errorPlotFunction to the specified \a __value.
|
||||
*
|
||||
* \details Description of the parameter varname is: <BLOCKQUOTE>\copybrief errorPlotFunction </BLOCKQUOTE>
|
||||
* \details Description of the parameter varname is: <BLOCKQUOTE>\copydoc errorPlotFunction </BLOCKQUOTE>
|
||||
* \see errorPlotFunction for more information */
|
||||
virtual void set_errorPlotFunction (const jkqtpSimplePlotFunctionType & __value);
|
||||
/*! \brief returns the property varname. \see varname for more information */ \
|
||||
virtual jkqtpSimplePlotFunctionType get_errorSimplePlotFunction () const;
|
||||
/*! \brief sets the property errorParams to the specified \a __value.
|
||||
\details Description of the parameter errorParams is: <BLOCKQUOTE>\copybrief errorParams </BLOCKQUOTE>
|
||||
\details Description of the parameter errorParams is: <BLOCKQUOTE>\copydoc errorParams </BLOCKQUOTE>
|
||||
\see errorParams for more information */
|
||||
inline virtual void set_errorParams(void* __value)
|
||||
{
|
||||
this->errorParams = __value;
|
||||
}
|
||||
/*! \brief returns the property errorParams.
|
||||
\details Description of the parameter errorParams is: <BLOCKQUOTE>\copybrief errorParams </BLOCKQUOTE>
|
||||
\details Description of the parameter errorParams is: <BLOCKQUOTE>\copydoc errorParams </BLOCKQUOTE>
|
||||
\see errorParams for more information */
|
||||
inline virtual void* get_errorParams() const
|
||||
{
|
||||
@ -411,107 +411,107 @@ class LIB_EXPORT JKQTPXFunctionLineGraph: public JKQTPGraph {
|
||||
void set_errorParams(const QVector<double>& errorParams);
|
||||
|
||||
/*! \brief sets the property parameterColumn to the specified \a __value.
|
||||
\details Description of the parameter parameterColumn is: <BLOCKQUOTE>\copybrief parameterColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter parameterColumn is: <BLOCKQUOTE>\copydoc parameterColumn </BLOCKQUOTE>
|
||||
\see parameterColumn for more information */
|
||||
inline virtual void set_parameterColumn(int __value)
|
||||
{
|
||||
this->parameterColumn = __value;
|
||||
}
|
||||
/*! \brief returns the property parameterColumn.
|
||||
\details Description of the parameter parameterColumn is: <BLOCKQUOTE>\copybrief parameterColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter parameterColumn is: <BLOCKQUOTE>\copydoc parameterColumn </BLOCKQUOTE>
|
||||
\see parameterColumn for more information */
|
||||
inline virtual int get_parameterColumn() const
|
||||
{
|
||||
return this->parameterColumn;
|
||||
}
|
||||
/*! \brief sets the property parameterColumn to the specified \a __value, where __value is static_cast'ed from size_t to int.
|
||||
\details Description of the parameter parameterColumn is: <BLOCKQUOTE>\copybrief parameterColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter parameterColumn is: <BLOCKQUOTE>\copydoc parameterColumn </BLOCKQUOTE>
|
||||
\see parameterColumn for more information */
|
||||
inline virtual void set_parameterColumn (size_t __value) { this->parameterColumn = static_cast<int>(__value); }
|
||||
/*! \brief sets the property errorParameterColumn to the specified \a __value.
|
||||
\details Description of the parameter errorParameterColumn is: <BLOCKQUOTE>\copybrief errorParameterColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter errorParameterColumn is: <BLOCKQUOTE>\copydoc errorParameterColumn </BLOCKQUOTE>
|
||||
\see errorParameterColumn for more information */
|
||||
inline virtual void set_errorParameterColumn(int __value)
|
||||
{
|
||||
this->errorParameterColumn = __value;
|
||||
}
|
||||
/*! \brief returns the property errorParameterColumn.
|
||||
\details Description of the parameter errorParameterColumn is: <BLOCKQUOTE>\copybrief errorParameterColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter errorParameterColumn is: <BLOCKQUOTE>\copydoc errorParameterColumn </BLOCKQUOTE>
|
||||
\see errorParameterColumn for more information */
|
||||
inline virtual int get_errorParameterColumn() const
|
||||
{
|
||||
return this->errorParameterColumn;
|
||||
}
|
||||
/*! \brief sets the property errorParameterColumn to the specified \a __value, where __value is static_cast'ed from size_t to int.
|
||||
\details Description of the parameter errorParameterColumn is: <BLOCKQUOTE>\copybrief errorParameterColumn </BLOCKQUOTE>
|
||||
\details Description of the parameter errorParameterColumn is: <BLOCKQUOTE>\copydoc errorParameterColumn </BLOCKQUOTE>
|
||||
\see errorParameterColumn for more information */
|
||||
inline virtual void set_errorParameterColumn (size_t __value) { this->errorParameterColumn = static_cast<int>(__value); }
|
||||
|
||||
/*! \brief sets the property errorColor to the specified \a __value.
|
||||
\details Description of the parameter errorColor is: <BLOCKQUOTE>\copybrief errorColor </BLOCKQUOTE>
|
||||
\details Description of the parameter errorColor is: <BLOCKQUOTE>\copydoc errorColor </BLOCKQUOTE>
|
||||
\see errorColor for more information */
|
||||
inline virtual void set_errorColor(const QColor & __value)
|
||||
{
|
||||
this->errorColor = __value;
|
||||
}
|
||||
/*! \brief returns the property errorColor.
|
||||
\details Description of the parameter errorColor is: <BLOCKQUOTE>\copybrief errorColor </BLOCKQUOTE>
|
||||
\details Description of the parameter errorColor is: <BLOCKQUOTE>\copydoc errorColor </BLOCKQUOTE>
|
||||
\see errorColor for more information */
|
||||
inline virtual QColor get_errorColor() const
|
||||
{
|
||||
return this->errorColor;
|
||||
}
|
||||
/*! \brief sets the property errorFillColor to the specified \a __value.
|
||||
\details Description of the parameter errorFillColor is: <BLOCKQUOTE>\copybrief errorFillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter errorFillColor is: <BLOCKQUOTE>\copydoc errorFillColor </BLOCKQUOTE>
|
||||
\see errorFillColor for more information */
|
||||
inline virtual void set_errorFillColor(const QColor & __value)
|
||||
{
|
||||
this->errorFillColor = __value;
|
||||
}
|
||||
/*! \brief returns the property errorFillColor.
|
||||
\details Description of the parameter errorFillColor is: <BLOCKQUOTE>\copybrief errorFillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter errorFillColor is: <BLOCKQUOTE>\copydoc errorFillColor </BLOCKQUOTE>
|
||||
\see errorFillColor for more information */
|
||||
inline virtual QColor get_errorFillColor() const
|
||||
{
|
||||
return this->errorFillColor;
|
||||
}
|
||||
/*! \brief sets the property errorFillStyle to the specified \a __value.
|
||||
\details Description of the parameter errorFillStyle is: <BLOCKQUOTE>\copybrief errorFillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter errorFillStyle is: <BLOCKQUOTE>\copydoc errorFillStyle </BLOCKQUOTE>
|
||||
\see errorFillStyle for more information */
|
||||
inline virtual void set_errorFillStyle(const Qt::BrushStyle & __value)
|
||||
{
|
||||
this->errorFillStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property errorFillStyle.
|
||||
\details Description of the parameter errorFillStyle is: <BLOCKQUOTE>\copybrief errorFillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter errorFillStyle is: <BLOCKQUOTE>\copydoc errorFillStyle </BLOCKQUOTE>
|
||||
\see errorFillStyle for more information */
|
||||
inline virtual Qt::BrushStyle get_errorFillStyle() const
|
||||
{
|
||||
return this->errorFillStyle;
|
||||
}
|
||||
/*! \brief sets the property errorStyle to the specified \a __value.
|
||||
\details Description of the parameter errorStyle is: <BLOCKQUOTE>\copybrief errorStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter errorStyle is: <BLOCKQUOTE>\copydoc errorStyle </BLOCKQUOTE>
|
||||
\see errorStyle for more information */
|
||||
inline virtual void set_errorStyle(const Qt::PenStyle & __value)
|
||||
{
|
||||
this->errorStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property errorStyle.
|
||||
\details Description of the parameter errorStyle is: <BLOCKQUOTE>\copybrief errorStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter errorStyle is: <BLOCKQUOTE>\copydoc errorStyle </BLOCKQUOTE>
|
||||
\see errorStyle for more information */
|
||||
inline virtual Qt::PenStyle get_errorStyle() const
|
||||
{
|
||||
return this->errorStyle;
|
||||
}
|
||||
/*! \brief sets the property errorLineWidth to the specified \a __value.
|
||||
\details Description of the parameter errorLineWidth is: <BLOCKQUOTE>\copybrief errorLineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter errorLineWidth is: <BLOCKQUOTE>\copydoc errorLineWidth </BLOCKQUOTE>
|
||||
\see errorLineWidth for more information */
|
||||
inline virtual void set_errorLineWidth(double __value)
|
||||
{
|
||||
this->errorLineWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property errorLineWidth.
|
||||
\details Description of the parameter errorLineWidth is: <BLOCKQUOTE>\copybrief errorLineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter errorLineWidth is: <BLOCKQUOTE>\copydoc errorLineWidth </BLOCKQUOTE>
|
||||
\see errorLineWidth for more information */
|
||||
inline virtual double get_errorLineWidth() const
|
||||
{
|
||||
|
@ -49,98 +49,98 @@ class LIB_EXPORT JKQTPFilledCurveXGraph: public JKQTPXYGraph {
|
||||
virtual QColor getKeyLabelColor() override;
|
||||
|
||||
/*! \brief sets the property color to the specified \a __value.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual void set_color(const QColor & __value)
|
||||
{
|
||||
this->color = __value;
|
||||
}
|
||||
/*! \brief returns the property color.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual QColor get_color() const
|
||||
{
|
||||
return this->color;
|
||||
}
|
||||
/*! \brief sets the property fillColor to the specified \a __value.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual void set_fillColor(const QColor & __value)
|
||||
{
|
||||
this->fillColor = __value;
|
||||
}
|
||||
/*! \brief returns the property fillColor.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual QColor get_fillColor() const
|
||||
{
|
||||
return this->fillColor;
|
||||
}
|
||||
/*! \brief sets the property style to the specified \a __value.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual void set_style(const Qt::PenStyle & __value)
|
||||
{
|
||||
this->style = __value;
|
||||
}
|
||||
/*! \brief returns the property style.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual Qt::PenStyle get_style() const
|
||||
{
|
||||
return this->style;
|
||||
}
|
||||
/*! \brief sets the property lineWidth to the specified \a __value.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual void set_lineWidth(double __value)
|
||||
{
|
||||
this->lineWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property lineWidth.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual double get_lineWidth() const
|
||||
{
|
||||
return this->lineWidth;
|
||||
}
|
||||
/*! \brief sets the property baseline to the specified \a __value.
|
||||
\details Description of the parameter baseline is: <BLOCKQUOTE>\copybrief baseline </BLOCKQUOTE>
|
||||
\details Description of the parameter baseline is: <BLOCKQUOTE>\copydoc baseline </BLOCKQUOTE>
|
||||
\see baseline for more information */
|
||||
inline virtual void set_baseline(double __value)
|
||||
{
|
||||
this->baseline = __value;
|
||||
}
|
||||
/*! \brief returns the property baseline.
|
||||
\details Description of the parameter baseline is: <BLOCKQUOTE>\copybrief baseline </BLOCKQUOTE>
|
||||
\details Description of the parameter baseline is: <BLOCKQUOTE>\copydoc baseline </BLOCKQUOTE>
|
||||
\see baseline for more information */
|
||||
inline virtual double get_baseline() const
|
||||
{
|
||||
return this->baseline;
|
||||
}
|
||||
/*! \brief sets the property drawLine to the specified \a __value.
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copybrief drawLine </BLOCKQUOTE>
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copydoc drawLine </BLOCKQUOTE>
|
||||
\see drawLine for more information */
|
||||
inline virtual void set_drawLine(bool __value)
|
||||
{
|
||||
this->drawLine = __value;
|
||||
}
|
||||
/*! \brief returns the property drawLine.
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copybrief drawLine </BLOCKQUOTE>
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copydoc drawLine </BLOCKQUOTE>
|
||||
\see drawLine for more information */
|
||||
inline virtual bool get_drawLine() const
|
||||
{
|
||||
return this->drawLine;
|
||||
}
|
||||
/*! \brief sets the property fillStyle to the specified \a __value.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual void set_fillStyle(const Qt::BrushStyle & __value)
|
||||
{
|
||||
this->fillStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property fillStyle.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual Qt::BrushStyle get_fillStyle() const
|
||||
{
|
||||
@ -148,28 +148,28 @@ class LIB_EXPORT JKQTPFilledCurveXGraph: public JKQTPXYGraph {
|
||||
}
|
||||
|
||||
/*! \brief sets the property drawSelectionLine to the specified \a __value.
|
||||
\details Description of the parameter drawSelectionLine is: <BLOCKQUOTE>\copybrief drawSelectionLine </BLOCKQUOTE>
|
||||
\details Description of the parameter drawSelectionLine is: <BLOCKQUOTE>\copydoc drawSelectionLine </BLOCKQUOTE>
|
||||
\see drawSelectionLine for more information */
|
||||
inline virtual void set_drawSelectionLine(bool __value)
|
||||
{
|
||||
this->drawSelectionLine = __value;
|
||||
}
|
||||
/*! \brief returns the property drawSelectionLine.
|
||||
\details Description of the parameter drawSelectionLine is: <BLOCKQUOTE>\copybrief drawSelectionLine </BLOCKQUOTE>
|
||||
\details Description of the parameter drawSelectionLine is: <BLOCKQUOTE>\copydoc drawSelectionLine </BLOCKQUOTE>
|
||||
\see drawSelectionLine for more information */
|
||||
inline virtual bool get_drawSelectionLine() const
|
||||
{
|
||||
return this->drawSelectionLine;
|
||||
}
|
||||
/*! \brief sets the property selectionLineColor to the specified \a __value.
|
||||
\details Description of the parameter selectionLineColor is: <BLOCKQUOTE>\copybrief selectionLineColor </BLOCKQUOTE>
|
||||
\details Description of the parameter selectionLineColor is: <BLOCKQUOTE>\copydoc selectionLineColor </BLOCKQUOTE>
|
||||
\see selectionLineColor for more information */
|
||||
inline virtual void set_selectionLineColor(const QColor & __value)
|
||||
{
|
||||
this->selectionLineColor = __value;
|
||||
}
|
||||
/*! \brief returns the property selectionLineColor.
|
||||
\details Description of the parameter selectionLineColor is: <BLOCKQUOTE>\copybrief selectionLineColor </BLOCKQUOTE>
|
||||
\details Description of the parameter selectionLineColor is: <BLOCKQUOTE>\copydoc selectionLineColor </BLOCKQUOTE>
|
||||
\see selectionLineColor for more information */
|
||||
inline virtual QColor get_selectionLineColor() const
|
||||
{
|
||||
@ -311,89 +311,89 @@ class LIB_EXPORT JKQTPFilledVerticalRangeGraph: public JKQTPXYGraph {
|
||||
virtual QColor getKeyLabelColor() override;
|
||||
|
||||
/*! \brief sets the property yColumn2 to the specified \a __value.
|
||||
\details Description of the parameter yColumn2 is: <BLOCKQUOTE>\copybrief yColumn2 </BLOCKQUOTE>
|
||||
\details Description of the parameter yColumn2 is: <BLOCKQUOTE>\copydoc yColumn2 </BLOCKQUOTE>
|
||||
\see yColumn2 for more information */
|
||||
inline virtual void set_yColumn2(int __value)
|
||||
{
|
||||
this->yColumn2 = __value;
|
||||
}
|
||||
/*! \brief returns the property yColumn2.
|
||||
\details Description of the parameter yColumn2 is: <BLOCKQUOTE>\copybrief yColumn2 </BLOCKQUOTE>
|
||||
\details Description of the parameter yColumn2 is: <BLOCKQUOTE>\copydoc yColumn2 </BLOCKQUOTE>
|
||||
\see yColumn2 for more information */
|
||||
inline virtual int get_yColumn2() const
|
||||
{
|
||||
return this->yColumn2;
|
||||
}
|
||||
/*! \brief sets the property yColumn2 to the specified \a __value, where __value is static_cast'ed from size_t to int.
|
||||
\details Description of the parameter yColumn2 is: <BLOCKQUOTE>\copybrief yColumn2 </BLOCKQUOTE>
|
||||
\details Description of the parameter yColumn2 is: <BLOCKQUOTE>\copydoc yColumn2 </BLOCKQUOTE>
|
||||
\see yColumn2 for more information */
|
||||
inline virtual void set_yColumn2 (size_t __value) { this->yColumn2 = static_cast<int>(__value); }
|
||||
|
||||
/*! \brief sets the property color to the specified \a __value.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual void set_color(const QColor & __value)
|
||||
{
|
||||
this->color = __value;
|
||||
}
|
||||
/*! \brief returns the property color.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual QColor get_color() const
|
||||
{
|
||||
return this->color;
|
||||
}
|
||||
/*! \brief sets the property fillColor to the specified \a __value.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual void set_fillColor(const QColor & __value)
|
||||
{
|
||||
this->fillColor = __value;
|
||||
}
|
||||
/*! \brief returns the property fillColor.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual QColor get_fillColor() const
|
||||
{
|
||||
return this->fillColor;
|
||||
}
|
||||
/*! \brief sets the property style to the specified \a __value.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual void set_style(const Qt::PenStyle & __value)
|
||||
{
|
||||
this->style = __value;
|
||||
}
|
||||
/*! \brief returns the property style.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual Qt::PenStyle get_style() const
|
||||
{
|
||||
return this->style;
|
||||
}
|
||||
/*! \brief sets the property drawLine to the specified \a __value.
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copybrief drawLine </BLOCKQUOTE>
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copydoc drawLine </BLOCKQUOTE>
|
||||
\see drawLine for more information */
|
||||
inline virtual void set_drawLine(bool __value)
|
||||
{
|
||||
this->drawLine = __value;
|
||||
}
|
||||
/*! \brief returns the property drawLine.
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copybrief drawLine </BLOCKQUOTE>
|
||||
\details Description of the parameter drawLine is: <BLOCKQUOTE>\copydoc drawLine </BLOCKQUOTE>
|
||||
\see drawLine for more information */
|
||||
inline virtual bool get_drawLine() const
|
||||
{
|
||||
return this->drawLine;
|
||||
}
|
||||
/*! \brief sets the property fillStyle to the specified \a __value.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual void set_fillStyle(const Qt::BrushStyle & __value)
|
||||
{
|
||||
this->fillStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property fillStyle.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual Qt::BrushStyle get_fillStyle() const
|
||||
{
|
||||
@ -401,28 +401,28 @@ class LIB_EXPORT JKQTPFilledVerticalRangeGraph: public JKQTPXYGraph {
|
||||
}
|
||||
|
||||
/*! \brief sets the property drawSelectionLine to the specified \a __value.
|
||||
\details Description of the parameter drawSelectionLine is: <BLOCKQUOTE>\copybrief drawSelectionLine </BLOCKQUOTE>
|
||||
\details Description of the parameter drawSelectionLine is: <BLOCKQUOTE>\copydoc drawSelectionLine </BLOCKQUOTE>
|
||||
\see drawSelectionLine for more information */
|
||||
inline virtual void set_drawSelectionLine(bool __value)
|
||||
{
|
||||
this->drawSelectionLine = __value;
|
||||
}
|
||||
/*! \brief returns the property drawSelectionLine.
|
||||
\details Description of the parameter drawSelectionLine is: <BLOCKQUOTE>\copybrief drawSelectionLine </BLOCKQUOTE>
|
||||
\details Description of the parameter drawSelectionLine is: <BLOCKQUOTE>\copydoc drawSelectionLine </BLOCKQUOTE>
|
||||
\see drawSelectionLine for more information */
|
||||
inline virtual bool get_drawSelectionLine() const
|
||||
{
|
||||
return this->drawSelectionLine;
|
||||
}
|
||||
/*! \brief sets the property selectionLineColor to the specified \a __value.
|
||||
\details Description of the parameter selectionLineColor is: <BLOCKQUOTE>\copybrief selectionLineColor </BLOCKQUOTE>
|
||||
\details Description of the parameter selectionLineColor is: <BLOCKQUOTE>\copydoc selectionLineColor </BLOCKQUOTE>
|
||||
\see selectionLineColor for more information */
|
||||
inline virtual void set_selectionLineColor(const QColor & __value)
|
||||
{
|
||||
this->selectionLineColor = __value;
|
||||
}
|
||||
/*! \brief returns the property selectionLineColor.
|
||||
\details Description of the parameter selectionLineColor is: <BLOCKQUOTE>\copybrief selectionLineColor </BLOCKQUOTE>
|
||||
\details Description of the parameter selectionLineColor is: <BLOCKQUOTE>\copydoc selectionLineColor </BLOCKQUOTE>
|
||||
\see selectionLineColor for more information */
|
||||
inline virtual QColor get_selectionLineColor() const
|
||||
{
|
||||
|
@ -60,42 +60,42 @@ class LIB_EXPORT JKQTPGeoBaseLine: public JKQTPPlotObject {
|
||||
|
||||
|
||||
/*! \brief sets the property color to the specified \a __value.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual void set_color(const QColor & __value)
|
||||
{
|
||||
this->color = __value;
|
||||
}
|
||||
/*! \brief returns the property color.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual QColor get_color() const
|
||||
{
|
||||
return this->color;
|
||||
}
|
||||
/*! \brief sets the property style to the specified \a __value.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual void set_style(const Qt::PenStyle & __value)
|
||||
{
|
||||
this->style = __value;
|
||||
}
|
||||
/*! \brief returns the property style.
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copybrief style </BLOCKQUOTE>
|
||||
\details Description of the parameter style is: <BLOCKQUOTE>\copydoc style </BLOCKQUOTE>
|
||||
\see style for more information */
|
||||
inline virtual Qt::PenStyle get_style() const
|
||||
{
|
||||
return this->style;
|
||||
}
|
||||
/*! \brief sets the property lineWidth to the specified \a __value.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual void set_lineWidth(double __value)
|
||||
{
|
||||
this->lineWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property lineWidth.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual double get_lineWidth() const
|
||||
{
|
||||
@ -172,28 +172,28 @@ class LIB_EXPORT JKQTPGeoBaseFilled: public JKQTPGeoBaseLine {
|
||||
JKQTPGeoBaseFilled(QColor color, QColor fillColor, JKQTPlotter* parent);
|
||||
|
||||
/*! \brief sets the property fillColor to the specified \a __value.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual void set_fillColor(const QColor & __value)
|
||||
{
|
||||
this->fillColor = __value;
|
||||
}
|
||||
/*! \brief returns the property fillColor.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual QColor get_fillColor() const
|
||||
{
|
||||
return this->fillColor;
|
||||
}
|
||||
/*! \brief sets the property fillStyle to the specified \a __value.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual void set_fillStyle(const Qt::BrushStyle & __value)
|
||||
{
|
||||
this->fillStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property fillStyle.
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copybrief fillStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter fillStyle is: <BLOCKQUOTE>\copydoc fillStyle </BLOCKQUOTE>
|
||||
\see fillStyle for more information */
|
||||
inline virtual Qt::BrushStyle get_fillStyle() const
|
||||
{
|
||||
@ -251,98 +251,98 @@ class LIB_EXPORT JKQTPGeoSymbol: public JKQTPPlotObject {
|
||||
JKQTPGeoSymbol(JKQTPlotter* parent, double x, double y, JKQTPGraphSymbols symbol=JKQTPCross, double symbolSize=10, QColor color=QColor("black"), QColor fillColor=QColor("grey"));
|
||||
|
||||
/*! \brief sets the property color to the specified \a __value.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual void set_color(const QColor & __value)
|
||||
{
|
||||
this->color = __value;
|
||||
}
|
||||
/*! \brief returns the property color.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual QColor get_color() const
|
||||
{
|
||||
return this->color;
|
||||
}
|
||||
/*! \brief sets the property fillColor to the specified \a __value.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual void set_fillColor(const QColor & __value)
|
||||
{
|
||||
this->fillColor = __value;
|
||||
}
|
||||
/*! \brief returns the property fillColor.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual QColor get_fillColor() const
|
||||
{
|
||||
return this->fillColor;
|
||||
}
|
||||
/*! \brief sets the property symbol to the specified \a __value.
|
||||
\details Description of the parameter symbol is: <BLOCKQUOTE>\copybrief symbol </BLOCKQUOTE>
|
||||
\details Description of the parameter symbol is: <BLOCKQUOTE>\copydoc symbol </BLOCKQUOTE>
|
||||
\see symbol for more information */
|
||||
inline virtual void set_symbol(const JKQTPGraphSymbols & __value)
|
||||
{
|
||||
this->symbol = __value;
|
||||
}
|
||||
/*! \brief returns the property symbol.
|
||||
\details Description of the parameter symbol is: <BLOCKQUOTE>\copybrief symbol </BLOCKQUOTE>
|
||||
\details Description of the parameter symbol is: <BLOCKQUOTE>\copydoc symbol </BLOCKQUOTE>
|
||||
\see symbol for more information */
|
||||
inline virtual JKQTPGraphSymbols get_symbol() const
|
||||
{
|
||||
return this->symbol;
|
||||
}
|
||||
/*! \brief sets the property symbolSize to the specified \a __value.
|
||||
\details Description of the parameter symbolSize is: <BLOCKQUOTE>\copybrief symbolSize </BLOCKQUOTE>
|
||||
\details Description of the parameter symbolSize is: <BLOCKQUOTE>\copydoc symbolSize </BLOCKQUOTE>
|
||||
\see symbolSize for more information */
|
||||
inline virtual void set_symbolSize(double __value)
|
||||
{
|
||||
this->symbolSize = __value;
|
||||
}
|
||||
/*! \brief returns the property symbolSize.
|
||||
\details Description of the parameter symbolSize is: <BLOCKQUOTE>\copybrief symbolSize </BLOCKQUOTE>
|
||||
\details Description of the parameter symbolSize is: <BLOCKQUOTE>\copydoc symbolSize </BLOCKQUOTE>
|
||||
\see symbolSize for more information */
|
||||
inline virtual double get_symbolSize() const
|
||||
{
|
||||
return this->symbolSize;
|
||||
}
|
||||
/*! \brief sets the property symbolWidth to the specified \a __value.
|
||||
\details Description of the parameter symbolWidth is: <BLOCKQUOTE>\copybrief symbolWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter symbolWidth is: <BLOCKQUOTE>\copydoc symbolWidth </BLOCKQUOTE>
|
||||
\see symbolWidth for more information */
|
||||
inline virtual void set_symbolWidth(double __value)
|
||||
{
|
||||
this->symbolWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property symbolWidth.
|
||||
\details Description of the parameter symbolWidth is: <BLOCKQUOTE>\copybrief symbolWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter symbolWidth is: <BLOCKQUOTE>\copydoc symbolWidth </BLOCKQUOTE>
|
||||
\see symbolWidth for more information */
|
||||
inline virtual double get_symbolWidth() const
|
||||
{
|
||||
return this->symbolWidth;
|
||||
}
|
||||
/*! \brief sets the property x to the specified \a __value.
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copybrief x </BLOCKQUOTE>
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copydoc x </BLOCKQUOTE>
|
||||
\see x for more information */
|
||||
inline virtual void set_x(double __value)
|
||||
{
|
||||
this->x = __value;
|
||||
}
|
||||
/*! \brief returns the property x.
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copybrief x </BLOCKQUOTE>
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copydoc x </BLOCKQUOTE>
|
||||
\see x for more information */
|
||||
inline virtual double get_x() const
|
||||
{
|
||||
return this->x;
|
||||
}
|
||||
/*! \brief sets the property y to the specified \a __value.
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copybrief y </BLOCKQUOTE>
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copydoc y </BLOCKQUOTE>
|
||||
\see y for more information */
|
||||
inline virtual void set_y(double __value)
|
||||
{
|
||||
this->y = __value;
|
||||
}
|
||||
/*! \brief returns the property y.
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copybrief y </BLOCKQUOTE>
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copydoc y </BLOCKQUOTE>
|
||||
\see y for more information */
|
||||
inline virtual double get_y() const
|
||||
{
|
||||
@ -409,70 +409,70 @@ class LIB_EXPORT JKQTPGeoText: public JKQTPPlotObject {
|
||||
JKQTPGeoText(JKQTPlotter* parent, double x, double y, QString text, double fontSize=10, QColor color=QColor("black"));
|
||||
|
||||
/*! \brief sets the property color to the specified \a __value.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual void set_color(const QColor & __value)
|
||||
{
|
||||
this->color = __value;
|
||||
}
|
||||
/*! \brief returns the property color.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual QColor get_color() const
|
||||
{
|
||||
return this->color;
|
||||
}
|
||||
/*! \brief sets the property text to the specified \a __value.
|
||||
\details Description of the parameter text is: <BLOCKQUOTE>\copybrief text </BLOCKQUOTE>
|
||||
\details Description of the parameter text is: <BLOCKQUOTE>\copydoc text </BLOCKQUOTE>
|
||||
\see text for more information */
|
||||
inline virtual void set_text(const QString & __value)
|
||||
{
|
||||
this->text = __value;
|
||||
}
|
||||
/*! \brief returns the property text.
|
||||
\details Description of the parameter text is: <BLOCKQUOTE>\copybrief text </BLOCKQUOTE>
|
||||
\details Description of the parameter text is: <BLOCKQUOTE>\copydoc text </BLOCKQUOTE>
|
||||
\see text for more information */
|
||||
inline virtual QString get_text() const
|
||||
{
|
||||
return this->text;
|
||||
}
|
||||
/*! \brief sets the property fontSize to the specified \a __value.
|
||||
\details Description of the parameter fontSize is: <BLOCKQUOTE>\copybrief fontSize </BLOCKQUOTE>
|
||||
\details Description of the parameter fontSize is: <BLOCKQUOTE>\copydoc fontSize </BLOCKQUOTE>
|
||||
\see fontSize for more information */
|
||||
inline virtual void set_fontSize(double __value)
|
||||
{
|
||||
this->fontSize = __value;
|
||||
}
|
||||
/*! \brief returns the property fontSize.
|
||||
\details Description of the parameter fontSize is: <BLOCKQUOTE>\copybrief fontSize </BLOCKQUOTE>
|
||||
\details Description of the parameter fontSize is: <BLOCKQUOTE>\copydoc fontSize </BLOCKQUOTE>
|
||||
\see fontSize for more information */
|
||||
inline virtual double get_fontSize() const
|
||||
{
|
||||
return this->fontSize;
|
||||
}
|
||||
/*! \brief sets the property x to the specified \a __value.
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copybrief x </BLOCKQUOTE>
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copydoc x </BLOCKQUOTE>
|
||||
\see x for more information */
|
||||
inline virtual void set_x(double __value)
|
||||
{
|
||||
this->x = __value;
|
||||
}
|
||||
/*! \brief returns the property x.
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copybrief x </BLOCKQUOTE>
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copydoc x </BLOCKQUOTE>
|
||||
\see x for more information */
|
||||
inline virtual double get_x() const
|
||||
{
|
||||
return this->x;
|
||||
}
|
||||
/*! \brief sets the property y to the specified \a __value.
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copybrief y </BLOCKQUOTE>
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copydoc y </BLOCKQUOTE>
|
||||
\see y for more information */
|
||||
inline virtual void set_y(double __value)
|
||||
{
|
||||
this->y = __value;
|
||||
}
|
||||
/*! \brief returns the property y.
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copybrief y </BLOCKQUOTE>
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copydoc y </BLOCKQUOTE>
|
||||
\see y for more information */
|
||||
inline virtual double get_y() const
|
||||
{
|
||||
@ -550,56 +550,56 @@ class LIB_EXPORT JKQTPGeoLine: public JKQTPGeoBaseLine {
|
||||
virtual void draw(JKQTPEnhancedPainter& painter) override;
|
||||
|
||||
/*! \brief sets the property x1 to the specified \a __value.
|
||||
\details Description of the parameter x1 is: <BLOCKQUOTE>\copybrief x1 </BLOCKQUOTE>
|
||||
\details Description of the parameter x1 is: <BLOCKQUOTE>\copydoc x1 </BLOCKQUOTE>
|
||||
\see x1 for more information */
|
||||
inline virtual void set_x1(double __value)
|
||||
{
|
||||
this->x1 = __value;
|
||||
}
|
||||
/*! \brief returns the property x1.
|
||||
\details Description of the parameter x1 is: <BLOCKQUOTE>\copybrief x1 </BLOCKQUOTE>
|
||||
\details Description of the parameter x1 is: <BLOCKQUOTE>\copydoc x1 </BLOCKQUOTE>
|
||||
\see x1 for more information */
|
||||
inline virtual double get_x1() const
|
||||
{
|
||||
return this->x1;
|
||||
}
|
||||
/*! \brief sets the property y1 to the specified \a __value.
|
||||
\details Description of the parameter y1 is: <BLOCKQUOTE>\copybrief y1 </BLOCKQUOTE>
|
||||
\details Description of the parameter y1 is: <BLOCKQUOTE>\copydoc y1 </BLOCKQUOTE>
|
||||
\see y1 for more information */
|
||||
inline virtual void set_y1(double __value)
|
||||
{
|
||||
this->y1 = __value;
|
||||
}
|
||||
/*! \brief returns the property y1.
|
||||
\details Description of the parameter y1 is: <BLOCKQUOTE>\copybrief y1 </BLOCKQUOTE>
|
||||
\details Description of the parameter y1 is: <BLOCKQUOTE>\copydoc y1 </BLOCKQUOTE>
|
||||
\see y1 for more information */
|
||||
inline virtual double get_y1() const
|
||||
{
|
||||
return this->y1;
|
||||
}
|
||||
/*! \brief sets the property x2 to the specified \a __value.
|
||||
\details Description of the parameter x2 is: <BLOCKQUOTE>\copybrief x2 </BLOCKQUOTE>
|
||||
\details Description of the parameter x2 is: <BLOCKQUOTE>\copydoc x2 </BLOCKQUOTE>
|
||||
\see x2 for more information */
|
||||
inline virtual void set_x2(double __value)
|
||||
{
|
||||
this->x2 = __value;
|
||||
}
|
||||
/*! \brief returns the property x2.
|
||||
\details Description of the parameter x2 is: <BLOCKQUOTE>\copybrief x2 </BLOCKQUOTE>
|
||||
\details Description of the parameter x2 is: <BLOCKQUOTE>\copydoc x2 </BLOCKQUOTE>
|
||||
\see x2 for more information */
|
||||
inline virtual double get_x2() const
|
||||
{
|
||||
return this->x2;
|
||||
}
|
||||
/*! \brief sets the property y2 to the specified \a __value.
|
||||
\details Description of the parameter y2 is: <BLOCKQUOTE>\copybrief y2 </BLOCKQUOTE>
|
||||
\details Description of the parameter y2 is: <BLOCKQUOTE>\copydoc y2 </BLOCKQUOTE>
|
||||
\see y2 for more information */
|
||||
inline virtual void set_y2(double __value)
|
||||
{
|
||||
this->y2 = __value;
|
||||
}
|
||||
/*! \brief returns the property y2.
|
||||
\details Description of the parameter y2 is: <BLOCKQUOTE>\copybrief y2 </BLOCKQUOTE>
|
||||
\details Description of the parameter y2 is: <BLOCKQUOTE>\copydoc y2 </BLOCKQUOTE>
|
||||
\see y2 for more information */
|
||||
inline virtual double get_y2() const
|
||||
{
|
||||
@ -658,70 +658,70 @@ class LIB_EXPORT JKQTPGeoInfiniteLine: public JKQTPGeoBaseLine {
|
||||
virtual void draw(JKQTPEnhancedPainter& painter) override;
|
||||
|
||||
/*! \brief sets the property x to the specified \a __value.
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copybrief x </BLOCKQUOTE>
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copydoc x </BLOCKQUOTE>
|
||||
\see x for more information */
|
||||
inline virtual void set_x(double __value)
|
||||
{
|
||||
this->x = __value;
|
||||
}
|
||||
/*! \brief returns the property x.
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copybrief x </BLOCKQUOTE>
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copydoc x </BLOCKQUOTE>
|
||||
\see x for more information */
|
||||
inline virtual double get_x() const
|
||||
{
|
||||
return this->x;
|
||||
}
|
||||
/*! \brief sets the property y to the specified \a __value.
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copybrief y </BLOCKQUOTE>
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copydoc y </BLOCKQUOTE>
|
||||
\see y for more information */
|
||||
inline virtual void set_y(double __value)
|
||||
{
|
||||
this->y = __value;
|
||||
}
|
||||
/*! \brief returns the property y.
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copybrief y </BLOCKQUOTE>
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copydoc y </BLOCKQUOTE>
|
||||
\see y for more information */
|
||||
inline virtual double get_y() const
|
||||
{
|
||||
return this->y;
|
||||
}
|
||||
/*! \brief sets the property dx to the specified \a __value.
|
||||
\details Description of the parameter dx is: <BLOCKQUOTE>\copybrief dx </BLOCKQUOTE>
|
||||
\details Description of the parameter dx is: <BLOCKQUOTE>\copydoc dx </BLOCKQUOTE>
|
||||
\see dx for more information */
|
||||
inline virtual void set_dx(double __value)
|
||||
{
|
||||
this->dx = __value;
|
||||
}
|
||||
/*! \brief returns the property dx.
|
||||
\details Description of the parameter dx is: <BLOCKQUOTE>\copybrief dx </BLOCKQUOTE>
|
||||
\details Description of the parameter dx is: <BLOCKQUOTE>\copydoc dx </BLOCKQUOTE>
|
||||
\see dx for more information */
|
||||
inline virtual double get_dx() const
|
||||
{
|
||||
return this->dx;
|
||||
}
|
||||
/*! \brief sets the property dy to the specified \a __value.
|
||||
\details Description of the parameter dy is: <BLOCKQUOTE>\copybrief dy </BLOCKQUOTE>
|
||||
\details Description of the parameter dy is: <BLOCKQUOTE>\copydoc dy </BLOCKQUOTE>
|
||||
\see dy for more information */
|
||||
inline virtual void set_dy(double __value)
|
||||
{
|
||||
this->dy = __value;
|
||||
}
|
||||
/*! \brief returns the property dy.
|
||||
\details Description of the parameter dy is: <BLOCKQUOTE>\copybrief dy </BLOCKQUOTE>
|
||||
\details Description of the parameter dy is: <BLOCKQUOTE>\copydoc dy </BLOCKQUOTE>
|
||||
\see dy for more information */
|
||||
inline virtual double get_dy() const
|
||||
{
|
||||
return this->dy;
|
||||
}
|
||||
/*! \brief sets the property two_sided to the specified \a __value.
|
||||
\details Description of the parameter two_sided is: <BLOCKQUOTE>\copybrief two_sided </BLOCKQUOTE>
|
||||
\details Description of the parameter two_sided is: <BLOCKQUOTE>\copydoc two_sided </BLOCKQUOTE>
|
||||
\see two_sided for more information */
|
||||
inline virtual void set_two_sided(bool __value)
|
||||
{
|
||||
this->two_sided = __value;
|
||||
}
|
||||
/*! \brief returns the property two_sided.
|
||||
\details Description of the parameter two_sided is: <BLOCKQUOTE>\copybrief two_sided </BLOCKQUOTE>
|
||||
\details Description of the parameter two_sided is: <BLOCKQUOTE>\copydoc two_sided </BLOCKQUOTE>
|
||||
\see two_sided for more information */
|
||||
inline virtual bool get_two_sided() const
|
||||
{
|
||||
@ -791,14 +791,14 @@ class LIB_EXPORT JKQTPGeoPolyLines: public JKQTPGeoBaseLine {
|
||||
virtual void draw(JKQTPEnhancedPainter& painter) override;
|
||||
|
||||
/*! \brief sets the property points to the specified \a __value.
|
||||
\details Description of the parameter points is: <BLOCKQUOTE>\copybrief points </BLOCKQUOTE>
|
||||
\details Description of the parameter points is: <BLOCKQUOTE>\copydoc points </BLOCKQUOTE>
|
||||
\see points for more information */
|
||||
inline virtual void set_points(const QVector<QPointF> & __value)
|
||||
{
|
||||
this->points = __value;
|
||||
}
|
||||
/*! \brief returns the property points.
|
||||
\details Description of the parameter points is: <BLOCKQUOTE>\copybrief points </BLOCKQUOTE>
|
||||
\details Description of the parameter points is: <BLOCKQUOTE>\copydoc points </BLOCKQUOTE>
|
||||
\see points for more information */
|
||||
inline virtual QVector<QPointF> get_points() const
|
||||
{
|
||||
@ -920,70 +920,70 @@ class LIB_EXPORT JKQTPGeoRectangle: public JKQTPGeoBaseFilled {
|
||||
virtual void draw(JKQTPEnhancedPainter& painter) override;
|
||||
|
||||
/*! \brief sets the property x to the specified \a __value.
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copybrief x </BLOCKQUOTE>
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copydoc x </BLOCKQUOTE>
|
||||
\see x for more information */
|
||||
inline virtual void set_x(double __value)
|
||||
{
|
||||
this->x = __value;
|
||||
}
|
||||
/*! \brief returns the property x.
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copybrief x </BLOCKQUOTE>
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copydoc x </BLOCKQUOTE>
|
||||
\see x for more information */
|
||||
inline virtual double get_x() const
|
||||
{
|
||||
return this->x;
|
||||
}
|
||||
/*! \brief sets the property y to the specified \a __value.
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copybrief y </BLOCKQUOTE>
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copydoc y </BLOCKQUOTE>
|
||||
\see y for more information */
|
||||
inline virtual void set_y(double __value)
|
||||
{
|
||||
this->y = __value;
|
||||
}
|
||||
/*! \brief returns the property y.
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copybrief y </BLOCKQUOTE>
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copydoc y </BLOCKQUOTE>
|
||||
\see y for more information */
|
||||
inline virtual double get_y() const
|
||||
{
|
||||
return this->y;
|
||||
}
|
||||
/*! \brief sets the property width to the specified \a __value.
|
||||
\details Description of the parameter width is: <BLOCKQUOTE>\copybrief width </BLOCKQUOTE>
|
||||
\details Description of the parameter width is: <BLOCKQUOTE>\copydoc width </BLOCKQUOTE>
|
||||
\see width for more information */
|
||||
inline virtual void set_width(double __value)
|
||||
{
|
||||
this->width = __value;
|
||||
}
|
||||
/*! \brief returns the property width.
|
||||
\details Description of the parameter width is: <BLOCKQUOTE>\copybrief width </BLOCKQUOTE>
|
||||
\details Description of the parameter width is: <BLOCKQUOTE>\copydoc width </BLOCKQUOTE>
|
||||
\see width for more information */
|
||||
inline virtual double get_width() const
|
||||
{
|
||||
return this->width;
|
||||
}
|
||||
/*! \brief sets the property height to the specified \a __value.
|
||||
\details Description of the parameter height is: <BLOCKQUOTE>\copybrief height </BLOCKQUOTE>
|
||||
\details Description of the parameter height is: <BLOCKQUOTE>\copydoc height </BLOCKQUOTE>
|
||||
\see height for more information */
|
||||
inline virtual void set_height(double __value)
|
||||
{
|
||||
this->height = __value;
|
||||
}
|
||||
/*! \brief returns the property height.
|
||||
\details Description of the parameter height is: <BLOCKQUOTE>\copybrief height </BLOCKQUOTE>
|
||||
\details Description of the parameter height is: <BLOCKQUOTE>\copydoc height </BLOCKQUOTE>
|
||||
\see height for more information */
|
||||
inline virtual double get_height() const
|
||||
{
|
||||
return this->height;
|
||||
}
|
||||
/*! \brief sets the property angle to the specified \a __value.
|
||||
\details Description of the parameter angle is: <BLOCKQUOTE>\copybrief angle </BLOCKQUOTE>
|
||||
\details Description of the parameter angle is: <BLOCKQUOTE>\copydoc angle </BLOCKQUOTE>
|
||||
\see angle for more information */
|
||||
inline virtual void set_angle(double __value)
|
||||
{
|
||||
this->angle = __value;
|
||||
}
|
||||
/*! \brief returns the property angle.
|
||||
\details Description of the parameter angle is: <BLOCKQUOTE>\copybrief angle </BLOCKQUOTE>
|
||||
\details Description of the parameter angle is: <BLOCKQUOTE>\copydoc angle </BLOCKQUOTE>
|
||||
\see angle for more information */
|
||||
inline virtual double get_angle() const
|
||||
{
|
||||
@ -1067,14 +1067,14 @@ class LIB_EXPORT JKQTPGeoPolygon: public JKQTPGeoBaseFilled {
|
||||
virtual void draw(JKQTPEnhancedPainter& painter) override;
|
||||
|
||||
/*! \brief sets the property points to the specified \a __value.
|
||||
\details Description of the parameter points is: <BLOCKQUOTE>\copybrief points </BLOCKQUOTE>
|
||||
\details Description of the parameter points is: <BLOCKQUOTE>\copydoc points </BLOCKQUOTE>
|
||||
\see points for more information */
|
||||
inline virtual void set_points(const QVector<QPointF> & __value)
|
||||
{
|
||||
this->points = __value;
|
||||
}
|
||||
/*! \brief returns the property points.
|
||||
\details Description of the parameter points is: <BLOCKQUOTE>\copybrief points </BLOCKQUOTE>
|
||||
\details Description of the parameter points is: <BLOCKQUOTE>\copydoc points </BLOCKQUOTE>
|
||||
\see points for more information */
|
||||
inline virtual QVector<QPointF> get_points() const
|
||||
{
|
||||
@ -1195,14 +1195,14 @@ class LIB_EXPORT JKQTPGeoEllipse: public JKQTPGeoRectangle {
|
||||
virtual void draw(JKQTPEnhancedPainter& painter) override;
|
||||
|
||||
/*! \brief sets the property controlPoints to the specified \a __value.
|
||||
\details Description of the parameter controlPoints is: <BLOCKQUOTE>\copybrief controlPoints </BLOCKQUOTE>
|
||||
\details Description of the parameter controlPoints is: <BLOCKQUOTE>\copydoc controlPoints </BLOCKQUOTE>
|
||||
\see controlPoints for more information */
|
||||
inline virtual void set_controlPoints(const unsigned int & __value)
|
||||
{
|
||||
this->controlPoints = __value;
|
||||
}
|
||||
/*! \brief returns the property controlPoints.
|
||||
\details Description of the parameter controlPoints is: <BLOCKQUOTE>\copybrief controlPoints </BLOCKQUOTE>
|
||||
\details Description of the parameter controlPoints is: <BLOCKQUOTE>\copydoc controlPoints </BLOCKQUOTE>
|
||||
\see controlPoints for more information */
|
||||
inline virtual unsigned int get_controlPoints() const
|
||||
{
|
||||
@ -1259,112 +1259,112 @@ class LIB_EXPORT JKQTPGeoArc: public JKQTPGeoBaseLine {
|
||||
virtual void draw(JKQTPEnhancedPainter& painter) override;
|
||||
|
||||
/*! \brief sets the property controlPoints to the specified \a __value.
|
||||
\details Description of the parameter controlPoints is: <BLOCKQUOTE>\copybrief controlPoints </BLOCKQUOTE>
|
||||
\details Description of the parameter controlPoints is: <BLOCKQUOTE>\copydoc controlPoints </BLOCKQUOTE>
|
||||
\see controlPoints for more information */
|
||||
inline virtual void set_controlPoints(const unsigned int & __value)
|
||||
{
|
||||
this->controlPoints = __value;
|
||||
}
|
||||
/*! \brief returns the property controlPoints.
|
||||
\details Description of the parameter controlPoints is: <BLOCKQUOTE>\copybrief controlPoints </BLOCKQUOTE>
|
||||
\details Description of the parameter controlPoints is: <BLOCKQUOTE>\copydoc controlPoints </BLOCKQUOTE>
|
||||
\see controlPoints for more information */
|
||||
inline virtual unsigned int get_controlPoints() const
|
||||
{
|
||||
return this->controlPoints;
|
||||
}
|
||||
/*! \brief sets the property angleStart to the specified \a __value.
|
||||
\details Description of the parameter angleStart is: <BLOCKQUOTE>\copybrief angleStart </BLOCKQUOTE>
|
||||
\details Description of the parameter angleStart is: <BLOCKQUOTE>\copydoc angleStart </BLOCKQUOTE>
|
||||
\see angleStart for more information */
|
||||
inline virtual void set_angleStart(double __value)
|
||||
{
|
||||
this->angleStart = __value;
|
||||
}
|
||||
/*! \brief returns the property angleStart.
|
||||
\details Description of the parameter angleStart is: <BLOCKQUOTE>\copybrief angleStart </BLOCKQUOTE>
|
||||
\details Description of the parameter angleStart is: <BLOCKQUOTE>\copydoc angleStart </BLOCKQUOTE>
|
||||
\see angleStart for more information */
|
||||
inline virtual double get_angleStart() const
|
||||
{
|
||||
return this->angleStart;
|
||||
}
|
||||
/*! \brief sets the property angleStop to the specified \a __value.
|
||||
\details Description of the parameter angleStop is: <BLOCKQUOTE>\copybrief angleStop </BLOCKQUOTE>
|
||||
\details Description of the parameter angleStop is: <BLOCKQUOTE>\copydoc angleStop </BLOCKQUOTE>
|
||||
\see angleStop for more information */
|
||||
inline virtual void set_angleStop(double __value)
|
||||
{
|
||||
this->angleStop = __value;
|
||||
}
|
||||
/*! \brief returns the property angleStop.
|
||||
\details Description of the parameter angleStop is: <BLOCKQUOTE>\copybrief angleStop </BLOCKQUOTE>
|
||||
\details Description of the parameter angleStop is: <BLOCKQUOTE>\copydoc angleStop </BLOCKQUOTE>
|
||||
\see angleStop for more information */
|
||||
inline virtual double get_angleStop() const
|
||||
{
|
||||
return this->angleStop;
|
||||
}
|
||||
/*! \brief sets the property x to the specified \a __value.
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copybrief x </BLOCKQUOTE>
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copydoc x </BLOCKQUOTE>
|
||||
\see x for more information */
|
||||
inline virtual void set_x(double __value)
|
||||
{
|
||||
this->x = __value;
|
||||
}
|
||||
/*! \brief returns the property x.
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copybrief x </BLOCKQUOTE>
|
||||
\details Description of the parameter x is: <BLOCKQUOTE>\copydoc x </BLOCKQUOTE>
|
||||
\see x for more information */
|
||||
inline virtual double get_x() const
|
||||
{
|
||||
return this->x;
|
||||
}
|
||||
/*! \brief sets the property y to the specified \a __value.
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copybrief y </BLOCKQUOTE>
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copydoc y </BLOCKQUOTE>
|
||||
\see y for more information */
|
||||
inline virtual void set_y(double __value)
|
||||
{
|
||||
this->y = __value;
|
||||
}
|
||||
/*! \brief returns the property y.
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copybrief y </BLOCKQUOTE>
|
||||
\details Description of the parameter y is: <BLOCKQUOTE>\copydoc y </BLOCKQUOTE>
|
||||
\see y for more information */
|
||||
inline virtual double get_y() const
|
||||
{
|
||||
return this->y;
|
||||
}
|
||||
/*! \brief sets the property width to the specified \a __value.
|
||||
\details Description of the parameter width is: <BLOCKQUOTE>\copybrief width </BLOCKQUOTE>
|
||||
\details Description of the parameter width is: <BLOCKQUOTE>\copydoc width </BLOCKQUOTE>
|
||||
\see width for more information */
|
||||
inline virtual void set_width(double __value)
|
||||
{
|
||||
this->width = __value;
|
||||
}
|
||||
/*! \brief returns the property width.
|
||||
\details Description of the parameter width is: <BLOCKQUOTE>\copybrief width </BLOCKQUOTE>
|
||||
\details Description of the parameter width is: <BLOCKQUOTE>\copydoc width </BLOCKQUOTE>
|
||||
\see width for more information */
|
||||
inline virtual double get_width() const
|
||||
{
|
||||
return this->width;
|
||||
}
|
||||
/*! \brief sets the property height to the specified \a __value.
|
||||
\details Description of the parameter height is: <BLOCKQUOTE>\copybrief height </BLOCKQUOTE>
|
||||
\details Description of the parameter height is: <BLOCKQUOTE>\copydoc height </BLOCKQUOTE>
|
||||
\see height for more information */
|
||||
inline virtual void set_height(double __value)
|
||||
{
|
||||
this->height = __value;
|
||||
}
|
||||
/*! \brief returns the property height.
|
||||
\details Description of the parameter height is: <BLOCKQUOTE>\copybrief height </BLOCKQUOTE>
|
||||
\details Description of the parameter height is: <BLOCKQUOTE>\copydoc height </BLOCKQUOTE>
|
||||
\see height for more information */
|
||||
inline virtual double get_height() const
|
||||
{
|
||||
return this->height;
|
||||
}
|
||||
/*! \brief sets the property angle to the specified \a __value.
|
||||
\details Description of the parameter angle is: <BLOCKQUOTE>\copybrief angle </BLOCKQUOTE>
|
||||
\details Description of the parameter angle is: <BLOCKQUOTE>\copydoc angle </BLOCKQUOTE>
|
||||
\see angle for more information */
|
||||
inline virtual void set_angle(double __value)
|
||||
{
|
||||
this->angle = __value;
|
||||
}
|
||||
/*! \brief returns the property angle.
|
||||
\details Description of the parameter angle is: <BLOCKQUOTE>\copybrief angle </BLOCKQUOTE>
|
||||
\details Description of the parameter angle is: <BLOCKQUOTE>\copydoc angle </BLOCKQUOTE>
|
||||
\see angle for more information */
|
||||
inline virtual double get_angle() const
|
||||
{
|
||||
@ -1442,28 +1442,28 @@ class LIB_EXPORT JKQTPGeoPie: public JKQTPGeoEllipse {
|
||||
virtual void draw(JKQTPEnhancedPainter& painter) override;
|
||||
|
||||
/*! \brief sets the property angleStart to the specified \a __value.
|
||||
\details Description of the parameter angleStart is: <BLOCKQUOTE>\copybrief angleStart </BLOCKQUOTE>
|
||||
\details Description of the parameter angleStart is: <BLOCKQUOTE>\copydoc angleStart </BLOCKQUOTE>
|
||||
\see angleStart for more information */
|
||||
inline virtual void set_angleStart(double __value)
|
||||
{
|
||||
this->angleStart = __value;
|
||||
}
|
||||
/*! \brief returns the property angleStart.
|
||||
\details Description of the parameter angleStart is: <BLOCKQUOTE>\copybrief angleStart </BLOCKQUOTE>
|
||||
\details Description of the parameter angleStart is: <BLOCKQUOTE>\copydoc angleStart </BLOCKQUOTE>
|
||||
\see angleStart for more information */
|
||||
inline virtual double get_angleStart() const
|
||||
{
|
||||
return this->angleStart;
|
||||
}
|
||||
/*! \brief sets the property angleStop to the specified \a __value.
|
||||
\details Description of the parameter angleStop is: <BLOCKQUOTE>\copybrief angleStop </BLOCKQUOTE>
|
||||
\details Description of the parameter angleStop is: <BLOCKQUOTE>\copydoc angleStop </BLOCKQUOTE>
|
||||
\see angleStop for more information */
|
||||
inline virtual void set_angleStop(double __value)
|
||||
{
|
||||
this->angleStop = __value;
|
||||
}
|
||||
/*! \brief returns the property angleStop.
|
||||
\details Description of the parameter angleStop is: <BLOCKQUOTE>\copybrief angleStop </BLOCKQUOTE>
|
||||
\details Description of the parameter angleStop is: <BLOCKQUOTE>\copydoc angleStop </BLOCKQUOTE>
|
||||
\see angleStop for more information */
|
||||
inline virtual double get_angleStop() const
|
||||
{
|
||||
|
@ -47,42 +47,42 @@ class LIB_EXPORT JKQTPImpulsesHorizontalGraph: public JKQTPXYGraph {
|
||||
virtual QColor getKeyLabelColor() override;
|
||||
|
||||
/*! \brief sets the property color to the specified \a __value.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual void set_color(const QColor & __value)
|
||||
{
|
||||
this->color = __value;
|
||||
}
|
||||
/*! \brief returns the property color.
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copybrief color </BLOCKQUOTE>
|
||||
\details Description of the parameter color is: <BLOCKQUOTE>\copydoc color </BLOCKQUOTE>
|
||||
\see color for more information */
|
||||
inline virtual QColor get_color() const
|
||||
{
|
||||
return this->color;
|
||||
}
|
||||
/*! \brief sets the property lineWidth to the specified \a __value.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual void set_lineWidth(double __value)
|
||||
{
|
||||
this->lineWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property lineWidth.
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copybrief lineWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter lineWidth is: <BLOCKQUOTE>\copydoc lineWidth </BLOCKQUOTE>
|
||||
\see lineWidth for more information */
|
||||
inline virtual double get_lineWidth() const
|
||||
{
|
||||
return this->lineWidth;
|
||||
}
|
||||
/*! \brief sets the property baseline to the specified \a __value.
|
||||
\details Description of the parameter baseline is: <BLOCKQUOTE>\copybrief baseline </BLOCKQUOTE>
|
||||
\details Description of the parameter baseline is: <BLOCKQUOTE>\copydoc baseline </BLOCKQUOTE>
|
||||
\see baseline for more information */
|
||||
inline virtual void set_baseline(double __value)
|
||||
{
|
||||
this->baseline = __value;
|
||||
}
|
||||
/*! \brief returns the property baseline.
|
||||
\details Description of the parameter baseline is: <BLOCKQUOTE>\copybrief baseline </BLOCKQUOTE>
|
||||
\details Description of the parameter baseline is: <BLOCKQUOTE>\copydoc baseline </BLOCKQUOTE>
|
||||
\see baseline for more information */
|
||||
inline virtual double get_baseline() const
|
||||
{
|
||||
|
@ -58,14 +58,14 @@ class LIB_EXPORT JKQTPXParsedFunctionLineGraph: public JKQTPXFunctionLineGraph {
|
||||
virtual ~JKQTPXParsedFunctionLineGraph() override;
|
||||
|
||||
/*! \brief sets the property function to the specified \a __value.
|
||||
\details Description of the parameter function is: <BLOCKQUOTE>\copybrief function </BLOCKQUOTE>
|
||||
\details Description of the parameter function is: <BLOCKQUOTE>\copydoc function </BLOCKQUOTE>
|
||||
\see function for more information */
|
||||
inline virtual void set_function(const QString & __value)
|
||||
{
|
||||
this->function = __value;
|
||||
}
|
||||
/*! \brief returns the property function.
|
||||
\details Description of the parameter function is: <BLOCKQUOTE>\copybrief function </BLOCKQUOTE>
|
||||
\details Description of the parameter function is: <BLOCKQUOTE>\copydoc function </BLOCKQUOTE>
|
||||
\see function for more information */
|
||||
inline virtual QString get_function() const
|
||||
{
|
||||
@ -73,14 +73,14 @@ class LIB_EXPORT JKQTPXParsedFunctionLineGraph: public JKQTPXFunctionLineGraph {
|
||||
}
|
||||
|
||||
/*! \brief sets the property errorFunction to the specified \a __value.
|
||||
\details Description of the parameter errorFunction is: <BLOCKQUOTE>\copybrief errorFunction </BLOCKQUOTE>
|
||||
\details Description of the parameter errorFunction is: <BLOCKQUOTE>\copydoc errorFunction </BLOCKQUOTE>
|
||||
\see errorFunction for more information */
|
||||
inline virtual void set_errorFunction(const QString & __value)
|
||||
{
|
||||
this->errorFunction = __value;
|
||||
}
|
||||
/*! \brief returns the property errorFunction.
|
||||
\details Description of the parameter errorFunction is: <BLOCKQUOTE>\copybrief errorFunction </BLOCKQUOTE>
|
||||
\details Description of the parameter errorFunction is: <BLOCKQUOTE>\copydoc errorFunction </BLOCKQUOTE>
|
||||
\see errorFunction for more information */
|
||||
inline virtual QString get_errorFunction() const
|
||||
{
|
||||
@ -144,14 +144,14 @@ class LIB_EXPORT JKQTPYParsedFunctionLineGraph: public JKQTPYFunctionLineGraph {
|
||||
virtual ~JKQTPYParsedFunctionLineGraph() override;
|
||||
|
||||
/*! \brief sets the property function to the specified \a __value.
|
||||
\details Description of the parameter function is: <BLOCKQUOTE>\copybrief function </BLOCKQUOTE>
|
||||
\details Description of the parameter function is: <BLOCKQUOTE>\copydoc function </BLOCKQUOTE>
|
||||
\see function for more information */
|
||||
inline virtual void set_function(const QString & __value)
|
||||
{
|
||||
this->function = __value;
|
||||
}
|
||||
/*! \brief returns the property function.
|
||||
\details Description of the parameter function is: <BLOCKQUOTE>\copybrief function </BLOCKQUOTE>
|
||||
\details Description of the parameter function is: <BLOCKQUOTE>\copydoc function </BLOCKQUOTE>
|
||||
\see function for more information */
|
||||
inline virtual QString get_function() const
|
||||
{
|
||||
@ -159,14 +159,14 @@ class LIB_EXPORT JKQTPYParsedFunctionLineGraph: public JKQTPYFunctionLineGraph {
|
||||
}
|
||||
|
||||
/*! \brief sets the property errorFunction to the specified \a __value.
|
||||
\details Description of the parameter errorFunction is: <BLOCKQUOTE>\copybrief errorFunction </BLOCKQUOTE>
|
||||
\details Description of the parameter errorFunction is: <BLOCKQUOTE>\copydoc errorFunction </BLOCKQUOTE>
|
||||
\see errorFunction for more information */
|
||||
inline virtual void set_errorFunction(const QString & __value)
|
||||
{
|
||||
this->errorFunction = __value;
|
||||
}
|
||||
/*! \brief returns the property errorFunction.
|
||||
\details Description of the parameter errorFunction is: <BLOCKQUOTE>\copybrief errorFunction </BLOCKQUOTE>
|
||||
\details Description of the parameter errorFunction is: <BLOCKQUOTE>\copydoc errorFunction </BLOCKQUOTE>
|
||||
\see errorFunction for more information */
|
||||
inline virtual QString get_errorFunction() const
|
||||
{
|
||||
|
@ -74,56 +74,56 @@ class LIB_EXPORT JKQTPPeakStreamGraph: public JKQTPSingleColumnGraph {
|
||||
virtual void drawKeyMarker(JKQTPEnhancedPainter& painter, QRectF& rect) override;
|
||||
|
||||
/*! \brief sets the property baseline to the specified \a __value.
|
||||
\details Description of the parameter baseline is: <BLOCKQUOTE>\copybrief baseline </BLOCKQUOTE>
|
||||
\details Description of the parameter baseline is: <BLOCKQUOTE>\copydoc baseline </BLOCKQUOTE>
|
||||
\see baseline for more information */
|
||||
inline virtual void set_baseline(double __value)
|
||||
{
|
||||
this->baseline = __value;
|
||||
}
|
||||
/*! \brief returns the property baseline.
|
||||
\details Description of the parameter baseline is: <BLOCKQUOTE>\copybrief baseline </BLOCKQUOTE>
|
||||
\details Description of the parameter baseline is: <BLOCKQUOTE>\copydoc baseline </BLOCKQUOTE>
|
||||
\see baseline for more information */
|
||||
inline virtual double get_baseline() const
|
||||
{
|
||||
return this->baseline;
|
||||
}
|
||||
/*! \brief sets the property peakHeight to the specified \a __value.
|
||||
\details Description of the parameter peakHeight is: <BLOCKQUOTE>\copybrief peakHeight </BLOCKQUOTE>
|
||||
\details Description of the parameter peakHeight is: <BLOCKQUOTE>\copydoc peakHeight </BLOCKQUOTE>
|
||||
\see peakHeight for more information */
|
||||
inline virtual void set_peakHeight(double __value)
|
||||
{
|
||||
this->peakHeight = __value;
|
||||
}
|
||||
/*! \brief returns the property peakHeight.
|
||||
\details Description of the parameter peakHeight is: <BLOCKQUOTE>\copybrief peakHeight </BLOCKQUOTE>
|
||||
\details Description of the parameter peakHeight is: <BLOCKQUOTE>\copydoc peakHeight </BLOCKQUOTE>
|
||||
\see peakHeight for more information */
|
||||
inline virtual double get_peakHeight() const
|
||||
{
|
||||
return this->peakHeight;
|
||||
}
|
||||
/*! \brief sets the property yPeaks to the specified \a __value.
|
||||
\details Description of the parameter yPeaks is: <BLOCKQUOTE>\copybrief yPeaks </BLOCKQUOTE>
|
||||
\details Description of the parameter yPeaks is: <BLOCKQUOTE>\copydoc yPeaks </BLOCKQUOTE>
|
||||
\see yPeaks for more information */
|
||||
inline virtual void set_yPeaks(bool __value)
|
||||
{
|
||||
this->yPeaks = __value;
|
||||
}
|
||||
/*! \brief returns the property yPeaks.
|
||||
\details Description of the parameter yPeaks is: <BLOCKQUOTE>\copybrief yPeaks </BLOCKQUOTE>
|
||||
\details Description of the parameter yPeaks is: <BLOCKQUOTE>\copydoc yPeaks </BLOCKQUOTE>
|
||||
\see yPeaks for more information */
|
||||
inline virtual bool get_yPeaks() const
|
||||
{
|
||||
return this->yPeaks;
|
||||
}
|
||||
/*! \brief sets the property drawBaseline to the specified \a __value.
|
||||
\details Description of the parameter drawBaseline is: <BLOCKQUOTE>\copybrief drawBaseline </BLOCKQUOTE>
|
||||
\details Description of the parameter drawBaseline is: <BLOCKQUOTE>\copydoc drawBaseline </BLOCKQUOTE>
|
||||
\see drawBaseline for more information */
|
||||
inline virtual void set_drawBaseline(bool __value)
|
||||
{
|
||||
this->drawBaseline = __value;
|
||||
}
|
||||
/*! \brief returns the property drawBaseline.
|
||||
\details Description of the parameter drawBaseline is: <BLOCKQUOTE>\copybrief drawBaseline </BLOCKQUOTE>
|
||||
\details Description of the parameter drawBaseline is: <BLOCKQUOTE>\copydoc drawBaseline </BLOCKQUOTE>
|
||||
\see drawBaseline for more information */
|
||||
inline virtual bool get_drawBaseline() const
|
||||
{
|
||||
|
@ -83,28 +83,28 @@ class LIB_EXPORT JKQTPSingleColumnSymbolsGraph: public JKQTPSingleColumnGraph {
|
||||
virtual void drawKeyMarker(JKQTPEnhancedPainter& painter, QRectF& rect) override;
|
||||
|
||||
/*! \brief sets the property position to the specified \a __value.
|
||||
\details Description of the parameter position is: <BLOCKQUOTE>\copybrief position </BLOCKQUOTE>
|
||||
\details Description of the parameter position is: <BLOCKQUOTE>\copydoc position </BLOCKQUOTE>
|
||||
\see position for more information */
|
||||
inline virtual void set_position(double __value)
|
||||
{
|
||||
this->position = __value;
|
||||
}
|
||||
/*! \brief returns the property position.
|
||||
\details Description of the parameter position is: <BLOCKQUOTE>\copybrief position </BLOCKQUOTE>
|
||||
\details Description of the parameter position is: <BLOCKQUOTE>\copydoc position </BLOCKQUOTE>
|
||||
\see position for more information */
|
||||
inline virtual double get_position() const
|
||||
{
|
||||
return this->position;
|
||||
}
|
||||
/*! \brief sets the property width to the specified \a __value.
|
||||
\details Description of the parameter width is: <BLOCKQUOTE>\copybrief width </BLOCKQUOTE>
|
||||
\details Description of the parameter width is: <BLOCKQUOTE>\copydoc width </BLOCKQUOTE>
|
||||
\see width for more information */
|
||||
inline virtual void set_width(double __value)
|
||||
{
|
||||
this->width = __value;
|
||||
}
|
||||
/*! \brief returns the property width.
|
||||
\details Description of the parameter width is: <BLOCKQUOTE>\copybrief width </BLOCKQUOTE>
|
||||
\details Description of the parameter width is: <BLOCKQUOTE>\copydoc width </BLOCKQUOTE>
|
||||
\see width for more information */
|
||||
inline virtual double get_width() const
|
||||
{
|
||||
@ -112,14 +112,14 @@ class LIB_EXPORT JKQTPSingleColumnSymbolsGraph: public JKQTPSingleColumnGraph {
|
||||
}
|
||||
|
||||
/*! \brief sets the property dataDirection to the specified \a __value.
|
||||
\details Description of the parameter dataDirection is: <BLOCKQUOTE>\copybrief dataDirection </BLOCKQUOTE>
|
||||
\details Description of the parameter dataDirection is: <BLOCKQUOTE>\copydoc dataDirection </BLOCKQUOTE>
|
||||
\see dataDirection for more information */
|
||||
inline virtual void set_dataDirection(DataDirection __value)
|
||||
{
|
||||
this->dataDirection = __value;
|
||||
}
|
||||
/*! \brief returns the property dataDirection.
|
||||
\details Description of the parameter dataDirection is: <BLOCKQUOTE>\copybrief dataDirection </BLOCKQUOTE>
|
||||
\details Description of the parameter dataDirection is: <BLOCKQUOTE>\copydoc dataDirection </BLOCKQUOTE>
|
||||
\see dataDirection for more information */
|
||||
inline virtual DataDirection get_dataDirection() const
|
||||
{
|
||||
@ -127,14 +127,14 @@ class LIB_EXPORT JKQTPSingleColumnSymbolsGraph: public JKQTPSingleColumnGraph {
|
||||
}
|
||||
|
||||
/*! \brief sets the property positionScatterStyle to the specified \a __value.
|
||||
\details Description of the parameter positionScatterStyle is: <BLOCKQUOTE>\copybrief positionScatterStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter positionScatterStyle is: <BLOCKQUOTE>\copydoc positionScatterStyle </BLOCKQUOTE>
|
||||
\see positionScatterStyle for more information */
|
||||
inline virtual void set_positionScatterStyle(ScatterStyle __value)
|
||||
{
|
||||
this->positionScatterStyle = __value;
|
||||
}
|
||||
/*! \brief returns the property positionScatterStyle.
|
||||
\details Description of the parameter positionScatterStyle is: <BLOCKQUOTE>\copybrief positionScatterStyle </BLOCKQUOTE>
|
||||
\details Description of the parameter positionScatterStyle is: <BLOCKQUOTE>\copydoc positionScatterStyle </BLOCKQUOTE>
|
||||
\see positionScatterStyle for more information */
|
||||
inline virtual ScatterStyle get_positionScatterStyle() const
|
||||
{
|
||||
@ -144,56 +144,56 @@ class LIB_EXPORT JKQTPSingleColumnSymbolsGraph: public JKQTPSingleColumnGraph {
|
||||
|
||||
|
||||
/*! \brief sets the property fillColor to the specified \a __value.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual void set_fillColor(const QColor & __value)
|
||||
{
|
||||
this->fillColor = __value;
|
||||
}
|
||||
/*! \brief returns the property fillColor.
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copybrief fillColor </BLOCKQUOTE>
|
||||
\details Description of the parameter fillColor is: <BLOCKQUOTE>\copydoc fillColor </BLOCKQUOTE>
|
||||
\see fillColor for more information */
|
||||
inline virtual QColor get_fillColor() const
|
||||
{
|
||||
return this->fillColor;
|
||||
}
|
||||
/*! \brief sets the property symbol to the specified \a __value.
|
||||
\details Description of the parameter symbol is: <BLOCKQUOTE>\copybrief symbol </BLOCKQUOTE>
|
||||
\details Description of the parameter symbol is: <BLOCKQUOTE>\copydoc symbol </BLOCKQUOTE>
|
||||
\see symbol for more information */
|
||||
inline virtual void set_symbol(const JKQTPGraphSymbols & __value)
|
||||
{
|
||||
this->symbol = __value;
|
||||
}
|
||||
/*! \brief returns the property symbol.
|
||||
\details Description of the parameter symbol is: <BLOCKQUOTE>\copybrief symbol </BLOCKQUOTE>
|
||||
\details Description of the parameter symbol is: <BLOCKQUOTE>\copydoc symbol </BLOCKQUOTE>
|
||||
\see symbol for more information */
|
||||
inline virtual JKQTPGraphSymbols get_symbol() const
|
||||
{
|
||||
return this->symbol;
|
||||
}
|
||||
/*! \brief sets the property symbolWidth to the specified \a __value.
|
||||
\details Description of the parameter symbolWidth is: <BLOCKQUOTE>\copybrief symbolWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter symbolWidth is: <BLOCKQUOTE>\copydoc symbolWidth </BLOCKQUOTE>
|
||||
\see symbolWidth for more information */
|
||||
inline virtual void set_symbolWidth(double __value)
|
||||
{
|
||||
this->symbolWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property symbolWidth.
|
||||
\details Description of the parameter symbolWidth is: <BLOCKQUOTE>\copybrief symbolWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter symbolWidth is: <BLOCKQUOTE>\copydoc symbolWidth </BLOCKQUOTE>
|
||||
\see symbolWidth for more information */
|
||||
inline virtual double get_symbolWidth() const
|
||||
{
|
||||
return this->symbolWidth;
|
||||
}
|
||||
/*! \brief sets the property symbolSize to the specified \a __value.
|
||||
\details Description of the parameter symbolSize is: <BLOCKQUOTE>\copybrief symbolSize </BLOCKQUOTE>
|
||||
\details Description of the parameter symbolSize is: <BLOCKQUOTE>\copydoc symbolSize </BLOCKQUOTE>
|
||||
\see symbolSize for more information */
|
||||
inline virtual void set_symbolSize(double __value)
|
||||
{
|
||||
this->symbolSize = __value;
|
||||
}
|
||||
/*! \brief returns the property symbolSize.
|
||||
\details Description of the parameter symbolSize is: <BLOCKQUOTE>\copybrief symbolSize </BLOCKQUOTE>
|
||||
\details Description of the parameter symbolSize is: <BLOCKQUOTE>\copydoc symbolSize </BLOCKQUOTE>
|
||||
\see symbolSize for more information */
|
||||
inline virtual double get_symbolSize() const
|
||||
{
|
||||
|
@ -53,6 +53,13 @@ JKQTPlotter::JKQTPlotter(bool datastore_internal, QWidget* parent, JKQTPDatastor
|
||||
init(datastore_internal, parent, datast);
|
||||
}
|
||||
|
||||
JKQTPlotter::JKQTPlotter(JKQTPDatastore *datast, QWidget *parent):
|
||||
QWidget(parent, Qt::Widget)
|
||||
{
|
||||
initJKQTPlotterResources();
|
||||
init(false, parent, datast);
|
||||
}
|
||||
|
||||
JKQTPlotter::JKQTPlotter(QWidget *parent):
|
||||
QWidget(parent, Qt::Widget)
|
||||
{
|
||||
@ -97,8 +104,6 @@ void JKQTPlotter::init(bool datastore_internal, QWidget* parent, JKQTPDatastore*
|
||||
def_mousePositionTemplate=QString("(%1; %2)"); mousePositionTemplate=def_mousePositionTemplate;
|
||||
|
||||
displayMousePosition=true;
|
||||
displayCustomMousePosition=false;
|
||||
customMousePositiontext="";
|
||||
displayToolbar=true;
|
||||
toolbarAlwaysOn=false;
|
||||
mouseActionMode=JKQTPlotter::ZoomRectangle;
|
||||
@ -153,6 +158,92 @@ void JKQTPlotter::updateToolbarActions()
|
||||
|
||||
}
|
||||
|
||||
void JKQTPlotter::set_toolbarIconSize(int value) {
|
||||
toolbarIconSize=value;
|
||||
QSize s=QSize(toolbarIconSize, toolbarIconSize);
|
||||
toolbar->setIconSize(s);
|
||||
}
|
||||
|
||||
int JKQTPlotter::get_toolbarIconSize() {
|
||||
return toolbarIconSize;
|
||||
}
|
||||
|
||||
void JKQTPlotter::set_displayToolbar(bool __value)
|
||||
{
|
||||
if (this->displayToolbar != __value) {
|
||||
this->displayToolbar = __value;
|
||||
updateToolbar();
|
||||
}
|
||||
}
|
||||
|
||||
bool JKQTPlotter::get_displayToolbar() const
|
||||
{
|
||||
return this->displayToolbar;
|
||||
}
|
||||
|
||||
void JKQTPlotter::set_toolbarAlwaysOn(bool __value)
|
||||
{
|
||||
if (this->toolbarAlwaysOn != __value) {
|
||||
this->toolbarAlwaysOn = __value;
|
||||
updateToolbar();
|
||||
}
|
||||
}
|
||||
|
||||
bool JKQTPlotter::get_toolbarAlwaysOn() const
|
||||
{
|
||||
return this->toolbarAlwaysOn;
|
||||
}
|
||||
|
||||
void JKQTPlotter::set_displayMousePosition(bool __value)
|
||||
{
|
||||
this->displayMousePosition = __value;
|
||||
}
|
||||
|
||||
bool JKQTPlotter::get_displayMousePosition() const
|
||||
{
|
||||
return this->displayMousePosition;
|
||||
}
|
||||
|
||||
|
||||
void JKQTPlotter::set_userActionColor(const QColor &__value)
|
||||
{
|
||||
if (this->userActionColor != __value) {
|
||||
this->userActionColor = __value;
|
||||
update();
|
||||
}
|
||||
}
|
||||
|
||||
QColor JKQTPlotter::get_userActionColor() const
|
||||
{
|
||||
return this->userActionColor;
|
||||
}
|
||||
|
||||
void JKQTPlotter::set_userActionCompositionMode(const QPainter::CompositionMode &__value)
|
||||
{
|
||||
if (this->userActionCompositionMode != __value) {
|
||||
this->userActionCompositionMode = __value;
|
||||
update();
|
||||
}
|
||||
}
|
||||
|
||||
QPainter::CompositionMode JKQTPlotter::get_userActionCompositionMode() const
|
||||
{
|
||||
return this->userActionCompositionMode;
|
||||
}
|
||||
|
||||
void JKQTPlotter::set_mouseActionMode(const JKQTPlotter::MouseActionModes &__value)
|
||||
{
|
||||
if (this->mouseActionMode != __value) {
|
||||
this->mouseActionMode = __value;
|
||||
updateCursor();
|
||||
}
|
||||
}
|
||||
|
||||
JKQTPlotter::MouseActionModes JKQTPlotter::get_mouseActionMode() const
|
||||
{
|
||||
return this->mouseActionMode;
|
||||
}
|
||||
|
||||
void JKQTPlotter::loadSettings(QSettings& settings, QString group) {
|
||||
plotter->loadSettings(settings, group);
|
||||
|
||||
@ -667,11 +758,7 @@ void JKQTPlotter::paintEvent(QPaintEvent *event){
|
||||
p->drawRect(geometry());
|
||||
p->restore();
|
||||
if (displayMousePosition ) {
|
||||
if (displayCustomMousePosition) {
|
||||
p->drawText(plotter->get_iplotBorderLeft(), getPlotYOffset()-1, customMousePositiontext);
|
||||
} else {
|
||||
p->drawText(plotter->get_iplotBorderLeft(), getPlotYOffset()-1, mousePositionTemplate.arg(mousePosX).arg(mousePosY));
|
||||
}
|
||||
p->drawText(plotter->get_iplotBorderLeft(), getPlotYOffset()-1, mousePositionTemplate.arg(mousePosX).arg(mousePosY));
|
||||
}
|
||||
|
||||
int plotImageWidth=width();
|
||||
@ -789,6 +876,10 @@ void JKQTPlotter::resetMasterSynchronization() {
|
||||
update_plot();
|
||||
}
|
||||
|
||||
bool JKQTPlotter::get_doDrawing() const {
|
||||
return doDrawing;
|
||||
}
|
||||
|
||||
void JKQTPlotter::pzoomChangedLocally(double newxmin, double newxmax, double newymin, double newymax, JKQTBasePlotter* /*sender*/) {
|
||||
emit zoomChangedLocally(newxmin, newxmax, newymin, newymax, this);
|
||||
minSize=QSize(plotter->get_iplotBorderLeft()+plotter->get_iplotBorderRight()+10, plotter->get_iplotBorderTop()+plotter->get_iplotBorderBottom()+10);
|
||||
@ -811,6 +902,30 @@ void JKQTPlotter::set_zoomByMouseRectangle(bool zomByrectangle) {
|
||||
else mouseActionMode=JKQTPlotter::NoMouseAction;
|
||||
}
|
||||
|
||||
void JKQTPlotter::set_rightMouseButtonAction(const JKQTPlotter::RightMouseButtonAction &__value)
|
||||
{
|
||||
this->rightMouseButtonAction = __value;
|
||||
}
|
||||
|
||||
JKQTPlotter::RightMouseButtonAction JKQTPlotter::get_rightMouseButtonAction() const
|
||||
{
|
||||
return this->rightMouseButtonAction;
|
||||
}
|
||||
|
||||
void JKQTPlotter::set_leftDoubleClickAction(const JKQTPlotter::LeftDoubleClickAction &__value)
|
||||
{
|
||||
this->leftDoubleClickAction = __value;
|
||||
}
|
||||
|
||||
JKQTPlotter::LeftDoubleClickAction JKQTPlotter::get_leftDoubleClickAction() const
|
||||
{
|
||||
return this->leftDoubleClickAction;
|
||||
}
|
||||
|
||||
QMenu *JKQTPlotter::get_menuSpecialContextMenu() const {
|
||||
return this->menuSpecialContextMenu;
|
||||
}
|
||||
|
||||
void JKQTPlotter::set_menuSpecialContextMenu(QMenu *menu)
|
||||
{
|
||||
menuSpecialContextMenu=menu;
|
||||
@ -820,6 +935,32 @@ void JKQTPlotter::set_menuSpecialContextMenu(QMenu *menu)
|
||||
}
|
||||
}
|
||||
|
||||
void JKQTPlotter::set_zoomByMouseWheel(bool __value)
|
||||
{
|
||||
this->zoomByMouseWheel = __value;
|
||||
}
|
||||
|
||||
bool JKQTPlotter::get_zoomByMouseWheel() const
|
||||
{
|
||||
return this->zoomByMouseWheel;
|
||||
}
|
||||
|
||||
double JKQTPlotter::get_mouseContextX() const {
|
||||
return this->mouseContextX;
|
||||
}
|
||||
|
||||
double JKQTPlotter::get_mouseContextY() const {
|
||||
return this->mouseContextY;
|
||||
}
|
||||
|
||||
int JKQTPlotter::get_mouseLastClickX() const {
|
||||
return this->mouseLastClickX;
|
||||
}
|
||||
|
||||
int JKQTPlotter::get_mouseLastClickY() const {
|
||||
return this->mouseLastClickY;
|
||||
}
|
||||
|
||||
void JKQTPlotter::setMagnification(double m)
|
||||
{
|
||||
magnification=m;
|
||||
@ -857,11 +998,6 @@ void JKQTPlotter::populateToolbar(QToolBar *toolbar) const
|
||||
|
||||
}
|
||||
|
||||
void JKQTPlotter::setMousePositionLabel(const QString &text)
|
||||
{
|
||||
customMousePositiontext=text;
|
||||
if (displayCustomMousePosition) update();
|
||||
}
|
||||
|
||||
void JKQTPlotter::openContextMenu()
|
||||
{
|
||||
|
@ -65,40 +65,135 @@ LIB_EXPORT void initJKQTPlotterResources();
|
||||
* This class is an implementation of JKQTPlotterBase. It uses the tools from this base class
|
||||
* to display function graphs that use the internal datastore as data source. You can add graphs
|
||||
* to this component which are described by a JKQTPPlotElement struct.
|
||||
*
|
||||
* \section JKQTPLOTTER_USERINTERACTION User-Interactions
|
||||
*
|
||||
* JKQTPlotter offers a lot of user-interaction features out of the box. These are detailed below.
|
||||
*
|
||||
* \subsection JKQTPLOTTER_CONTEXTMENU Conext Menu of JKQTPlotter
|
||||
*
|
||||
* The class JKQTPlotter has a context emnu that already offers a lot of functionality.
|
||||
*
|
||||
* \image html jkqtplotter_defaultcontextmenu.png
|
||||
*
|
||||
* It allows to:
|
||||
* - copy or save the data from the internal JKQTPDatastore
|
||||
* - copy or save the plot to an image file (PNG, PDF, ...), includes a softisticated export-preview dialog:
|
||||
*
|
||||
* \image html jkqtplotter_exportpreviewdialog.png
|
||||
*
|
||||
* - print the plot (includes a softisticated print-preview dialog):
|
||||
*
|
||||
* \image html jkqtplotter_printpreview.png
|
||||
* \image html jkqtplotter_printpreview_relsize_mullinewidth_mulfonts.png
|
||||
*
|
||||
* - open a dialog with a table of the plot data:
|
||||
*
|
||||
* \image html jkqtplotter_datatabledialog.png
|
||||
*
|
||||
* - zoom into/out of the plot and determine an auto-zoom, which shows all of the plot data
|
||||
* - switch the visibility of the different graphs in the plot
|
||||
* .
|
||||
*
|
||||
* \subsection JKQTPLOTTER_TOOLBAR Toolbar of JKQTPlotter
|
||||
*
|
||||
* In addition to the context-menu, a JKQtPlotter also also provides a toolbar at its top that offers
|
||||
* most of the functionality of the context menu. Usually this toolbar is enabled (see displayToolbar)
|
||||
* and is in a mode where it is hidden, until the mouse moves over an area at the top of the plot (see toolbarAlwaysOn):
|
||||
*
|
||||
* \image html jkqtplotter_toolbar_hidden.png "Hidden Toolbar"
|
||||
* \image html jkqtplotter_toolbar_shown.png "Shown Toolbar"
|
||||
*
|
||||
* If toolbarAlwaysOn is set to \c true (set_toolbarAlwaysOn() ), the toolbar is always displayed:
|
||||
*
|
||||
* \image html jkqtplotter_toolbar_alwayson.png
|
||||
*
|
||||
* \see displayToolbar, toolbarAlwaysOn, \ref JKQTPlotterUserInteractio
|
||||
*
|
||||
*
|
||||
*
|
||||
* \subsection JKQTPLOTTER_ACTIONS QActions from a JKQTPlotter
|
||||
* Often you want to allow the suer to operate a plot from a user-defined QToolBar or a QMenu/QMenuBar in your
|
||||
* application (e.g. provide zooming commands ...). there are generally two ways to achieve this:
|
||||
* # Simply connect home-brewn QAction instances to the slots provided by JKQTPlotter and JKQTBasePlotter.
|
||||
* This also allows you to connect different plot properties to edit widgets in your forms.
|
||||
* # For several functions (especially those also present in JKQTPlotter's context-emun, you can also find
|
||||
* readily available QAction instances. these are available from JKQTBasePlotter (e.g. by JKQTBasePlotter::get_actPrint() ...).
|
||||
* From JKQTPlotter you therefor have to use: <code>get_plotter()->get_actPrint()</code>
|
||||
* .
|
||||
* \see \subpage JKQTPlotterUserInteraction
|
||||
*
|
||||
*
|
||||
*
|
||||
* \subsection JKQTPLOTTER_USERMOUSEINTERACTION User Mouse-Interaction in JKQTPlotter
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* \section JKQTPLOTTER_USEQTCREATOR How to use JKQTPlotter in the Qt Form Designer
|
||||
*
|
||||
* As JKQTPlotter is a standard Qt widget, you can also use it in Qt UI-files designed with the Qt From Designer (e.g. from within QTCreator).
|
||||
* For this to work you have to use the "Promote QWidget"-feature of the form designer. The steps you need to take are detailed below:
|
||||
* # add a new UI-file to your project and open it in the Form Editor. Then right-click the form and select `Promote Widgets ...`:<br>
|
||||
* \image html uidesigner_step1.png
|
||||
*
|
||||
* # In the dialog that opens, you have to define `JKQTPlotter` as a promotion to `QWidget` as shown below. Finally store the settings by clicking `Add` and closing the dialog with `Close`.<br>
|
||||
* \image html uidesigner_step2.png
|
||||
*
|
||||
* # Now you can add a `QWidget`from the side-bar to the form and then promote it to `JKQTPlotter`, by selecting and right-clicking the `QWidget` and then selecting `Promote To | JKQTPlotter`:<br>
|
||||
* \image html uidesigner_step3.png
|
||||
* .
|
||||
*
|
||||
* \see \subpage JKQTPlotterQtCreator
|
||||
*
|
||||
*/
|
||||
class LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
Q_OBJECT
|
||||
public:
|
||||
/** \brief availble user-action mode this JKQtPlotter use when mouse events occur.
|
||||
* This allows you to e.g. draw rectangles or lines over the plot and receive a signal, when the drawing finishes */
|
||||
enum MouseActionModes {
|
||||
ZoomRectangle,
|
||||
RectangleEvents,
|
||||
/*PolygonEvents,*/
|
||||
CircleEvents,
|
||||
EllipseEvents,
|
||||
LineEvents,
|
||||
ScribbleEvents,
|
||||
NoMouseAction,
|
||||
ClickEvents
|
||||
ZoomRectangle, /*!< \brief draw a rectangle and when finish zoom to that rectangle */
|
||||
RectangleEvents, /*!< \brief draw a rectangle and when finished execute the signal userRectangleFinished() */
|
||||
CircleEvents, /*!< \brief draw a circle and when finished execute the signal userCircleFinished() */
|
||||
EllipseEvents, /*!< \brief draw an ellipse and when finished execute the signal userEllipseFinished() */
|
||||
LineEvents, /*!< \brief draw a line and when finished execute the signal userLineFinished() */
|
||||
ScribbleEvents, /*!< \brief let the user scribble on the plot (left mouse button is kept pressed) and call userScribbleClick() for each new position */
|
||||
NoMouseAction, /*!< \brief no action is to be performed */
|
||||
ClickEvents /*!< \brief sinply call userClickFinished() for every single-click of the mouse button */
|
||||
};
|
||||
|
||||
/** \brief options of how to react to a right mouse button click */
|
||||
enum RightMouseButtonAction {
|
||||
RightMouseButtonNone=0,
|
||||
RightMouseButtonZoom=1,
|
||||
RightMouseButtonContextMenu=2
|
||||
RightMouseButtonNone=0, /*!< \brief do not perform any action on a right mouse button click */
|
||||
RightMouseButtonZoom=1, /*!< \brief use right mouse button for zoomin out */
|
||||
RightMouseButtonContextMenu=2 /*!< \brief show the context menu when clicking the right mouse button */
|
||||
};
|
||||
|
||||
/** \brief options of how to react to a left mouse button double-click (single-click events are described by MouseActionModes) */
|
||||
enum LeftDoubleClickAction {
|
||||
LeftDoubleClickDefault,
|
||||
LeftDoubleClickContextMenu,
|
||||
LeftDoubleClickSpecialContextMenu,
|
||||
LeftDoubleClickDefault, /*!< \brief */
|
||||
LeftDoubleClickContextMenu, /*!< \brief open the context menu when the left mouse button is double-clicked */
|
||||
LeftDoubleClickSpecialContextMenu, /*!< \brief open the special context menu when the left mouse button is double-clicked */
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
/** \brief class constructor
|
||||
*
|
||||
* If \a datastore_internal \c ==false, you can supply an external JKQTPDatastore with the parameter \a datast
|
||||
*/
|
||||
explicit JKQTPlotter(bool datastore_internal, QWidget* parent=nullptr, JKQTPDatastore* datast=nullptr);
|
||||
/** \brief class constructor for a JKQTPlotter using an external JKQTPDatastore \a dataset
|
||||
*/
|
||||
explicit JKQTPlotter(JKQTPDatastore* datast, QWidget* parent=nullptr);
|
||||
/** \brief class constructor
|
||||
*
|
||||
* generated a new internal JKQTPDatastore
|
||||
*/
|
||||
explicit JKQTPlotter(QWidget* parent=nullptr);
|
||||
|
||||
/** \brief class destructor */
|
||||
@ -109,135 +204,43 @@ class LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
|
||||
|
||||
/** \brief set the width/height of the icons in the toolbar in pt */
|
||||
inline void set_toolbarIconSize(int value) {
|
||||
toolbarIconSize=value;
|
||||
QSize s=QSize(toolbarIconSize, toolbarIconSize);
|
||||
toolbar->setIconSize(s);
|
||||
}
|
||||
void set_toolbarIconSize(int value);
|
||||
|
||||
/** \brief get the width/height of the icons in the toolbar in pt */
|
||||
inline int get_toolbarIconSize() {
|
||||
return toolbarIconSize;
|
||||
}
|
||||
int get_toolbarIconSize();
|
||||
|
||||
/** \brief returns the class internally used for plotting */
|
||||
JKQTBasePlotter* get_plotter() const { return plotter; }
|
||||
/** \brief returns the class internally used for plotting */
|
||||
const JKQTBasePlotter* get_constplotter() const { return const_cast<const JKQTBasePlotter*>(plotter); }
|
||||
|
||||
/*! \brief sets the property displayToolbar to the specified \a __value.
|
||||
\details Description of the parameter displayToolbar is: <BLOCKQUOTE>\copybrief displayToolbar </BLOCKQUOTE>
|
||||
/*! \brief returns the property displayToolbar.
|
||||
\details Description of the parameter displayToolbar is: <BLOCKQUOTE>\copydoc displayToolbar </BLOCKQUOTE>
|
||||
\see displayToolbar for more information */
|
||||
inline virtual void set_displayToolbar(bool __value)
|
||||
{
|
||||
if (this->displayToolbar != __value) {
|
||||
this->displayToolbar = __value;
|
||||
updateToolbar();
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property displayToolbar.
|
||||
\details Description of the parameter displayToolbar is: <BLOCKQUOTE>\copybrief displayToolbar </BLOCKQUOTE>
|
||||
\see displayToolbar for more information */
|
||||
inline virtual bool get_displayToolbar() const
|
||||
{
|
||||
return this->displayToolbar;
|
||||
}
|
||||
/*! \brief sets the property toolbarAlwaysOn to the specified \a __value.
|
||||
\details Description of the parameter toolbarAlwaysOn is: <BLOCKQUOTE>\copybrief toolbarAlwaysOn </BLOCKQUOTE>
|
||||
virtual bool get_displayToolbar() const;
|
||||
/*! \brief returns the property toolbarAlwaysOn.
|
||||
\details Description of the parameter toolbarAlwaysOn is: <BLOCKQUOTE>\copydoc toolbarAlwaysOn </BLOCKQUOTE>
|
||||
\see toolbarAlwaysOn for more information */
|
||||
inline virtual void set_toolbarAlwaysOn(bool __value)
|
||||
{
|
||||
if (this->toolbarAlwaysOn != __value) {
|
||||
this->toolbarAlwaysOn = __value;
|
||||
updateToolbar();
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property toolbarAlwaysOn.
|
||||
\details Description of the parameter toolbarAlwaysOn is: <BLOCKQUOTE>\copybrief toolbarAlwaysOn </BLOCKQUOTE>
|
||||
\see toolbarAlwaysOn for more information */
|
||||
inline virtual bool get_toolbarAlwaysOn() const
|
||||
{
|
||||
return this->toolbarAlwaysOn;
|
||||
}
|
||||
/*! \brief sets the property displayMousePosition to the specified \a __value.
|
||||
\details Description of the parameter displayMousePosition is: <BLOCKQUOTE>\copybrief displayMousePosition </BLOCKQUOTE>
|
||||
virtual bool get_toolbarAlwaysOn() const;
|
||||
/*! \brief returns the property displayMousePosition.
|
||||
\details Description of the parameter displayMousePosition is: <BLOCKQUOTE>\copydoc displayMousePosition </BLOCKQUOTE>
|
||||
\see displayMousePosition for more information */
|
||||
inline virtual void set_displayMousePosition(bool __value)
|
||||
{
|
||||
this->displayMousePosition = __value;
|
||||
}
|
||||
/*! \brief returns the property displayMousePosition.
|
||||
\details Description of the parameter displayMousePosition is: <BLOCKQUOTE>\copybrief displayMousePosition </BLOCKQUOTE>
|
||||
\see displayMousePosition for more information */
|
||||
inline virtual bool get_displayMousePosition() const
|
||||
{
|
||||
return this->displayMousePosition;
|
||||
}
|
||||
/*! \brief sets the property displayCustomMousePosition to the specified \a __value.
|
||||
\details Description of the parameter displayCustomMousePosition is: <BLOCKQUOTE>\copybrief displayCustomMousePosition </BLOCKQUOTE>
|
||||
\see displayCustomMousePosition for more information */
|
||||
inline virtual void set_displayCustomMousePosition(bool __value)
|
||||
{
|
||||
this->displayCustomMousePosition = __value;
|
||||
}
|
||||
/*! \brief returns the property displayCustomMousePosition.
|
||||
\details Description of the parameter displayCustomMousePosition is: <BLOCKQUOTE>\copybrief displayCustomMousePosition </BLOCKQUOTE>
|
||||
\see displayCustomMousePosition for more information */
|
||||
inline virtual bool get_displayCustomMousePosition() const
|
||||
{
|
||||
return this->displayCustomMousePosition;
|
||||
}
|
||||
/*! \brief sets the property userActionColor to the specified \a __value.
|
||||
\details Description of the parameter userActionColor is: <BLOCKQUOTE>\copybrief userActionColor </BLOCKQUOTE>
|
||||
virtual bool get_displayMousePosition() const;
|
||||
/*! \brief returns the property userActionColor.
|
||||
\details Description of the parameter userActionColor is: <BLOCKQUOTE>\copydoc userActionColor </BLOCKQUOTE>
|
||||
\see userActionColor for more information */
|
||||
inline virtual void set_userActionColor(const QColor & __value)
|
||||
{
|
||||
if (this->userActionColor != __value) {
|
||||
this->userActionColor = __value;
|
||||
update();
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property userActionColor.
|
||||
\details Description of the parameter userActionColor is: <BLOCKQUOTE>\copybrief userActionColor </BLOCKQUOTE>
|
||||
\see userActionColor for more information */
|
||||
inline virtual QColor get_userActionColor() const
|
||||
{
|
||||
return this->userActionColor;
|
||||
}
|
||||
/*! \brief sets the property userActionCompositionMode to the specified \a __value.
|
||||
\details Description of the parameter userActionCompositionMode is: <BLOCKQUOTE>\copybrief userActionCompositionMode </BLOCKQUOTE>
|
||||
\see userActionCompositionMode for more information */
|
||||
inline virtual void set_userActionCompositionMode(const QPainter::CompositionMode & __value)
|
||||
{
|
||||
if (this->userActionCompositionMode != __value) {
|
||||
this->userActionCompositionMode = __value;
|
||||
update();
|
||||
}
|
||||
}
|
||||
virtual QColor get_userActionColor() const;
|
||||
|
||||
/*! \brief returns the property userActionCompositionMode.
|
||||
\details Description of the parameter userActionCompositionMode is: <BLOCKQUOTE>\copybrief userActionCompositionMode </BLOCKQUOTE>
|
||||
\details Description of the parameter userActionCompositionMode is: <BLOCKQUOTE>\copydoc userActionCompositionMode </BLOCKQUOTE>
|
||||
\see userActionCompositionMode for more information */
|
||||
inline virtual QPainter::CompositionMode get_userActionCompositionMode() const
|
||||
{
|
||||
return this->userActionCompositionMode;
|
||||
}
|
||||
/*! \brief sets the property mouseActionMode to the specified \a __value.
|
||||
\details Description of the parameter mouseActionMode is: <BLOCKQUOTE>\copybrief mouseActionMode </BLOCKQUOTE>
|
||||
virtual QPainter::CompositionMode get_userActionCompositionMode() const;
|
||||
|
||||
/*! \brief returns the current mouseActionMode.
|
||||
\details Description of the parameter mouseActionMode is: <BLOCKQUOTE> specifies the user-action mode this JKQtPlotter use when mouse events occur.
|
||||
* This allows you to e.g. draw rectangles or lines over the plot and receive a signal, when the drawing finishes </BLOCKQUOTE>
|
||||
\see mouseActionMode for more information */
|
||||
inline virtual void set_mouseActionMode(const MouseActionModes & __value)
|
||||
{
|
||||
if (this->mouseActionMode != __value) {
|
||||
this->mouseActionMode = __value;
|
||||
updateCursor();
|
||||
}
|
||||
}
|
||||
/*! \brief returns the property mouseActionMode.
|
||||
\details Description of the parameter mouseActionMode is: <BLOCKQUOTE>\copybrief mouseActionMode </BLOCKQUOTE>
|
||||
\see mouseActionMode for more information */
|
||||
inline virtual MouseActionModes get_mouseActionMode() const
|
||||
{
|
||||
return this->mouseActionMode;
|
||||
}
|
||||
virtual MouseActionModes get_mouseActionMode() const;
|
||||
|
||||
/** \brief loads the plot properties from a QSettings object */
|
||||
virtual void loadSettings(QSettings& settings, QString group=QString("plots"));
|
||||
@ -303,90 +306,79 @@ class LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
/** \brief switch emitting of signals, such as zoomChangedLocally() ..., on (sig=true) or off (sig=false) */
|
||||
inline void set_emitSignals(bool sig) { plotter->set_emitSignals(sig); }
|
||||
/** \brief determine, whether emitting of signals, such as zoomChangedLocally() ..., is switched on or off */
|
||||
inline bool get_emitSignals() { return plotter->get_emitSignals(); }
|
||||
inline bool get_emitSignals() { return plotter; }
|
||||
|
||||
inline bool get_doDrawing() const { return doDrawing; }
|
||||
/** \brief returns, whether updating the plot is currently activated (e.g. you can deactivate this with set_doDrawing() while performing major updates on the plot)
|
||||
*
|
||||
* \see set_doDrawing()
|
||||
*/
|
||||
bool get_doDrawing() const;
|
||||
/** \brief sets whether updating the plot is currently activated (e.g. you can sett his to \c false while performing major updates on the plot)
|
||||
*
|
||||
* \see get_doDrawing();
|
||||
*/
|
||||
void set_doDrawing(bool enable);
|
||||
|
||||
/*! \brief returns the property rightMouseButtonAction.
|
||||
\details Description of the parameter rightMouseButtonAction is: <BLOCKQUOTE>\copydoc rightMouseButtonAction </BLOCKQUOTE>
|
||||
\see rightMouseButtonAction for more information */
|
||||
bool get_zoomByMouseRectangle() const;
|
||||
void set_zoomByMouseRectangle(bool zomByrectangle);
|
||||
|
||||
//GET_SET_MACRO(bool, zoomByDoubleAndRightMouseClick);
|
||||
/*! \brief sets the property rightMouseButtonAction to the specified \a __value.
|
||||
\details Description of the parameter rightMouseButtonAction is: <BLOCKQUOTE>\copybrief rightMouseButtonAction </BLOCKQUOTE>
|
||||
\details Description of the parameter rightMouseButtonAction is: <BLOCKQUOTE>\copydoc rightMouseButtonAction </BLOCKQUOTE>
|
||||
\see rightMouseButtonAction for more information */
|
||||
inline virtual void set_rightMouseButtonAction(const RightMouseButtonAction & __value)
|
||||
{
|
||||
this->rightMouseButtonAction = __value;
|
||||
}
|
||||
void set_rightMouseButtonAction(const RightMouseButtonAction & __value);
|
||||
/*! \brief returns the property rightMouseButtonAction.
|
||||
\details Description of the parameter rightMouseButtonAction is: <BLOCKQUOTE>\copybrief rightMouseButtonAction </BLOCKQUOTE>
|
||||
\details Description of the parameter rightMouseButtonAction is: <BLOCKQUOTE>\copydoc rightMouseButtonAction </BLOCKQUOTE>
|
||||
\see rightMouseButtonAction for more information */
|
||||
inline virtual RightMouseButtonAction get_rightMouseButtonAction() const
|
||||
{
|
||||
return this->rightMouseButtonAction;
|
||||
}
|
||||
virtual RightMouseButtonAction get_rightMouseButtonAction() const;
|
||||
/*! \brief sets the property leftDoubleClickAction to the specified \a __value.
|
||||
\details Description of the parameter leftDoubleClickAction is: <BLOCKQUOTE>\copybrief leftDoubleClickAction </BLOCKQUOTE>
|
||||
\details Description of the parameter leftDoubleClickAction is: <BLOCKQUOTE>\copydoc leftDoubleClickAction </BLOCKQUOTE>
|
||||
\see leftDoubleClickAction for more information */
|
||||
inline virtual void set_leftDoubleClickAction(const LeftDoubleClickAction & __value)
|
||||
{
|
||||
this->leftDoubleClickAction = __value;
|
||||
}
|
||||
void set_leftDoubleClickAction(const LeftDoubleClickAction & __value);
|
||||
/*! \brief returns the property leftDoubleClickAction.
|
||||
\details Description of the parameter leftDoubleClickAction is: <BLOCKQUOTE>\copybrief leftDoubleClickAction </BLOCKQUOTE>
|
||||
\details Description of the parameter leftDoubleClickAction is: <BLOCKQUOTE>\copydoc leftDoubleClickAction </BLOCKQUOTE>
|
||||
\see leftDoubleClickAction for more information */
|
||||
inline virtual LeftDoubleClickAction get_leftDoubleClickAction() const
|
||||
{
|
||||
return this->leftDoubleClickAction;
|
||||
}
|
||||
/*! \brief returns the property menuSpecialContextMenu. \details Description of the parameter menuSpecialContextMenu is: <BLOCKQUOTE>\copybrief menuSpecialContextMenu </BLOCKQUOTE>. \see menuSpecialContextMenu for more information */
|
||||
inline QMenu* get_menuSpecialContextMenu() const { return this->menuSpecialContextMenu; }
|
||||
virtual LeftDoubleClickAction get_leftDoubleClickAction() const;
|
||||
/*! \brief returns the property menuSpecialContextMenu. \details Description of the parameter menuSpecialContextMenu is: <BLOCKQUOTE>\copydoc menuSpecialContextMenu </BLOCKQUOTE>. \see menuSpecialContextMenu for more information */
|
||||
QMenu *get_menuSpecialContextMenu() const;
|
||||
|
||||
/*! \brief set the property menuSpecialContextMenu. \details Description of the parameter menuSpecialContextMenu is: <BLOCKQUOTE>\copydoc menuSpecialContextMenu </BLOCKQUOTE>. \see menuSpecialContextMenu for more information */
|
||||
void set_menuSpecialContextMenu(QMenu* menu);
|
||||
|
||||
/*! \brief sets the property zoomByMouseWheel to the specified \a __value.
|
||||
\details Description of the parameter zoomByMouseWheel is: <BLOCKQUOTE>\copybrief zoomByMouseWheel </BLOCKQUOTE>
|
||||
\details Description of the parameter zoomByMouseWheel is: <BLOCKQUOTE>\copydoc zoomByMouseWheel </BLOCKQUOTE>
|
||||
\see zoomByMouseWheel for more information */
|
||||
inline virtual void set_zoomByMouseWheel(bool __value)
|
||||
{
|
||||
this->zoomByMouseWheel = __value;
|
||||
}
|
||||
void set_zoomByMouseWheel(bool __value);
|
||||
/*! \brief returns the property zoomByMouseWheel.
|
||||
\details Description of the parameter zoomByMouseWheel is: <BLOCKQUOTE>\copybrief zoomByMouseWheel </BLOCKQUOTE>
|
||||
\details Description of the parameter zoomByMouseWheel is: <BLOCKQUOTE>\copydoc zoomByMouseWheel </BLOCKQUOTE>
|
||||
\see zoomByMouseWheel for more information */
|
||||
inline virtual bool get_zoomByMouseWheel() const
|
||||
{
|
||||
return this->zoomByMouseWheel;
|
||||
}
|
||||
virtual bool get_zoomByMouseWheel() const;
|
||||
|
||||
/** \brief returns the property mouseContextX.
|
||||
\details Description of the parameter mouseContextX is: <BLOCKQUOTE>\copybrief mouseContextX </BLOCKQUOTE>.
|
||||
\details Description of the parameter mouseContextX is: <BLOCKQUOTE>\copydoc mouseContextX </BLOCKQUOTE>.
|
||||
\see mouseContextX for more information */
|
||||
inline double get_mouseContextX() const {
|
||||
return this->mouseContextX;
|
||||
}
|
||||
double get_mouseContextX() const;
|
||||
/** \brief returns the property mouseContextY.
|
||||
\details Description of the parameter mouseContextY is: <BLOCKQUOTE>\copybrief mouseContextY </BLOCKQUOTE>.
|
||||
\details Description of the parameter mouseContextY is: <BLOCKQUOTE>\copydoc mouseContextY </BLOCKQUOTE>.
|
||||
\see mouseContextY for more information */
|
||||
inline double get_mouseContextY() const {
|
||||
return this->mouseContextY;
|
||||
}
|
||||
double get_mouseContextY() const;
|
||||
/** \brief returns the property mouseLastClickX.
|
||||
\details Description of the parameter mouseLastClickX is: <BLOCKQUOTE>\copybrief mouseLastClickX </BLOCKQUOTE>.
|
||||
\details Description of the parameter mouseLastClickX is: <BLOCKQUOTE>\copydoc mouseLastClickX </BLOCKQUOTE>.
|
||||
\see mouseLastClickX for more information */
|
||||
inline int get_mouseLastClickX() const {
|
||||
return this->mouseLastClickX;
|
||||
}
|
||||
int get_mouseLastClickX() const;
|
||||
/** \brief returns the property mouseLastClickY.
|
||||
\details Description of the parameter mouseLastClickY is: <BLOCKQUOTE>\copybrief mouseLastClickY </BLOCKQUOTE>.
|
||||
\details Description of the parameter mouseLastClickY is: <BLOCKQUOTE>\copydoc mouseLastClickY </BLOCKQUOTE>.
|
||||
\see mouseLastClickY for more information */
|
||||
inline int get_mouseLastClickY() const {
|
||||
return this->mouseLastClickY;
|
||||
}
|
||||
int get_mouseLastClickY() const;
|
||||
|
||||
/** \brief returns the coordinate axis object for the x-axis */
|
||||
inline JKQTPHorizontalAxis* get_xAxis() { return plotter->get_xAxis(); }
|
||||
/** \brief returns the coordinate axis object for the y-axis */
|
||||
inline JKQTPVerticalAxis* get_yAxis() { return plotter->get_yAxis(); }
|
||||
/** \brief returns the coordinate axis object for the x-axis as a const pointer */
|
||||
inline const JKQTPHorizontalAxis* get_xAxis() const { return plotter->get_xAxis(); }
|
||||
/** \brief returns the coordinate axis object for the y-axis as a const pointer */
|
||||
inline const JKQTPVerticalAxis* get_yAxis() const { return plotter->get_yAxis(); }
|
||||
|
||||
/** \brief returns description of i'th graph */
|
||||
@ -402,7 +394,7 @@ class LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
inline bool containsGraph(JKQTPPlotElement* gr) { return plotter->containsGraph(gr); }
|
||||
|
||||
/** \brief remove the given graph, if it is contained */
|
||||
inline void deleteGraph(JKQTPPlotElement* gr, bool deletegraph=true) { plotter->deleteGraph(gr, deletegraph); };
|
||||
inline void deleteGraph(JKQTPPlotElement* gr, bool deletegraph=true) { plotter->deleteGraph(gr, deletegraph); }
|
||||
|
||||
/** \brief remove all plots
|
||||
*
|
||||
@ -423,14 +415,6 @@ class LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
template <class TJKQTPGraphContainer>
|
||||
inline void addGraphs(const TJKQTPGraphContainer& gr) { plotter->addGraphs(gr); }
|
||||
|
||||
/** \brief sets minimum and maximum x-value to plot */
|
||||
inline void setX(double xminn, double xmaxx) { plotter->setX(xminn, xmaxx); }
|
||||
|
||||
/** \brief sets minimum and maximum y-value to plot */
|
||||
inline void setY(double yminn, double ymaxx) { plotter->setY(yminn, ymaxx); }
|
||||
|
||||
/** \brief sets minimum and maximum x- and y-values to plot */
|
||||
inline void setXY(double xminn, double xmaxx, double yminn, double ymaxx) { plotter->setXY(xminn, xmaxx, yminn, ymaxx); }
|
||||
|
||||
/** \brief returns the current x-axis min */
|
||||
inline double getXMin() const {return plotter->getXMin(); }
|
||||
@ -446,16 +430,6 @@ class LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
|
||||
|
||||
|
||||
|
||||
/** \brief sets absolute minimum and maximum x-value to plot */
|
||||
inline void setAbsoluteX(double xminn, double xmaxx) { plotter->setAbsoluteX(xminn, xmaxx); }
|
||||
|
||||
/** \brief sets absolute minimum and maximum y-value to plot */
|
||||
inline void setAbsoluteY(double yminn, double ymaxx) { plotter->setAbsoluteY(yminn, ymaxx); }
|
||||
|
||||
/** \brief sets absolute minimum and maximum x- and y-values to plot */
|
||||
inline void setAbsoluteXY(double xminn, double xmaxx, double yminn, double ymaxx) { plotter->setAbsoluteXY(xminn, xmaxx, yminn, ymaxx); }
|
||||
|
||||
/** \brief returns the absolute x-axis min */
|
||||
inline double getAbsoluteXMin() const {return plotter->getAbsoluteXMin(); }
|
||||
/** \brief returns the absolute x-axis max */
|
||||
@ -467,6 +441,7 @@ class LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
/** \brief returns the absolute y-axis max */
|
||||
inline double getAbsoluteYMax() const {return plotter->getAbsoluteYMax(); }
|
||||
|
||||
/** \brief returns the current magnification factor */
|
||||
inline double getMagnification() const { return magnification; }
|
||||
|
||||
/** \brief gets the next unused style id, i.e. the smalles number >=0 which is not contained in usedStyles */
|
||||
@ -489,14 +464,18 @@ class LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
return get_constplotter()->get_keyFontSize();
|
||||
}
|
||||
public slots:
|
||||
/** \brief set the plot magnification */
|
||||
/** \brief set the current plot magnification */
|
||||
void setMagnification(double m);
|
||||
/** \brief sets x/ymin and x/ymax to the supplied values and replots the graph (zoom operation!) */
|
||||
inline void zoom(double nxmin, double nxmax, double nymin, double nymax) {
|
||||
plotter->zoom(nxmin, nxmax, nymin, nymax);
|
||||
}
|
||||
|
||||
/** \brief sets whether to plot grid lines or not */
|
||||
/** \brief sets whether to plot grid lines or not
|
||||
*
|
||||
* \image html jkqtplotter_gridvisible.png "Grid visible"
|
||||
* \image html jkqtplotter_gridinvisible.png "Grid invisible"
|
||||
* */
|
||||
inline void setGrid(bool val) {
|
||||
plotter->setGrid(val);
|
||||
}
|
||||
@ -550,9 +529,9 @@ class LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
}
|
||||
|
||||
/** \brief zooms into the graph (the same as turning the mouse wheel) by the given factor */
|
||||
inline void zoomIn(double factor=2.0) { plotter->zoomIn(factor); };
|
||||
inline void zoomIn(double factor=2.0) { plotter->zoomIn(factor); }
|
||||
/** \brief zooms out of the graph (the same as turning the mouse wheel) by the given factor */
|
||||
inline void zoomOut(double factor=2.0) { plotter->zoomOut(factor); };
|
||||
inline void zoomOut(double factor=2.0) { plotter->zoomOut(factor); }
|
||||
|
||||
/** \brief update the plot */
|
||||
void update_plot();
|
||||
@ -566,6 +545,36 @@ class LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
/** \brief update overlays only */
|
||||
void update_overlays();
|
||||
|
||||
/*! \brief sets the property displayToolbar to the specified \a __value.
|
||||
\details Description of the parameter displayToolbar is: <BLOCKQUOTE>\copydoc displayToolbar </BLOCKQUOTE>
|
||||
\see displayToolbar for more information */
|
||||
void set_displayToolbar(bool __value);
|
||||
/*! \brief sets the property toolbarAlwaysOn to the specified \a __value.
|
||||
\details Description of the parameter toolbarAlwaysOn is: <BLOCKQUOTE>\copydoc toolbarAlwaysOn </BLOCKQUOTE>
|
||||
\see toolbarAlwaysOn for more information */
|
||||
void set_toolbarAlwaysOn(bool __value);
|
||||
/*! \brief sets the property displayMousePosition to the specified \a __value.
|
||||
\details Description of the parameter displayMousePosition is: <BLOCKQUOTE>\copydoc displayMousePosition </BLOCKQUOTE>
|
||||
\see displayMousePosition for more information */
|
||||
void set_displayMousePosition(bool __value);
|
||||
/*! \brief sets the property userActionColor to the specified \a __value.
|
||||
\details Description of the parameter userActionColor is: <BLOCKQUOTE>\copydoc userActionColor </BLOCKQUOTE>
|
||||
\see userActionColor for more information */
|
||||
void set_userActionColor(const QColor & __value);
|
||||
/*! \brief sets the property userActionCompositionMode to the specified \a __value.
|
||||
\details Description of the parameter userActionCompositionMode is: <BLOCKQUOTE>\copydoc userActionCompositionMode </BLOCKQUOTE>
|
||||
\see userActionCompositionMode for more information */
|
||||
void set_userActionCompositionMode(const QPainter::CompositionMode & __value);
|
||||
/*! \brief sets the current mouseActionMode .
|
||||
\details Description of the parameter mouseActionMode is: <BLOCKQUOTE> specifies the user-action mode this JKQtPlotter use when mouse events occur.
|
||||
* This allows you to e.g. draw rectangles or lines over the plot and receive a signal, when the drawing finishes </BLOCKQUOTE>
|
||||
\see mouseActionMode for more information */
|
||||
void set_mouseActionMode(const MouseActionModes & __value);
|
||||
/*! \brief sets the property rightMouseButtonAction to the specified \a __value.
|
||||
\details Description of the parameter rightMouseButtonAction is: <BLOCKQUOTE>\copydoc rightMouseButtonAction </BLOCKQUOTE>
|
||||
\see rightMouseButtonAction for more information */
|
||||
void set_zoomByMouseRectangle(bool zomByrectangle);
|
||||
|
||||
|
||||
/** \brief may be connected to zoomChangedLocally() of a different plot and synchronizes the local x-axis to the other x-axis */
|
||||
void synchronizeXAxis(double newxmin, double newxmax, double newymin, double newymax, JKQTPlotter* sender);
|
||||
@ -578,12 +587,34 @@ class LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
/** \brief popuplate the given toolbar with all actions shown in a toolbar from this class ... */
|
||||
virtual void populateToolbar(QToolBar* toolbar) const;
|
||||
|
||||
void setMousePositionLabel(const QString& text);
|
||||
|
||||
/** \brief open the context menu at the mouse position of the last click */
|
||||
void openContextMenu();
|
||||
/** \brief open the context menu at the mouse position \a x and \a y */
|
||||
void openContextMenu(int x, int y);
|
||||
/** \brief open the special context menu at the mouse position of the last click */
|
||||
void openSpecialContextMenu();
|
||||
/** \brief open the special context menu at the mouse position \a x and \a y */
|
||||
void openSpecialContextMenu(int x, int y);
|
||||
|
||||
|
||||
/** \brief sets absolute minimum and maximum x-value to plot */
|
||||
inline void setAbsoluteX(double xminn, double xmaxx) { plotter->setAbsoluteX(xminn, xmaxx); }
|
||||
|
||||
/** \brief sets absolute minimum and maximum y-value to plot */
|
||||
inline void setAbsoluteY(double yminn, double ymaxx) { plotter->setAbsoluteY(yminn, ymaxx); }
|
||||
|
||||
/** \brief sets absolute minimum and maximum x- and y-values to plot */
|
||||
inline void setAbsoluteXY(double xminn, double xmaxx, double yminn, double ymaxx) { plotter->setAbsoluteXY(xminn, xmaxx, yminn, ymaxx); }
|
||||
|
||||
/** \brief sets minimum and maximum x-value to plot */
|
||||
inline void setX(double xminn, double xmaxx) { plotter->setX(xminn, xmaxx); }
|
||||
|
||||
/** \brief sets minimum and maximum y-value to plot */
|
||||
inline void setY(double yminn, double ymaxx) { plotter->setY(yminn, ymaxx); }
|
||||
|
||||
/** \brief sets minimum and maximum x- and y-values to plot */
|
||||
inline void setXY(double xminn, double xmaxx, double yminn, double ymaxx) { plotter->setXY(xminn, xmaxx, yminn, ymaxx); }
|
||||
|
||||
signals:
|
||||
/** \brief signal: emitted whenever the mouse moved over the plot */
|
||||
void plotMouseMove(double x, double y);
|
||||
@ -604,9 +635,9 @@ class LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
/** \brief signal: emitted whenever the user selects a new x-y zoom range (by mouse) */
|
||||
void zoomChangedLocally(double newxmin, double newxmax, double newymin, double newymax, JKQTPlotter* sender);
|
||||
|
||||
/** \brief emitted when the user draws a rectangle */
|
||||
/** \brief emitted when the user clicks the plot */
|
||||
void userClickFinished(double x, double y, Qt::KeyboardModifiers modifiers);
|
||||
/** \brief emitted when the user draws a rectangle */
|
||||
/** \brief emitted when the user scribbles */
|
||||
void userScribbleClick(double x, double y, Qt::KeyboardModifiers modifiers, bool first, bool last);
|
||||
/** \brief emitted when the user draws a rectangle */
|
||||
void userRectangleFinished(double x, double y, double width, double height, Qt::KeyboardModifiers modifiers);
|
||||
@ -628,6 +659,8 @@ class LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
|
||||
void init(bool datastore_internal, QWidget* parent, JKQTPDatastore* datast);
|
||||
|
||||
/** \brief specifies the user-action mode this JKQtPlotter use when mouse events occur.
|
||||
* This allows you to e.g. draw rectangles or lines over the plot and receive a signal, when the drawing finishes */
|
||||
MouseActionModes mouseActionMode;
|
||||
|
||||
bool doDrawing;
|
||||
@ -682,7 +715,6 @@ class LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
QImage oldImage;
|
||||
|
||||
/** \brief indicates whether zooming in by double clicking and zooming out by right-clicking is activated */
|
||||
//bool zoomByDoubleAndRightMouseClick;
|
||||
RightMouseButtonAction rightMouseButtonAction;
|
||||
|
||||
/** \brief indicates whether zooming using the mouse-wheel is activated */
|
||||
@ -690,6 +722,8 @@ class LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
|
||||
/** \brief indicates the action to perform on a left mouse-button double-click */
|
||||
LeftDoubleClickAction leftDoubleClickAction;
|
||||
|
||||
/** \brief use this QMenu instance instead of the standard context emnu of this widget */
|
||||
QMenu* menuSpecialContextMenu;
|
||||
|
||||
|
||||
@ -759,23 +793,48 @@ class LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
|
||||
void leaveEvent ( QEvent * event );
|
||||
|
||||
/** \brief specifies whether to display a toolbar with buttons when the mouse is in the upper border of the plot */
|
||||
/** \brief specifies whether to display a toolbar with buttons when the mouse is in the upper border of the plot
|
||||
*
|
||||
* \image html jkqtplotter_toolbar_alwayson.png
|
||||
*
|
||||
* \see toolbarAlwaysOn, \ref JKQTPlotterUserInteraction
|
||||
*/
|
||||
bool displayToolbar;
|
||||
/** ßbrief specifies whether the toolbar is always visible or only when the mouse moves to the upper left area */
|
||||
/** \brief specifies whether the toolbar is always visible or only when the mouse moves to the upper left area
|
||||
*
|
||||
* If toolbarAlwaysOn is set to \c true:
|
||||
*
|
||||
* \image html jkqtplotter_toolbar_alwayson.png
|
||||
*
|
||||
* If toolbarAlwaysOn is set to \c false, the toolbar only appears when the mouse is in the right location:
|
||||
*
|
||||
* \image html jkqtplotter_toolbar_hidden.png "Hidden Toolbar"
|
||||
* \image html jkqtplotter_toolbar_shown.png "Shown Toolbar"
|
||||
*
|
||||
* \see displayToolbar, \ref JKQTPlotterUserInteraction
|
||||
*/
|
||||
bool toolbarAlwaysOn;
|
||||
|
||||
void updateToolbar();
|
||||
|
||||
/** \brief specifies whether to write the current position of the mouse in the top border of the plot (this may automatically extent the
|
||||
top border, so the position fits in. The default widget font is used for the output. */
|
||||
/** \brief specifies whether to display the current position of the mouse in the top border of the plot (this may automatically extent the
|
||||
* top border, so the position fits in. The default widget font is used for the output.
|
||||
*
|
||||
* \image html jkqtplotter_mousepositiondisplay.png
|
||||
*
|
||||
* \see mousePositionTemplate, \ref JKQTPlotterUserInteraction
|
||||
*/
|
||||
bool displayMousePosition;
|
||||
/** \brief this string is used to generate the position output above the graph */
|
||||
/** \brief this string is used to generate the position output above the graph (\c %1 is replaced by the x-position, \c %2 by the y-position)
|
||||
*
|
||||
* By default simply <code>"(%1, %2)</code> is used to format this display (e.g. <code>(1.35, -4.56)</code>).
|
||||
*
|
||||
* \image html jkqtplotter_mousepositiondisplay.png
|
||||
*
|
||||
* \see mousePositionTemplate, \ref JKQTPlotterUserInteraction */
|
||||
QString mousePositionTemplate;
|
||||
/*! \brief default value for property property varname. \see mousePositionTemplate for more information */
|
||||
QString def_mousePositionTemplate;
|
||||
/** \brief if set \c true and displayMousePosition is \c true, the mouse position is not automatically determined, but the text given to setMousePositionLabel() is used */
|
||||
bool displayCustomMousePosition;
|
||||
QString customMousePositiontext;
|
||||
|
||||
/** \brief the master plotter, this plotter is connected to. */
|
||||
QPointer<JKQTPlotter> masterPlotter;
|
||||
@ -791,9 +850,13 @@ class LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
QSize minSize;
|
||||
|
||||
QMenu* contextMenu;
|
||||
/** \brief x-position of the mouse (in plot coordinates) when a user mouse-action was started (e.g. drawing a rectangle) */
|
||||
double mouseContextX;
|
||||
/** \brief y-position of the mouse (in plot coordinates) when a user mouse-action was started (e.g. drawing a rectangle) */
|
||||
double mouseContextY;
|
||||
/** \brief x-position of the last mouse-click (in screen pixels) */
|
||||
int mouseLastClickX;
|
||||
/** \brief y-position of the last mouse-click (in screen pixels) */
|
||||
int mouseLastClickY;
|
||||
QList<QMenu*> contextSubMenus;
|
||||
void initContextMenu();
|
||||
|
@ -40,14 +40,14 @@ class LIB_EXPORT JKVanishQToolBar: public QToolBar {
|
||||
/** \brief class constructor */
|
||||
JKVanishQToolBar(QWidget* parent=nullptr);
|
||||
/*! \brief sets the property toolbarVanishes to the specified \a __value.
|
||||
\details Description of the parameter toolbarVanishes is: <BLOCKQUOTE>\copybrief toolbarVanishes </BLOCKQUOTE>
|
||||
\details Description of the parameter toolbarVanishes is: <BLOCKQUOTE>\copydoc toolbarVanishes </BLOCKQUOTE>
|
||||
\see toolbarVanishes for more information */
|
||||
inline virtual void set_toolbarVanishes(bool __value)
|
||||
{
|
||||
this->toolbarVanishes = __value;
|
||||
}
|
||||
/*! \brief returns the property toolbarVanishes.
|
||||
\details Description of the parameter toolbarVanishes is: <BLOCKQUOTE>\copybrief toolbarVanishes </BLOCKQUOTE>
|
||||
\details Description of the parameter toolbarVanishes is: <BLOCKQUOTE>\copydoc toolbarVanishes </BLOCKQUOTE>
|
||||
\see toolbarVanishes for more information */
|
||||
inline virtual bool get_toolbarVanishes() const
|
||||
{
|
||||
|
@ -888,278 +888,278 @@ class LIB_EXPORT JKQTPColorPaletteTools {
|
||||
public:
|
||||
|
||||
/*! \brief sets the property palette to the specified \a __value.
|
||||
\details Description of the parameter palette is: <BLOCKQUOTE>\copybrief palette </BLOCKQUOTE>
|
||||
\details Description of the parameter palette is: <BLOCKQUOTE>\copydoc palette </BLOCKQUOTE>
|
||||
\see palette for more information */
|
||||
inline virtual void set_palette(const JKQTPMathImageColorPalette & __value)
|
||||
{
|
||||
this->palette = __value;
|
||||
}
|
||||
/*! \brief returns the property palette.
|
||||
\details Description of the parameter palette is: <BLOCKQUOTE>\copybrief palette </BLOCKQUOTE>
|
||||
\details Description of the parameter palette is: <BLOCKQUOTE>\copydoc palette </BLOCKQUOTE>
|
||||
\see palette for more information */
|
||||
inline virtual JKQTPMathImageColorPalette get_palette() const
|
||||
{
|
||||
return this->palette;
|
||||
}
|
||||
/*! \brief sets the property rangeMinFailAction to the specified \a __value.
|
||||
\details Description of the parameter rangeMinFailAction is: <BLOCKQUOTE>\copybrief rangeMinFailAction </BLOCKQUOTE>
|
||||
\details Description of the parameter rangeMinFailAction is: <BLOCKQUOTE>\copydoc rangeMinFailAction </BLOCKQUOTE>
|
||||
\see rangeMinFailAction for more information */
|
||||
inline virtual void set_rangeMinFailAction(const JKQTPMathImageColorRangeFailAction & __value)
|
||||
{
|
||||
this->rangeMinFailAction = __value;
|
||||
}
|
||||
/*! \brief returns the property rangeMinFailAction.
|
||||
\details Description of the parameter rangeMinFailAction is: <BLOCKQUOTE>\copybrief rangeMinFailAction </BLOCKQUOTE>
|
||||
\details Description of the parameter rangeMinFailAction is: <BLOCKQUOTE>\copydoc rangeMinFailAction </BLOCKQUOTE>
|
||||
\see rangeMinFailAction for more information */
|
||||
inline virtual JKQTPMathImageColorRangeFailAction get_rangeMinFailAction() const
|
||||
{
|
||||
return this->rangeMinFailAction;
|
||||
}
|
||||
/*! \brief sets the property rangeMaxFailAction to the specified \a __value.
|
||||
\details Description of the parameter rangeMaxFailAction is: <BLOCKQUOTE>\copybrief rangeMaxFailAction </BLOCKQUOTE>
|
||||
\details Description of the parameter rangeMaxFailAction is: <BLOCKQUOTE>\copydoc rangeMaxFailAction </BLOCKQUOTE>
|
||||
\see rangeMaxFailAction for more information */
|
||||
inline virtual void set_rangeMaxFailAction(const JKQTPMathImageColorRangeFailAction & __value)
|
||||
{
|
||||
this->rangeMaxFailAction = __value;
|
||||
}
|
||||
/*! \brief returns the property rangeMaxFailAction.
|
||||
\details Description of the parameter rangeMaxFailAction is: <BLOCKQUOTE>\copybrief rangeMaxFailAction </BLOCKQUOTE>
|
||||
\details Description of the parameter rangeMaxFailAction is: <BLOCKQUOTE>\copydoc rangeMaxFailAction </BLOCKQUOTE>
|
||||
\see rangeMaxFailAction for more information */
|
||||
inline virtual JKQTPMathImageColorRangeFailAction get_rangeMaxFailAction() const
|
||||
{
|
||||
return this->rangeMaxFailAction;
|
||||
}
|
||||
/*! \brief sets the property rangeMinFailColor to the specified \a __value.
|
||||
\details Description of the parameter rangeMinFailColor is: <BLOCKQUOTE>\copybrief rangeMinFailColor </BLOCKQUOTE>
|
||||
\details Description of the parameter rangeMinFailColor is: <BLOCKQUOTE>\copydoc rangeMinFailColor </BLOCKQUOTE>
|
||||
\see rangeMinFailColor for more information */
|
||||
inline virtual void set_rangeMinFailColor(const QColor & __value)
|
||||
{
|
||||
this->rangeMinFailColor = __value;
|
||||
}
|
||||
/*! \brief returns the property rangeMinFailColor.
|
||||
\details Description of the parameter rangeMinFailColor is: <BLOCKQUOTE>\copybrief rangeMinFailColor </BLOCKQUOTE>
|
||||
\details Description of the parameter rangeMinFailColor is: <BLOCKQUOTE>\copydoc rangeMinFailColor </BLOCKQUOTE>
|
||||
\see rangeMinFailColor for more information */
|
||||
inline virtual QColor get_rangeMinFailColor() const
|
||||
{
|
||||
return this->rangeMinFailColor;
|
||||
}
|
||||
/*! \brief sets the property rangeMaxFailColor to the specified \a __value.
|
||||
\details Description of the parameter rangeMaxFailColor is: <BLOCKQUOTE>\copybrief rangeMaxFailColor </BLOCKQUOTE>
|
||||
\details Description of the parameter rangeMaxFailColor is: <BLOCKQUOTE>\copydoc rangeMaxFailColor </BLOCKQUOTE>
|
||||
\see rangeMaxFailColor for more information */
|
||||
inline virtual void set_rangeMaxFailColor(const QColor & __value)
|
||||
{
|
||||
this->rangeMaxFailColor = __value;
|
||||
}
|
||||
/*! \brief returns the property rangeMaxFailColor.
|
||||
\details Description of the parameter rangeMaxFailColor is: <BLOCKQUOTE>\copybrief rangeMaxFailColor </BLOCKQUOTE>
|
||||
\details Description of the parameter rangeMaxFailColor is: <BLOCKQUOTE>\copydoc rangeMaxFailColor </BLOCKQUOTE>
|
||||
\see rangeMaxFailColor for more information */
|
||||
inline virtual QColor get_rangeMaxFailColor() const
|
||||
{
|
||||
return this->rangeMaxFailColor;
|
||||
}
|
||||
/*! \brief sets the property nanColor to the specified \a __value.
|
||||
\details Description of the parameter nanColor is: <BLOCKQUOTE>\copybrief nanColor </BLOCKQUOTE>
|
||||
\details Description of the parameter nanColor is: <BLOCKQUOTE>\copydoc nanColor </BLOCKQUOTE>
|
||||
\see nanColor for more information */
|
||||
inline virtual void set_nanColor(const QColor & __value)
|
||||
{
|
||||
this->nanColor = __value;
|
||||
}
|
||||
/*! \brief returns the property nanColor.
|
||||
\details Description of the parameter nanColor is: <BLOCKQUOTE>\copybrief nanColor </BLOCKQUOTE>
|
||||
\details Description of the parameter nanColor is: <BLOCKQUOTE>\copydoc nanColor </BLOCKQUOTE>
|
||||
\see nanColor for more information */
|
||||
inline virtual QColor get_nanColor() const
|
||||
{
|
||||
return this->nanColor;
|
||||
}
|
||||
/*! \brief sets the property infColor to the specified \a __value.
|
||||
\details Description of the parameter infColor is: <BLOCKQUOTE>\copybrief infColor </BLOCKQUOTE>
|
||||
\details Description of the parameter infColor is: <BLOCKQUOTE>\copydoc infColor </BLOCKQUOTE>
|
||||
\see infColor for more information */
|
||||
inline virtual void set_infColor(const QColor & __value)
|
||||
{
|
||||
this->infColor = __value;
|
||||
}
|
||||
/*! \brief returns the property infColor.
|
||||
\details Description of the parameter infColor is: <BLOCKQUOTE>\copybrief infColor </BLOCKQUOTE>
|
||||
\details Description of the parameter infColor is: <BLOCKQUOTE>\copydoc infColor </BLOCKQUOTE>
|
||||
\see infColor for more information */
|
||||
inline virtual QColor get_infColor() const
|
||||
{
|
||||
return this->infColor;
|
||||
}
|
||||
/*! \brief sets the property showColorBar to the specified \a __value.
|
||||
\details Description of the parameter showColorBar is: <BLOCKQUOTE>\copybrief showColorBar </BLOCKQUOTE>
|
||||
\details Description of the parameter showColorBar is: <BLOCKQUOTE>\copydoc showColorBar </BLOCKQUOTE>
|
||||
\see showColorBar for more information */
|
||||
inline virtual void set_showColorBar(bool __value)
|
||||
{
|
||||
this->showColorBar = __value;
|
||||
}
|
||||
/*! \brief returns the property showColorBar.
|
||||
\details Description of the parameter showColorBar is: <BLOCKQUOTE>\copybrief showColorBar </BLOCKQUOTE>
|
||||
\details Description of the parameter showColorBar is: <BLOCKQUOTE>\copydoc showColorBar </BLOCKQUOTE>
|
||||
\see showColorBar for more information */
|
||||
inline virtual bool get_showColorBar() const
|
||||
{
|
||||
return this->showColorBar;
|
||||
}
|
||||
/*! \brief sets the property colorBarWidth to the specified \a __value.
|
||||
\details Description of the parameter colorBarWidth is: <BLOCKQUOTE>\copybrief colorBarWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter colorBarWidth is: <BLOCKQUOTE>\copydoc colorBarWidth </BLOCKQUOTE>
|
||||
\see colorBarWidth for more information */
|
||||
inline virtual void set_colorBarWidth(int __value)
|
||||
{
|
||||
this->colorBarWidth = __value;
|
||||
}
|
||||
/*! \brief returns the property colorBarWidth.
|
||||
\details Description of the parameter colorBarWidth is: <BLOCKQUOTE>\copybrief colorBarWidth </BLOCKQUOTE>
|
||||
\details Description of the parameter colorBarWidth is: <BLOCKQUOTE>\copydoc colorBarWidth </BLOCKQUOTE>
|
||||
\see colorBarWidth for more information */
|
||||
inline virtual int get_colorBarWidth() const
|
||||
{
|
||||
return this->colorBarWidth;
|
||||
}
|
||||
/*! \brief sets the property colorBarOffset to the specified \a __value.
|
||||
\details Description of the parameter colorBarOffset is: <BLOCKQUOTE>\copybrief colorBarOffset </BLOCKQUOTE>
|
||||
\details Description of the parameter colorBarOffset is: <BLOCKQUOTE>\copydoc colorBarOffset </BLOCKQUOTE>
|
||||
\see colorBarOffset for more information */
|
||||
inline virtual void set_colorBarOffset(int __value)
|
||||
{
|
||||
this->colorBarOffset = __value;
|
||||
}
|
||||
/*! \brief returns the property colorBarOffset.
|
||||
\details Description of the parameter colorBarOffset is: <BLOCKQUOTE>\copybrief colorBarOffset </BLOCKQUOTE>
|
||||
\details Description of the parameter colorBarOffset is: <BLOCKQUOTE>\copydoc colorBarOffset </BLOCKQUOTE>
|
||||
\see colorBarOffset for more information */
|
||||
inline virtual int get_colorBarOffset() const
|
||||
{
|
||||
return this->colorBarOffset;
|
||||
}
|
||||
/*! \brief sets the property colorBarRelativeHeight to the specified \a __value.
|
||||
\details Description of the parameter colorBarRelativeHeight is: <BLOCKQUOTE>\copybrief colorBarRelativeHeight </BLOCKQUOTE>
|
||||
\details Description of the parameter colorBarRelativeHeight is: <BLOCKQUOTE>\copydoc colorBarRelativeHeight </BLOCKQUOTE>
|
||||
\see colorBarRelativeHeight for more information */
|
||||
inline virtual void set_colorBarRelativeHeight(double __value)
|
||||
{
|
||||
this->colorBarRelativeHeight = __value;
|
||||
}
|
||||
/*! \brief returns the property colorBarRelativeHeight.
|
||||
\details Description of the parameter colorBarRelativeHeight is: <BLOCKQUOTE>\copybrief colorBarRelativeHeight </BLOCKQUOTE>
|
||||
\details Description of the parameter colorBarRelativeHeight is: <BLOCKQUOTE>\copydoc colorBarRelativeHeight </BLOCKQUOTE>
|
||||
\see colorBarRelativeHeight for more information */
|
||||
inline virtual double get_colorBarRelativeHeight() const
|
||||
{
|
||||
return this->colorBarRelativeHeight;
|
||||
}
|
||||
/*! \brief sets the property imageMin to the specified \a __value.
|
||||
\details Description of the parameter imageMin is: <BLOCKQUOTE>\copybrief imageMin </BLOCKQUOTE>
|
||||
\details Description of the parameter imageMin is: <BLOCKQUOTE>\copydoc imageMin </BLOCKQUOTE>
|
||||
\see imageMin for more information */
|
||||
inline virtual void set_imageMin(double __value)
|
||||
{
|
||||
this->imageMin = __value;
|
||||
}
|
||||
/*! \brief returns the property imageMin.
|
||||
\details Description of the parameter imageMin is: <BLOCKQUOTE>\copybrief imageMin </BLOCKQUOTE>
|
||||
\details Description of the parameter imageMin is: <BLOCKQUOTE>\copydoc imageMin </BLOCKQUOTE>
|
||||
\see imageMin for more information */
|
||||
inline virtual double get_imageMin() const
|
||||
{
|
||||
return this->imageMin;
|
||||
}
|
||||
/*! \brief sets the property imageMax to the specified \a __value.
|
||||
\details Description of the parameter imageMax is: <BLOCKQUOTE>\copybrief imageMax </BLOCKQUOTE>
|
||||
\details Description of the parameter imageMax is: <BLOCKQUOTE>\copydoc imageMax </BLOCKQUOTE>
|
||||
\see imageMax for more information */
|
||||
inline virtual void set_imageMax(double __value)
|
||||
{
|
||||
this->imageMax = __value;
|
||||
}
|
||||
/*! \brief returns the property imageMax.
|
||||
\details Description of the parameter imageMax is: <BLOCKQUOTE>\copybrief imageMax </BLOCKQUOTE>
|
||||
\details Description of the parameter imageMax is: <BLOCKQUOTE>\copydoc imageMax </BLOCKQUOTE>
|
||||
\see imageMax for more information */
|
||||
inline virtual double get_imageMax() const
|
||||
{
|
||||
return this->imageMax;
|
||||
}
|
||||
/*! \brief sets the property autoImageRange to the specified \a __value.
|
||||
\details Description of the parameter autoImageRange is: <BLOCKQUOTE>\copybrief autoImageRange </BLOCKQUOTE>
|
||||
\details Description of the parameter autoImageRange is: <BLOCKQUOTE>\copydoc autoImageRange </BLOCKQUOTE>
|
||||
\see autoImageRange for more information */
|
||||
inline virtual void set_autoImageRange(bool __value)
|
||||
{
|
||||
this->autoImageRange = __value;
|
||||
}
|
||||
/*! \brief returns the property autoImageRange.
|
||||
\details Description of the parameter autoImageRange is: <BLOCKQUOTE>\copybrief autoImageRange </BLOCKQUOTE>
|
||||
\details Description of the parameter autoImageRange is: <BLOCKQUOTE>\copydoc autoImageRange </BLOCKQUOTE>
|
||||
\see autoImageRange for more information */
|
||||
inline virtual bool get_autoImageRange() const
|
||||
{
|
||||
return this->autoImageRange;
|
||||
}
|
||||
/*! \brief sets the property imageName to the specified \a __value.
|
||||
\details Description of the parameter imageName is: <BLOCKQUOTE>\copybrief imageName </BLOCKQUOTE>
|
||||
\details Description of the parameter imageName is: <BLOCKQUOTE>\copydoc imageName </BLOCKQUOTE>
|
||||
\see imageName for more information */
|
||||
inline virtual void set_imageName(const QString & __value)
|
||||
{
|
||||
this->imageName = __value;
|
||||
}
|
||||
/*! \brief returns the property imageName.
|
||||
\details Description of the parameter imageName is: <BLOCKQUOTE>\copybrief imageName </BLOCKQUOTE>
|
||||
\details Description of the parameter imageName is: <BLOCKQUOTE>\copydoc imageName </BLOCKQUOTE>
|
||||
\see imageName for more information */
|
||||
inline virtual QString get_imageName() const
|
||||
{
|
||||
return this->imageName;
|
||||
}
|
||||
/*! \brief sets the property imageNameFontName to the specified \a __value.
|
||||
\details Description of the parameter imageNameFontName is: <BLOCKQUOTE>\copybrief imageNameFontName </BLOCKQUOTE>
|
||||
\details Description of the parameter imageNameFontName is: <BLOCKQUOTE>\copydoc imageNameFontName </BLOCKQUOTE>
|
||||
\see imageNameFontName for more information */
|
||||
inline virtual void set_imageNameFontName(const QString & __value)
|
||||
{
|
||||
this->imageNameFontName = __value;
|
||||
}
|
||||
/*! \brief returns the property imageNameFontName.
|
||||
\details Description of the parameter imageNameFontName is: <BLOCKQUOTE>\copybrief imageNameFontName </BLOCKQUOTE>
|
||||
\details Description of the parameter imageNameFontName is: <BLOCKQUOTE>\copydoc imageNameFontName </BLOCKQUOTE>
|
||||
\see imageNameFontName for more information */
|
||||
inline virtual QString get_imageNameFontName() const
|
||||
{
|
||||
return this->imageNameFontName;
|
||||
}
|
||||
/*! \brief sets the property imageNameFontSize to the specified \a __value.
|
||||
\details Description of the parameter imageNameFontSize is: <BLOCKQUOTE>\copybrief imageNameFontSize </BLOCKQUOTE>
|
||||
\details Description of the parameter imageNameFontSize is: <BLOCKQUOTE>\copydoc imageNameFontSize </BLOCKQUOTE>
|
||||
\see imageNameFontSize for more information */
|
||||
inline virtual void set_imageNameFontSize(double __value)
|
||||
{
|
||||
this->imageNameFontSize = __value;
|
||||
}
|
||||
/*! \brief returns the property imageNameFontSize.
|
||||
\details Description of the parameter imageNameFontSize is: <BLOCKQUOTE>\copybrief imageNameFontSize </BLOCKQUOTE>
|
||||
\details Description of the parameter imageNameFontSize is: <BLOCKQUOTE>\copydoc imageNameFontSize </BLOCKQUOTE>
|
||||
\see imageNameFontSize for more information */
|
||||
inline virtual double get_imageNameFontSize() const
|
||||
{
|
||||
return this->imageNameFontSize;
|
||||
}
|
||||
/*! \brief returns the property colorBarRightAxis.
|
||||
\details Description of the parameter colorBarRightAxis is: <BLOCKQUOTE>\copybrief colorBarRightAxis </BLOCKQUOTE>.
|
||||
\details Description of the parameter colorBarRightAxis is: <BLOCKQUOTE>\copydoc colorBarRightAxis </BLOCKQUOTE>.
|
||||
\see colorBarRightAxis for more information */
|
||||
inline JKQTPVerticalIndependentAxis* get_colorBarRightAxis() const {
|
||||
return this->colorBarRightAxis;
|
||||
}
|
||||
/*! \brief returns the property colorBarTopAxis.
|
||||
\details Description of the parameter colorBarTopAxis is: <BLOCKQUOTE>\copybrief colorBarTopAxis </BLOCKQUOTE>.
|
||||
\details Description of the parameter colorBarTopAxis is: <BLOCKQUOTE>\copydoc colorBarTopAxis </BLOCKQUOTE>.
|
||||
\see colorBarTopAxis for more information */
|
||||
inline JKQTPHorizontalIndependentAxis* get_colorBarTopAxis() const {
|
||||
return this->colorBarTopAxis;
|
||||
}
|
||||
/*! \brief sets the property colorBarTopVisible to the specified \a __value.
|
||||
\details Description of the parameter colorBarTopVisible is: <BLOCKQUOTE>\copybrief colorBarTopVisible </BLOCKQUOTE>
|
||||
\details Description of the parameter colorBarTopVisible is: <BLOCKQUOTE>\copydoc colorBarTopVisible </BLOCKQUOTE>
|
||||
\see colorBarTopVisible for more information */
|
||||
inline virtual void set_colorBarTopVisible(bool __value)
|
||||
{
|
||||
this->colorBarTopVisible = __value;
|
||||
}
|
||||
/*! \brief returns the property colorBarTopVisible.
|
||||
\details Description of the parameter colorBarTopVisible is: <BLOCKQUOTE>\copybrief colorBarTopVisible </BLOCKQUOTE>
|
||||
\details Description of the parameter colorBarTopVisible is: <BLOCKQUOTE>\copydoc colorBarTopVisible </BLOCKQUOTE>
|
||||
\see colorBarTopVisible for more information */
|
||||
inline virtual bool get_colorBarTopVisible() const
|
||||
{
|
||||
return this->colorBarTopVisible;
|
||||
}
|
||||
/*! \brief sets the property colorBarRightVisible to the specified \a __value.
|
||||
\details Description of the parameter colorBarRightVisible is: <BLOCKQUOTE>\copybrief colorBarRightVisible </BLOCKQUOTE>
|
||||
\details Description of the parameter colorBarRightVisible is: <BLOCKQUOTE>\copydoc colorBarRightVisible </BLOCKQUOTE>
|
||||
\see colorBarRightVisible for more information */
|
||||
inline virtual void set_colorBarRightVisible(bool __value)
|
||||
{
|
||||
this->colorBarRightVisible = __value;
|
||||
}
|
||||
/*! \brief returns the property colorBarRightVisible.
|
||||
\details Description of the parameter colorBarRightVisible is: <BLOCKQUOTE>\copybrief colorBarRightVisible </BLOCKQUOTE>
|
||||
\details Description of the parameter colorBarRightVisible is: <BLOCKQUOTE>\copydoc colorBarRightVisible </BLOCKQUOTE>
|
||||
\see colorBarRightVisible for more information */
|
||||
inline virtual bool get_colorBarRightVisible() const
|
||||
{
|
||||
|
@ -832,14 +832,14 @@ class JKQTPMathParser
|
||||
virtual ~JKQTPMathParser();
|
||||
|
||||
/*! \brief sets the property data to the specified \a __value.
|
||||
\details Description of the parameter data is: <BLOCKQUOTE>\copybrief data </BLOCKQUOTE>
|
||||
\details Description of the parameter data is: <BLOCKQUOTE>\copydoc data </BLOCKQUOTE>
|
||||
\see data for more information */
|
||||
inline virtual void set_data(void* __value)
|
||||
{
|
||||
this->data = __value;
|
||||
}
|
||||
/*! \brief returns the property data.
|
||||
\details Description of the parameter data is: <BLOCKQUOTE>\copybrief data </BLOCKQUOTE>
|
||||
\details Description of the parameter data is: <BLOCKQUOTE>\copydoc data </BLOCKQUOTE>
|
||||
\see data for more information */
|
||||
inline virtual void* get_data() const
|
||||
{
|
||||
|