mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-12-25 10:01:38 +08:00
some bug-fixes (ressources from library were not loaded, compile order in projects was wrong)
This commit is contained in:
parent
ca4065dae9
commit
4680106734
@ -3065,7 +3065,7 @@ bool JKQTmathText::MTsymbolNode::toHtml(QString &html, JKQTmathText::MTenvironme
|
|||||||
JKQTmathText::JKQTmathText(QObject* parent):
|
JKQTmathText::JKQTmathText(QObject* parent):
|
||||||
QObject(parent)
|
QObject(parent)
|
||||||
{
|
{
|
||||||
|
Q_INIT_RESOURCE(xits);
|
||||||
QFontDatabase fontdb;
|
QFontDatabase fontdb;
|
||||||
|
|
||||||
QString serifFont="Serif";
|
QString serifFont="Serif";
|
||||||
@ -4270,3 +4270,8 @@ QString JKQTmathText::MTplainTextNode::textTransform(const QString &text, JKQTma
|
|||||||
{
|
{
|
||||||
return text;
|
return text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void initJKQtMathTextResources()
|
||||||
|
{
|
||||||
|
Q_INIT_RESOURCE(xits);
|
||||||
|
}
|
||||||
|
@ -72,6 +72,10 @@
|
|||||||
*/
|
*/
|
||||||
#define JKQTMTPROPERTYload(settings, group, var, varname, varconvert) \
|
#define JKQTMTPROPERTYload(settings, group, var, varname, varconvert) \
|
||||||
var=settings.value(group+varname, var).varconvert;
|
var=settings.value(group+varname, var).varconvert;
|
||||||
|
|
||||||
|
/** \brief initialized Qt-ressources necessary for JKQtMathText */
|
||||||
|
LIB_EXPORT void initJKQtMathTextResources();
|
||||||
|
|
||||||
/*! \brief this class manages an enhanced text message (containing a subset of LaTeX markups) and allows to draw a representation
|
/*! \brief this class manages an enhanced text message (containing a subset of LaTeX markups) and allows to draw a representation
|
||||||
\ingroup jkqtmathtext
|
\ingroup jkqtmathtext
|
||||||
|
|
||||||
|
@ -59,6 +59,18 @@ static QString globalUserSettigsPrefix="";
|
|||||||
static QList<JKQtBasePlotter::JKQTPPaintDeviceAdapter*> jkqtpPaintDeviceAdapters;
|
static QList<JKQtBasePlotter::JKQTPPaintDeviceAdapter*> jkqtpPaintDeviceAdapters;
|
||||||
static QList<JKQtBasePlotter::JKQTPSaveDataAdapter*> jkqtpSaveDataAdapters;
|
static QList<JKQtBasePlotter::JKQTPSaveDataAdapter*> jkqtpSaveDataAdapters;
|
||||||
|
|
||||||
|
|
||||||
|
void initJKQtBasePlotterResources()
|
||||||
|
{
|
||||||
|
Q_INIT_RESOURCE(jkqtpbaseplotter);
|
||||||
|
initJKQtMathTextResources();
|
||||||
|
}
|
||||||
|
|
||||||
|
JKQtBasePlotter::JKQtBasePlotter()
|
||||||
|
{
|
||||||
|
initJKQtBasePlotterResources();
|
||||||
|
}
|
||||||
|
|
||||||
void JKQtBasePlotter::setDefaultJKQtBasePrinterUserSettings(QString userSettigsFilename, QString userSettigsPrefix)
|
void JKQtBasePlotter::setDefaultJKQtBasePrinterUserSettings(QString userSettigsFilename, QString userSettigsPrefix)
|
||||||
{
|
{
|
||||||
globalUserSettigsFilename=userSettigsFilename;
|
globalUserSettigsFilename=userSettigsFilename;
|
||||||
@ -420,6 +432,7 @@ void JKQtBasePlotter::initSettings() {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void JKQtBasePlotter::zoomIn(double factor) {
|
void JKQtBasePlotter::zoomIn(double factor) {
|
||||||
//std::cout<<(double)event->delta()/120.0<<": "<<factor<<std::endl;
|
//std::cout<<(double)event->delta()/120.0<<": "<<factor<<std::endl;
|
||||||
double xmin=p2x(static_cast<long>(round(static_cast<double>(plotWidth)/2.0-static_cast<double>(plotWidth)/(2.0*factor))));
|
double xmin=p2x(static_cast<long>(round(static_cast<double>(plotWidth)/2.0-static_cast<double>(plotWidth)/(2.0*factor))));
|
||||||
|
@ -70,6 +70,9 @@
|
|||||||
|
|
||||||
class JKQTPPlotsModel; // forward
|
class JKQTPPlotsModel; // forward
|
||||||
|
|
||||||
|
/** \brief initialized Qt-ressources necessary for JKQtBasePlotter */
|
||||||
|
LIB_EXPORT void initJKQtBasePlotterResources();
|
||||||
|
|
||||||
|
|
||||||
/** \brief base class for 2D plotter classes
|
/** \brief base class for 2D plotter classes
|
||||||
* \ingroup jkqtplotter
|
* \ingroup jkqtplotter
|
||||||
@ -445,7 +448,7 @@ class LIB_EXPORT JKQtBasePlotter: public QObject {
|
|||||||
|
|
||||||
|
|
||||||
/** \brief hidden default constructor */
|
/** \brief hidden default constructor */
|
||||||
JKQtBasePlotter() {}
|
JKQtBasePlotter();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -48,13 +48,14 @@
|
|||||||
JKQtPlotter::JKQtPlotter(bool datastore_internal, QWidget* parent, JKQTPdatastore* datast):
|
JKQtPlotter::JKQtPlotter(bool datastore_internal, QWidget* parent, JKQTPdatastore* datast):
|
||||||
QWidget(parent, Qt::Widget)
|
QWidget(parent, Qt::Widget)
|
||||||
{
|
{
|
||||||
|
initJKQtPlotterResources();
|
||||||
init(datastore_internal, parent, datast);
|
init(datastore_internal, parent, datast);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
JKQtPlotter::JKQtPlotter(QWidget *parent):
|
JKQtPlotter::JKQtPlotter(QWidget *parent):
|
||||||
QWidget(parent, Qt::Widget)
|
QWidget(parent, Qt::Widget)
|
||||||
{
|
{
|
||||||
|
initJKQtPlotterResources();
|
||||||
init(true, parent, nullptr);
|
init(true, parent, nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -910,3 +911,8 @@ void JKQtPlotter::set_doDrawing(bool enable)
|
|||||||
//qDebug()<<objectName()<<" doDrawing="<<doDrawing;
|
//qDebug()<<objectName()<<" doDrawing="<<doDrawing;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void initJKQtPlotterResources()
|
||||||
|
{
|
||||||
|
initJKQtBasePlotterResources();
|
||||||
|
}
|
||||||
|
@ -60,6 +60,9 @@
|
|||||||
#ifndef JKQTPLOTTER_H
|
#ifndef JKQTPLOTTER_H
|
||||||
#define JKQTPLOTTER_H
|
#define JKQTPLOTTER_H
|
||||||
|
|
||||||
|
/** \brief initialized Qt-ressources necessary for JKQtPlotter */
|
||||||
|
LIB_EXPORT void initJKQtPlotterResources();
|
||||||
|
|
||||||
|
|
||||||
/** \brief class to plot function graphs in linear or (semi-)logarithmic scale
|
/** \brief class to plot function graphs in linear or (semi-)logarithmic scale
|
||||||
* \ingroup jkqtplotter
|
* \ingroup jkqtplotter
|
||||||
@ -599,7 +602,7 @@ class LIB_EXPORT JKQtPlotter: public QWidget {
|
|||||||
bool displayMousePosition;
|
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 */
|
||||||
JKQTPPROPERTY(QString, mousePositionTemplate)
|
JKQTPPROPERTY(QString, mousePositionTemplate)
|
||||||
/** \brief if set \c true and displayMousePosition is \c true, the mouse position is not automaticallz determined, but the text given to setMousePositionLabel() is used */
|
/** \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;
|
bool displayCustomMousePosition;
|
||||||
QString customMousePositiontext;
|
QString customMousePositiontext;
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ TEMPLATE = subdirs
|
|||||||
|
|
||||||
SUBDIRS += jkqtplotterlib jkqtmathtext_simpletest
|
SUBDIRS += jkqtplotterlib jkqtmathtext_simpletest
|
||||||
|
|
||||||
|
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
||||||
|
|
||||||
jkqtmathtext_simpletest.file=$$PWD/jkqtmathtext_simpletest.pro
|
jkqtmathtext_simpletest.file=$$PWD/jkqtmathtext_simpletest.pro
|
||||||
jkqtmathtext_simpletest.depends = jkqtplotterlib
|
jkqtmathtext_simpletest.depends = jkqtplotterlib
|
||||||
|
|
||||||
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
|
||||||
|
@ -2,7 +2,7 @@ TEMPLATE = subdirs
|
|||||||
|
|
||||||
SUBDIRS += jkqtplotterlib jkqtmathtext_test
|
SUBDIRS += jkqtplotterlib jkqtmathtext_test
|
||||||
|
|
||||||
|
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
||||||
|
|
||||||
jkqtmathtext_test.file=$$PWD/jkqtmathtext_test.pro
|
jkqtmathtext_test.file=$$PWD/jkqtmathtext_test.pro
|
||||||
jkqtmathtext_test.depends = jkqtplotterlib
|
jkqtmathtext_test.depends = jkqtplotterlib
|
||||||
|
|
||||||
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
|
||||||
|
@ -2,7 +2,7 @@ TEMPLATE = subdirs
|
|||||||
|
|
||||||
SUBDIRS += jkqtplotterlib jkqtplot_test
|
SUBDIRS += jkqtplotterlib jkqtplot_test
|
||||||
|
|
||||||
|
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
||||||
|
|
||||||
jkqtplot_test.file=$$PWD/jkqtplot_test.pro
|
jkqtplot_test.file=$$PWD/jkqtplot_test.pro
|
||||||
jkqtplot_test.depends = jkqtplotterlib
|
jkqtplot_test.depends = jkqtplotterlib
|
||||||
|
|
||||||
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
|
||||||
|
@ -2,7 +2,7 @@ TEMPLATE = subdirs
|
|||||||
|
|
||||||
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest
|
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest
|
||||||
|
|
||||||
|
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
||||||
|
|
||||||
jkqtplotter_simpletest.file=$$PWD/jkqtplotter_simpletest.pro
|
jkqtplotter_simpletest.file=$$PWD/jkqtplotter_simpletest.pro
|
||||||
jkqtplotter_simpletest.depends = jkqtplotterlib
|
jkqtplotter_simpletest.depends = jkqtplotterlib
|
||||||
|
|
||||||
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
|
||||||
|
@ -2,7 +2,7 @@ TEMPLATE = subdirs
|
|||||||
|
|
||||||
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_barchart
|
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_barchart
|
||||||
|
|
||||||
|
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
||||||
|
|
||||||
jkqtplotter_simpletest_barchart.file=$$PWD/jkqtplotter_simpletest_barchart.pro
|
jkqtplotter_simpletest_barchart.file=$$PWD/jkqtplotter_simpletest_barchart.pro
|
||||||
jkqtplotter_simpletest_barchart.depends = jkqtplotterlib
|
jkqtplotter_simpletest_barchart.depends = jkqtplotterlib
|
||||||
|
|
||||||
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
|
||||||
|
@ -2,7 +2,7 @@ TEMPLATE = subdirs
|
|||||||
|
|
||||||
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_dateaxes
|
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_dateaxes
|
||||||
|
|
||||||
|
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
||||||
|
|
||||||
jkqtplotter_simpletest_dateaxes.file=$$PWD/jkqtplotter_simpletest_dateaxes.pro
|
jkqtplotter_simpletest_dateaxes.file=$$PWD/jkqtplotter_simpletest_dateaxes.pro
|
||||||
jkqtplotter_simpletest_dateaxes.depends = jkqtplotterlib
|
jkqtplotter_simpletest_dateaxes.depends = jkqtplotterlib
|
||||||
|
|
||||||
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
|
||||||
|
@ -2,7 +2,7 @@ TEMPLATE = subdirs
|
|||||||
|
|
||||||
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_errorbarstyles
|
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_errorbarstyles
|
||||||
|
|
||||||
|
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
||||||
|
|
||||||
jkqtplotter_simpletest_errorbarstyles.file=$$PWD/jkqtplotter_simpletest_errorbarstyles.pro
|
jkqtplotter_simpletest_errorbarstyles.file=$$PWD/jkqtplotter_simpletest_errorbarstyles.pro
|
||||||
jkqtplotter_simpletest_errorbarstyles.depends = jkqtplotterlib
|
jkqtplotter_simpletest_errorbarstyles.depends = jkqtplotterlib
|
||||||
|
|
||||||
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
|
||||||
|
@ -2,7 +2,7 @@ TEMPLATE = subdirs
|
|||||||
|
|
||||||
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_imageplot
|
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_imageplot
|
||||||
|
|
||||||
|
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
||||||
|
|
||||||
jkqtplotter_simpletest_imageplot.file=$$PWD/jkqtplotter_simpletest_imageplot.pro
|
jkqtplotter_simpletest_imageplot.file=$$PWD/jkqtplotter_simpletest_imageplot.pro
|
||||||
jkqtplotter_simpletest_imageplot.depends = jkqtplotterlib
|
jkqtplotter_simpletest_imageplot.depends = jkqtplotterlib
|
||||||
|
|
||||||
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
|
||||||
|
@ -2,7 +2,7 @@ TEMPLATE = subdirs
|
|||||||
|
|
||||||
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_imageplot_modifier
|
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_imageplot_modifier
|
||||||
|
|
||||||
|
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
||||||
|
|
||||||
jkqtplotter_simpletest_imageplot_modifier.file=$$PWD/jkqtplotter_simpletest_imageplot_modifier.pro
|
jkqtplotter_simpletest_imageplot_modifier.file=$$PWD/jkqtplotter_simpletest_imageplot_modifier.pro
|
||||||
jkqtplotter_simpletest_imageplot_modifier.depends = jkqtplotterlib
|
jkqtplotter_simpletest_imageplot_modifier.depends = jkqtplotterlib
|
||||||
|
|
||||||
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
|
||||||
|
@ -2,7 +2,7 @@ TEMPLATE = subdirs
|
|||||||
|
|
||||||
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_imageplot_nodatastore
|
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_imageplot_nodatastore
|
||||||
|
|
||||||
|
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
||||||
|
|
||||||
jkqtplotter_simpletest_imageplot_nodatastore.file=$$PWD/jkqtplotter_simpletest_imageplot_nodatastore.pro
|
jkqtplotter_simpletest_imageplot_nodatastore.file=$$PWD/jkqtplotter_simpletest_imageplot_nodatastore.pro
|
||||||
jkqtplotter_simpletest_imageplot_nodatastore.depends = jkqtplotterlib
|
jkqtplotter_simpletest_imageplot_nodatastore.depends = jkqtplotterlib
|
||||||
|
|
||||||
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
|
||||||
|
@ -2,7 +2,7 @@ TEMPLATE = subdirs
|
|||||||
|
|
||||||
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_logaxes
|
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_logaxes
|
||||||
|
|
||||||
|
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
||||||
|
|
||||||
jkqtplotter_simpletest_logaxes.file=$$PWD/jkqtplotter_simpletest_logaxes.pro
|
jkqtplotter_simpletest_logaxes.file=$$PWD/jkqtplotter_simpletest_logaxes.pro
|
||||||
jkqtplotter_simpletest_logaxes.depends = jkqtplotterlib
|
jkqtplotter_simpletest_logaxes.depends = jkqtplotterlib
|
||||||
|
|
||||||
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
|
||||||
|
@ -2,7 +2,7 @@ TEMPLATE = subdirs
|
|||||||
|
|
||||||
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_stackedbars
|
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_stackedbars
|
||||||
|
|
||||||
|
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
||||||
|
|
||||||
jkqtplotter_simpletest_stackedbars.file=$$PWD/jkqtplotter_simpletest_stackedbars.pro
|
jkqtplotter_simpletest_stackedbars.file=$$PWD/jkqtplotter_simpletest_stackedbars.pro
|
||||||
jkqtplotter_simpletest_stackedbars.depends = jkqtplotterlib
|
jkqtplotter_simpletest_stackedbars.depends = jkqtplotterlib
|
||||||
|
|
||||||
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
|
||||||
|
@ -2,7 +2,7 @@ TEMPLATE = subdirs
|
|||||||
|
|
||||||
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_symbols_and_errors
|
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_symbols_and_errors
|
||||||
|
|
||||||
|
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
||||||
|
|
||||||
jkqtplotter_simpletest_symbols_and_errors.file=$$PWD/jkqtplotter_simpletest_symbols_and_errors.pro
|
jkqtplotter_simpletest_symbols_and_errors.file=$$PWD/jkqtplotter_simpletest_symbols_and_errors.pro
|
||||||
jkqtplotter_simpletest_symbols_and_errors.depends = jkqtplotterlib
|
jkqtplotter_simpletest_symbols_and_errors.depends = jkqtplotterlib
|
||||||
|
|
||||||
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
|
||||||
|
@ -2,7 +2,7 @@ TEMPLATE = subdirs
|
|||||||
|
|
||||||
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_symbols_and_styles
|
SUBDIRS += jkqtplotterlib jkqtplotter_simpletest_symbols_and_styles
|
||||||
|
|
||||||
|
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
||||||
|
|
||||||
jkqtplotter_simpletest_symbols_and_styles.file=$$PWD/jkqtplotter_simpletest_symbols_and_styles.pro
|
jkqtplotter_simpletest_symbols_and_styles.file=$$PWD/jkqtplotter_simpletest_symbols_and_styles.pro
|
||||||
jkqtplotter_simpletest_symbols_and_styles.depends = jkqtplotterlib
|
jkqtplotter_simpletest_symbols_and_styles.depends = jkqtplotterlib
|
||||||
|
|
||||||
jkqtplotterlib.file = ../../lib/jkqtplotterlib.pro
|
|
||||||
|
Loading…
Reference in New Issue
Block a user