mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-15 10:05:47 +08:00
some more fixes for reorganization
This commit is contained in:
parent
d708424f8a
commit
9988df1506
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,5 +1,5 @@
|
||||
*.user
|
||||
/test/build-*
|
||||
build-*
|
||||
|
||||
|
||||
# C++ objects and libs
|
||||
@ -84,3 +84,6 @@ Sicherungskopie_*.cdr
|
||||
Thumbs.db
|
||||
*.prf
|
||||
*.exe
|
||||
/doc/html
|
||||
.qmake.stash
|
||||
moc_predefs.h
|
||||
|
@ -1102,3 +1102,51 @@ bool JKQTPxyGraphErrors::errorUsesColumn(int c)
|
||||
{
|
||||
return (c==xErrorColumn)||(c==yErrorColumn)||(c==xErrorColumnLower)||(c==yErrorColumnLower);
|
||||
}
|
||||
|
||||
void JKQTPxyGraphErrors::set_xErrorColumn(int __value) {
|
||||
if (this->xErrorColumn != __value) {
|
||||
this->xErrorColumn = __value;
|
||||
if (xErrorColumn>=0 && xErrorStyle==JKQTPnoError) xErrorStyle=JKQTPerrorBars;
|
||||
}
|
||||
}
|
||||
|
||||
void JKQTPxyGraphErrors::set_xErrorColumnLower(int __value) {
|
||||
if (this->xErrorColumnLower != __value) {
|
||||
this->xErrorColumnLower = __value;
|
||||
if (xErrorColumnLower>=0 && xErrorStyle==JKQTPnoError) xErrorStyle=JKQTPerrorBars;
|
||||
} \
|
||||
}
|
||||
|
||||
void JKQTPxyGraphErrors::set_yErrorColumn(int __value) {
|
||||
if (this->yErrorColumn != __value) {
|
||||
this->yErrorColumn = __value;
|
||||
if (yErrorColumn>=0 && yErrorStyle==JKQTPnoError) yErrorStyle=JKQTPerrorBars;
|
||||
}
|
||||
}
|
||||
|
||||
void JKQTPxyGraphErrors::set_yErrorColumnLower(int __value) {
|
||||
if (this->yErrorColumnLower != __value) {
|
||||
this->yErrorColumnLower = __value;
|
||||
if (yErrorColumnLower>=0 && yErrorStyle==JKQTPnoError) yErrorStyle=JKQTPerrorBars;
|
||||
}
|
||||
}
|
||||
|
||||
void JKQTPxyGraphErrors::set_xErrorColumn(size_t __value)
|
||||
{
|
||||
set_xErrorColumn(static_cast<int>(__value));
|
||||
}
|
||||
|
||||
void JKQTPxyGraphErrors::set_xErrorColumnLower(size_t __value)
|
||||
{
|
||||
set_xErrorColumnLower(static_cast<int>(__value));
|
||||
}
|
||||
|
||||
void JKQTPxyGraphErrors::set_yErrorColumn(size_t __value)
|
||||
{
|
||||
set_yErrorColumn(static_cast<int>(__value));
|
||||
}
|
||||
|
||||
void JKQTPxyGraphErrors::set_yErrorColumnLower(size_t __value)
|
||||
{
|
||||
set_yErrorColumnLower(static_cast<int>(__value));
|
||||
}
|
||||
|
@ -517,30 +517,14 @@ class LIB_EXPORT JKQTPxyGraphErrors: public JKQTPgraphErrors {
|
||||
/** \copydoc JKQTPgraphErrors::errorUsesColumn() */
|
||||
virtual bool errorUsesColumn(int c);
|
||||
|
||||
inline void set_xErrorColumn(int __value) {
|
||||
if (this->xErrorColumn != __value) { \
|
||||
this->xErrorColumn = __value; \
|
||||
if (xErrorColumn>=0 && xErrorStyle==JKQTPnoError) xErrorStyle=JKQTPerrorBars; \
|
||||
} \
|
||||
}
|
||||
inline void set_xErrorColumnLower(int __value) {
|
||||
if (this->xErrorColumnLower != __value) { \
|
||||
this->xErrorColumnLower = __value; \
|
||||
if (xErrorColumnLower>=0 && xErrorStyle==JKQTPnoError) xErrorStyle=JKQTPerrorBars; \
|
||||
} \
|
||||
}
|
||||
inline void set_yErrorColumn(int __value) {
|
||||
if (this->yErrorColumn != __value) { \
|
||||
this->yErrorColumn = __value; \
|
||||
if (yErrorColumn>=0 && yErrorStyle==JKQTPnoError) yErrorStyle=JKQTPerrorBars; \
|
||||
} \
|
||||
}
|
||||
inline void set_yErrorColumnLower(int __value) {
|
||||
if (this->yErrorColumnLower != __value) { \
|
||||
this->yErrorColumnLower = __value; \
|
||||
if (yErrorColumnLower>=0 && yErrorStyle==JKQTPnoError) yErrorStyle=JKQTPerrorBars; \
|
||||
} \
|
||||
}
|
||||
void set_xErrorColumn(int __value);
|
||||
void set_xErrorColumnLower(int __value);
|
||||
void set_yErrorColumn(int __value);
|
||||
void set_yErrorColumnLower(int __value);
|
||||
void set_xErrorColumn(size_t __value);
|
||||
void set_xErrorColumnLower(size_t __value);
|
||||
void set_yErrorColumn(size_t __value);
|
||||
void set_yErrorColumnLower(size_t __value);
|
||||
|
||||
protected:
|
||||
/** \brief the column that contains the error of the x-component of the datapoints */
|
||||
|
@ -10,7 +10,7 @@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
|
||||
TARGET = jkqtplotter_simpletest_barchart
|
||||
|
||||
# include JKQtPlotter source code
|
||||
include(../../jkqtplotter.pri)
|
||||
include(../../lib/jkqtplotter.pri)
|
||||
# here you can activate some debug options
|
||||
#DEFINES += SHOW_JKQTPLOTTER_DEBUG
|
||||
#DEFINES += JKQTBP_AUTOTIMER
|
||||
|
@ -10,7 +10,7 @@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
|
||||
TARGET = jkqtplotter_simpletest_stackedbars
|
||||
|
||||
# include JKQtPlotter source code
|
||||
include(../../jkqtplotter.pri)
|
||||
include(../../lib/jkqtplotter.pri)
|
||||
# here you can activate some debug options
|
||||
#DEFINES += SHOW_JKQTPLOTTER_DEBUG
|
||||
#DEFINES += JKQTBP_AUTOTIMER
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include <QApplication>
|
||||
#include "jkqtplotter.h"
|
||||
#include "jkqtplotter/jkqtplotter.h"
|
||||
|
||||
// number of datapoints:
|
||||
#define Ndata 10
|
||||
|
Loading…
Reference in New Issue
Block a user