Make it possible to hide some of the grid lines.

Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Tomaz Canabrava 2014-02-15 22:54:41 -02:00 committed by Dirk Hohndel
parent 4699363a9e
commit 44a72b805c
3 changed files with 20 additions and 8 deletions

View file

@ -37,6 +37,7 @@ public:
void setTextColor(const QColor& color);
void animateChangeLine(const QLineF& newLine);
void setTextVisible(bool arg1);
void setLinesVisible(bool arg1);
void setLineSize(qreal lineSize);
int unitSystem;
public slots:
@ -57,6 +58,7 @@ protected:
double tick_size;
QColor textColor;
bool textVisibility;
bool lineVisibility;
double labelScale;
qreal line_size;
};