2014-04-09 21:01:57 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=8 sts=4 et sw=4 tw=99:
|
|
|
|
*
|
|
|
|
* gYAxis Implementation
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
|
|
* distribution for more details. */
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-04-23 17:20:38 +00:00
|
|
|
#include "Graphs/gYAxis.h"
|
|
|
|
|
2011-07-19 15:31:51 +00:00
|
|
|
#include <QDebug>
|
2014-04-23 17:20:38 +00:00
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#include "Graphs/glcommon.h"
|
|
|
|
#include "Graphs/gGraph.h"
|
|
|
|
#include "Graphs/gGraphView.h"
|
2013-10-26 13:59:37 +00:00
|
|
|
#include "SleepLib/profiles.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-08-25 10:38:42 +00:00
|
|
|
gXGrid::gXGrid(QColor col)
|
2014-04-17 05:55:38 +00:00
|
|
|
: Layer(NoChannel)
|
2011-08-25 10:38:42 +00:00
|
|
|
{
|
2011-10-21 05:50:31 +00:00
|
|
|
Q_UNUSED(col)
|
2011-12-11 12:13:38 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
m_major_color = QColor(180, 180, 180, 64);
|
2011-12-11 13:57:07 +00:00
|
|
|
//m_major_color=QColor(180,180,180,92);
|
2014-04-17 05:55:38 +00:00
|
|
|
m_minor_color = QColor(230, 230, 230, 64);
|
|
|
|
m_show_major_lines = true;
|
|
|
|
m_show_minor_lines = true;
|
2011-08-25 10:38:42 +00:00
|
|
|
}
|
|
|
|
gXGrid::~gXGrid()
|
|
|
|
{
|
|
|
|
}
|
2014-05-07 19:52:59 +00:00
|
|
|
void gXGrid::paint(QPainter &painter, gGraph &w, int left, int top, int width, int height)
|
2011-08-25 10:38:42 +00:00
|
|
|
{
|
2014-04-17 05:55:38 +00:00
|
|
|
int x, y;
|
2011-08-25 10:38:42 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
EventDataType miny, maxy;
|
2011-08-25 10:38:42 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (w.zoomY() == 0 && PROFILE.appearance->allowYAxisScaling()) {
|
|
|
|
miny = w.physMinY();
|
|
|
|
maxy = w.physMaxY();
|
2013-10-25 23:11:37 +00:00
|
|
|
} else {
|
2014-04-17 05:55:38 +00:00
|
|
|
miny = w.min_y;
|
|
|
|
maxy = w.max_y;
|
2013-10-25 23:11:37 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (miny < 0) { // even it up if it's starts negative
|
|
|
|
miny = -MAX(fabs(miny), fabs(maxy));
|
2013-10-25 23:11:37 +00:00
|
|
|
}
|
2011-08-25 10:38:42 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
w.roundY(miny, maxy);
|
2011-09-23 03:54:48 +00:00
|
|
|
|
2011-10-21 05:50:31 +00:00
|
|
|
//EventDataType dy=maxy-miny;
|
2011-08-25 10:38:42 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (height < 0) { return; }
|
2011-08-25 10:38:42 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
static QString fd = "0";
|
|
|
|
GetTextExtent(fd, x, y);
|
2011-08-25 10:38:42 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
double max_yticks = round(height / (y + 14.0)); // plus spacing between lines
|
2011-11-30 06:01:38 +00:00
|
|
|
//double yt=1/max_yticks;
|
2011-08-25 10:38:42 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
double mxy = MAX(fabs(maxy), fabs(miny));
|
|
|
|
double mny = miny;
|
|
|
|
|
|
|
|
if (miny < 0) {
|
|
|
|
mny = -mxy;
|
2011-08-25 10:38:42 +00:00
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
double rxy = mxy - mny;
|
2011-11-30 06:01:38 +00:00
|
|
|
|
|
|
|
int myt;
|
2014-04-17 05:55:38 +00:00
|
|
|
bool fnd = false;
|
|
|
|
|
|
|
|
for (myt = max_yticks; myt >= 1; myt--) {
|
|
|
|
float v = rxy / float(myt);
|
|
|
|
|
|
|
|
if (float(v) == int(v)) {
|
|
|
|
fnd = true;
|
2011-11-30 06:01:38 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
if (fnd) { max_yticks = myt; }
|
2011-11-30 06:01:38 +00:00
|
|
|
else {
|
2014-04-17 05:55:38 +00:00
|
|
|
max_yticks = 2;
|
2011-11-30 06:01:38 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
double yt = 1 / max_yticks;
|
2011-08-25 10:38:42 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
double ymult = height / rxy;
|
2011-08-25 10:38:42 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
double min_ytick = rxy * yt;
|
2011-08-25 10:38:42 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
float ty, h;
|
|
|
|
|
|
|
|
if (min_ytick <= 0) {
|
2011-12-13 08:51:56 +00:00
|
|
|
qDebug() << "min_ytick error in gXGrid::paint() in" << w.title();
|
2011-08-25 10:38:42 +00:00
|
|
|
return;
|
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
if (min_ytick >= 1000000) {
|
|
|
|
min_ytick = 100;
|
2011-08-25 10:38:42 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
for (double i = miny; i <= maxy + min_ytick - 0.00001; i += min_ytick) {
|
|
|
|
ty = (i - miny) * ymult;
|
|
|
|
h = top + height - ty;
|
|
|
|
|
2011-08-25 10:38:42 +00:00
|
|
|
if (m_show_major_lines && (i > miny)) {
|
2014-05-07 19:52:59 +00:00
|
|
|
painter.setPen(QPen(m_major_color,1,Qt::DashDotDotLine));
|
|
|
|
painter.drawLine(left, h, left + width, h);
|
2011-08-25 10:38:42 +00:00
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
double z = (min_ytick / 4) * ymult;
|
|
|
|
double g = h;
|
|
|
|
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
g += z;
|
|
|
|
|
|
|
|
if (g > top + height) { break; }
|
|
|
|
|
2011-08-30 17:22:54 +00:00
|
|
|
//if (vertcnt>=maxverts) {
|
2014-04-17 05:55:38 +00:00
|
|
|
// qWarning() << "vertarray bounds exceeded in gYAxis for " << w.title() << "graph" << "MinY =" <<miny << "MaxY =" << maxy << "min_ytick=" <<min_ytick;
|
|
|
|
// break;
|
|
|
|
// }
|
2011-08-25 10:38:42 +00:00
|
|
|
if (m_show_minor_lines) {// && (i > miny)) {
|
2014-05-07 19:52:59 +00:00
|
|
|
painter.setPen(QPen(m_minor_color,1,Qt::DashDotDotLine));
|
|
|
|
painter.drawLine(left, g, left + width, g);
|
2011-08-29 07:13:58 +00:00
|
|
|
}
|
2011-08-25 10:38:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
gYAxis::gYAxis(QColor col)
|
2014-04-17 05:55:38 +00:00
|
|
|
: Layer(NoChannel)
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
2014-04-17 05:55:38 +00:00
|
|
|
m_line_color = col;
|
|
|
|
m_text_color = col;
|
|
|
|
m_textureID = 0;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
m_yaxis_scale = 1;
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
|
|
|
gYAxis::~gYAxis()
|
|
|
|
{
|
|
|
|
}
|
2014-05-07 19:52:59 +00:00
|
|
|
void gYAxis::paint(QPainter &painter, gGraph &w, int left, int top, int width, int height)
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
2013-10-25 10:39:30 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
int x, y; //,yh=0;
|
2011-09-23 03:54:48 +00:00
|
|
|
|
2013-01-18 08:37:17 +00:00
|
|
|
//Todo: clean this up as there is a lot of duplicate code between the sections
|
|
|
|
|
2013-09-10 10:14:54 +00:00
|
|
|
if (0) {//w.graphView()->usePixmapCache()) {
|
2014-04-17 05:55:38 +00:00
|
|
|
/* if (w.invalidate_yAxisImage) {
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (!m_image.isNull()) {
|
|
|
|
w.graphView()->deleteTexture(m_textureID);
|
|
|
|
m_image=QImage();
|
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
if (height<0) return;
|
|
|
|
if (height>2000) return;
|
|
|
|
|
|
|
|
int labelW=0;
|
|
|
|
|
|
|
|
EventDataType miny=w.min_y;
|
|
|
|
EventDataType maxy=w.max_y;
|
|
|
|
|
|
|
|
if (miny<0) { // even it up if it's starts negative
|
|
|
|
miny=-MAX(fabs(miny),fabs(maxy));
|
|
|
|
}
|
|
|
|
|
|
|
|
w.roundY(miny,maxy);
|
|
|
|
|
|
|
|
EventDataType dy=maxy-miny;
|
|
|
|
static QString fd="0";
|
|
|
|
GetTextExtent(fd,x,y);
|
|
|
|
yh=y;
|
|
|
|
|
|
|
|
m_image=QImage(width,height+y+4,QImage::Format_ARGB32_Premultiplied);
|
|
|
|
|
|
|
|
m_image.fill(Qt::transparent);
|
|
|
|
QPainter paint(&m_image);
|
|
|
|
|
|
|
|
|
|
|
|
double max_yticks=round(height / (y+14.0)); // plus spacing between lines
|
|
|
|
|
|
|
|
double mxy=MAX(fabs(maxy),fabs(miny));
|
|
|
|
double mny=miny;
|
|
|
|
if (miny<0) {
|
|
|
|
mny=-mxy;
|
|
|
|
}
|
|
|
|
|
|
|
|
double rxy=mxy-mny;
|
|
|
|
|
|
|
|
int myt;
|
|
|
|
bool fnd=false;
|
|
|
|
for (myt=max_yticks;myt>2;myt--) {
|
|
|
|
float v=rxy/float(myt);
|
|
|
|
if (v==int(v)) {
|
|
|
|
fnd=true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (fnd) max_yticks=myt;
|
|
|
|
double yt=1/max_yticks;
|
|
|
|
|
|
|
|
double ymult=height/rxy;
|
|
|
|
|
|
|
|
double min_ytick=rxy*yt;
|
|
|
|
|
|
|
|
float ty,h;
|
|
|
|
|
|
|
|
if (min_ytick<=0) {
|
|
|
|
qDebug() << "min_ytick error in gYAxis::paint() in" << w.title();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (min_ytick>=1000000) {
|
|
|
|
min_ytick=100;
|
|
|
|
}
|
|
|
|
|
|
|
|
//lines=w.backlines();
|
|
|
|
|
|
|
|
for (double i=miny; i<=maxy+min_ytick-0.00001; i+=min_ytick) {
|
|
|
|
ty=(i - miny) * ymult;
|
|
|
|
if (dy<5) {
|
|
|
|
fd=Format(i*m_yaxis_scale,2);
|
|
|
|
} else {
|
|
|
|
fd=Format(i*m_yaxis_scale,1);
|
|
|
|
}
|
|
|
|
|
|
|
|
GetTextExtent(fd,x,y);
|
|
|
|
|
|
|
|
if (x>labelW) labelW=x;
|
|
|
|
h=(height-2)-ty;
|
|
|
|
h+=yh;
|
|
|
|
#ifndef Q_OS_MAC
|
|
|
|
// stupid pixel alignment rubbish, I really should be using floats..
|
|
|
|
h+=1;
|
|
|
|
#endif
|
|
|
|
if (h<0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
paint.setBrush(Qt::black);
|
|
|
|
paint.drawText(width-8-x,h+y/2,fd);
|
|
|
|
|
|
|
|
paint.setPen(m_line_color);
|
|
|
|
paint.drawLine(width-4,h,width,h);
|
|
|
|
|
|
|
|
double z=(min_ytick/4)*ymult;
|
|
|
|
double g=h;
|
|
|
|
for (int i=0;i<3;i++) {
|
|
|
|
g+=z;
|
|
|
|
if (g>height+yh) break;
|
|
|
|
paint.drawLine(width-3,g,width,g);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
paint.end();
|
|
|
|
m_image=QGLWidget::convertToGLFormat(m_image);
|
|
|
|
m_textureID=w.graphView()->bindTexture(m_image,GL_TEXTURE_2D,GL_RGBA,QGLContext::NoBindOption);
|
|
|
|
w.invalidate_yAxisImage=false;
|
2013-01-18 06:19:54 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (!m_image.isNull()) {
|
|
|
|
glEnable(GL_BLEND);
|
|
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
|
|
|
glEnable(GL_TEXTURE_2D);
|
|
|
|
w.graphView()->drawTexture(QPoint(left,(top+height)-m_image.height()+5),m_textureID);
|
|
|
|
glDisable(GL_TEXTURE_2D);
|
|
|
|
glDisable(GL_BLEND);
|
2013-01-18 06:19:54 +00:00
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
*/
|
|
|
|
} else {
|
|
|
|
if (height < 0) { return; }
|
2013-01-18 06:19:54 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (height > 2000) { return; }
|
2011-11-30 06:01:38 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
int labelW = 0;
|
2011-11-30 06:01:38 +00:00
|
|
|
|
2013-10-25 15:25:13 +00:00
|
|
|
EventDataType miny;
|
|
|
|
EventDataType maxy;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (w.zoomY() == 0 && PROFILE.appearance->allowYAxisScaling()) {
|
|
|
|
miny = w.physMinY();
|
|
|
|
maxy = w.physMaxY();
|
2013-10-25 15:25:13 +00:00
|
|
|
} else {
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
miny = w.min_y;
|
|
|
|
maxy = w.max_y;
|
2013-10-25 15:25:13 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (miny < 0) { // even it up if it's starts negative
|
|
|
|
miny = -MAX(fabs(miny), fabs(maxy));
|
2013-10-25 15:25:13 +00:00
|
|
|
}
|
|
|
|
}
|
2013-01-15 19:15:20 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
w.roundY(miny, maxy);
|
|
|
|
|
|
|
|
EventDataType dy = maxy - miny;
|
|
|
|
|
|
|
|
static QString fd = "0";
|
|
|
|
GetTextExtent(fd, x, y);
|
2013-01-15 19:15:20 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
double max_yticks = round(height / (y + 14.0)); // plus spacing between lines
|
2013-01-15 19:15:20 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
double mxy = MAX(fabs(maxy), fabs(miny));
|
|
|
|
double mny = miny;
|
2013-01-18 06:19:54 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (miny < 0) {
|
|
|
|
mny = -mxy;
|
2011-09-04 12:25:11 +00:00
|
|
|
}
|
2011-09-04 13:09:21 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
double rxy = mxy - mny;
|
2011-10-30 07:08:18 +00:00
|
|
|
|
2013-01-18 06:19:54 +00:00
|
|
|
int myt;
|
2014-04-17 05:55:38 +00:00
|
|
|
bool fnd = false;
|
|
|
|
|
|
|
|
for (myt = max_yticks; myt > 2; myt--) {
|
|
|
|
float v = rxy / float(myt);
|
|
|
|
|
|
|
|
if (v == int(v)) {
|
|
|
|
fnd = true;
|
2013-01-18 06:19:54 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (fnd) { max_yticks = myt; }
|
2013-01-17 22:28:58 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
double yt = 1 / max_yticks;
|
|
|
|
|
|
|
|
double ymult = height / rxy;
|
|
|
|
|
|
|
|
double min_ytick = rxy * yt;
|
2013-01-18 06:19:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
//if (dy>5) {
|
|
|
|
// min_ytick=round(min_ytick);
|
|
|
|
//} else {
|
|
|
|
|
|
|
|
//}
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
float ty, h;
|
2013-01-18 06:19:54 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (min_ytick <= 0) {
|
2013-01-18 06:19:54 +00:00
|
|
|
qDebug() << "min_ytick error in gYAxis::paint() in" << w.title();
|
|
|
|
return;
|
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
if (min_ytick >= 1000000) {
|
|
|
|
min_ytick = 100;
|
2013-01-18 06:19:54 +00:00
|
|
|
}
|
|
|
|
|
2014-05-07 19:52:59 +00:00
|
|
|
painter.setPen(m_line_color);
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
for (double i = miny; i <= maxy + min_ytick - 0.00001; i += min_ytick) {
|
|
|
|
ty = (i - miny) * ymult;
|
|
|
|
|
|
|
|
if (dy < 5) {
|
|
|
|
fd = Format(i * m_yaxis_scale, 2);
|
2013-01-18 06:19:54 +00:00
|
|
|
} else {
|
2014-04-17 05:55:38 +00:00
|
|
|
fd = Format(i * m_yaxis_scale, 1);
|
2013-01-18 06:19:54 +00:00
|
|
|
}
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
GetTextExtent(fd, x, y); // performance bottleneck..
|
|
|
|
|
|
|
|
if (x > labelW) { labelW = x; }
|
|
|
|
|
|
|
|
h = top + height - ty;
|
|
|
|
|
|
|
|
if (h < top) { continue; }
|
|
|
|
|
|
|
|
w.renderText(fd, left + width - 8 - x, (h + (y / 2.0)), 0, m_text_color, defaultfont);
|
|
|
|
|
2014-05-07 19:52:59 +00:00
|
|
|
painter.drawLine(left + width - 4, h, left + width, h);
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
double z = (min_ytick / 4) * ymult;
|
|
|
|
double g = h;
|
|
|
|
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
g += z;
|
2013-01-18 06:19:54 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
if (g > top + height) { break; }
|
2013-01-18 06:19:54 +00:00
|
|
|
|
2014-05-07 19:52:59 +00:00
|
|
|
painter.drawLine(left + width - 3, g, left + width, g);
|
2011-08-07 08:52:12 +00:00
|
|
|
}
|
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
const QString gYAxis::Format(EventDataType v, int dp)
|
|
|
|
{
|
|
|
|
return QString::number(v, 'f', dp);
|
2011-11-30 06:01:38 +00:00
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
bool gYAxis::mouseMoveEvent(QMouseEvent *event, gGraph *graph)
|
2011-09-05 13:26:10 +00:00
|
|
|
{
|
2014-04-17 05:55:38 +00:00
|
|
|
if (!p_profile->appearance->graphTooltips()) {
|
2013-10-26 13:59:37 +00:00
|
|
|
return false;
|
2014-04-17 05:55:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int x = event->x();
|
|
|
|
int y = event->y();
|
2013-10-26 13:59:37 +00:00
|
|
|
|
2013-10-25 10:39:30 +00:00
|
|
|
if (!graph->units().isEmpty()) {
|
2014-04-17 05:55:38 +00:00
|
|
|
graph->ToolTip(graph->units(), x, y - 20, 0);
|
|
|
|
// graph->redraw();
|
2013-10-25 10:39:30 +00:00
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
2013-10-25 10:39:30 +00:00
|
|
|
return true;
|
2011-09-05 13:26:10 +00:00
|
|
|
}
|
2011-11-30 06:01:38 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
bool gYAxis::mouseDoubleClickEvent(QMouseEvent *event, gGraph *graph)
|
2013-10-25 10:39:30 +00:00
|
|
|
{
|
|
|
|
if (graph) {
|
2014-04-17 05:55:38 +00:00
|
|
|
// int x=event->x();
|
|
|
|
// int y=event->y();
|
|
|
|
short z = (graph->zoomY() + 1) % gGraph::maxZoomY;
|
2013-10-25 15:25:13 +00:00
|
|
|
graph->setZoomY(z);
|
|
|
|
qDebug() << "Mouse double clicked for" << graph->title() << z;
|
2013-10-25 10:39:30 +00:00
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
2013-10-25 10:39:30 +00:00
|
|
|
Q_UNUSED(event);
|
|
|
|
return false;
|
|
|
|
}
|
2011-11-30 06:01:38 +00:00
|
|
|
|
|
|
|
const QString gYAxisTime::Format(EventDataType v, int dp)
|
|
|
|
{
|
2014-04-17 05:55:38 +00:00
|
|
|
int h = int(v) % 24;
|
|
|
|
int m = int(v * 60) % 60;
|
|
|
|
int s = int(v * 3600) % 60;
|
2011-11-30 06:01:38 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
char pm[3] = {"am"};
|
2011-11-30 06:01:38 +00:00
|
|
|
|
|
|
|
if (show_12hr) {
|
2011-12-07 12:52:25 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
h >= 12 ? pm[0] = 'p' : pm[0] = 'a';
|
2011-11-30 06:01:38 +00:00
|
|
|
h %= 12;
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
if (h == 0) { h = 12; }
|
2011-11-30 06:01:38 +00:00
|
|
|
} else {
|
2014-04-17 05:55:38 +00:00
|
|
|
pm[0] = 0;
|
2011-11-30 06:01:38 +00:00
|
|
|
}
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
if (dp > 2) { return QString().sprintf("%02i:%02i:%02i%s", h, m, s, pm); }
|
|
|
|
|
|
|
|
return QString().sprintf("%i:%02i%s", h, m, pm);
|
2011-11-30 06:01:38 +00:00
|
|
|
}
|
2011-12-21 04:25:01 +00:00
|
|
|
|
|
|
|
const QString gYAxisWeight::Format(EventDataType v, int dp)
|
|
|
|
{
|
2011-12-21 14:24:09 +00:00
|
|
|
Q_UNUSED(dp)
|
2014-04-17 05:55:38 +00:00
|
|
|
return weightString(v, m_unitsystem);
|
2011-12-21 04:25:01 +00:00
|
|
|
}
|