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:
|
|
|
|
*
|
|
|
|
* gFooBar 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-08-26 08:19:59 +00:00
|
|
|
#include <cmath>
|
2011-06-26 08:30:44 +00:00
|
|
|
#include "gFooBar.h"
|
2013-10-25 10:39:30 +00:00
|
|
|
#include "gYAxis.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-09-28 11:46:32 +00:00
|
|
|
gShadowArea::gShadowArea(QColor shadow_color,QColor line_color)
|
2011-12-21 17:00:19 +00:00
|
|
|
:Layer(NoChannel),m_shadow_color(shadow_color),m_line_color(line_color)
|
2011-08-25 09:00:19 +00:00
|
|
|
{
|
2012-01-02 15:34:17 +00:00
|
|
|
addVertexBuffer(quads=new gVertexBuffer(20,GL_QUADS));
|
|
|
|
addVertexBuffer(lines=new gVertexBuffer(20,GL_LINES));
|
2011-08-31 11:44:53 +00:00
|
|
|
quads->forceAntiAlias(true);
|
|
|
|
lines->setAntiAlias(true);
|
|
|
|
lines->setSize(2);
|
2011-08-25 09:00:19 +00:00
|
|
|
}
|
|
|
|
gShadowArea::~gShadowArea()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
void gShadowArea::paint(gGraph & w,int left, int top, int width, int height)
|
|
|
|
{
|
|
|
|
if (!m_visible) return;
|
|
|
|
double xx=w.max_x-w.min_x;
|
|
|
|
|
|
|
|
if (xx==0)
|
|
|
|
return;
|
|
|
|
|
2011-08-27 05:06:08 +00:00
|
|
|
int start_px=left-1;
|
2011-08-25 09:00:19 +00:00
|
|
|
int end_px=left+width;
|
|
|
|
|
2011-08-31 05:24:48 +00:00
|
|
|
//float h=top;
|
2011-08-25 09:00:19 +00:00
|
|
|
|
|
|
|
double rmx=w.rmax_x-w.rmin_x;
|
2012-01-05 11:35:23 +00:00
|
|
|
double px=((1.0/rmx)*(w.min_x-w.rmin_x))*width;
|
|
|
|
double py=((1.0/rmx)*(w.max_x-w.rmin_x))*width;
|
2011-08-25 09:00:19 +00:00
|
|
|
|
2012-01-02 15:34:17 +00:00
|
|
|
quads->add(start_px,top,start_px,top+height,start_px+px, top+height, start_px+px, top,m_shadow_color.rgba());
|
|
|
|
quads->add(start_px+py, top, start_px+py, top+height,end_px, top+height, end_px, top,m_shadow_color.rgba());
|
2011-08-27 05:06:08 +00:00
|
|
|
|
2012-01-02 15:34:17 +00:00
|
|
|
lines->add(start_px+px, top, start_px+py, top,m_line_color.rgba());
|
|
|
|
lines->add(start_px+px, top+height+1, start_px+py, top+height+1,m_line_color.rgba());
|
2011-08-25 09:00:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gFooBar::gFooBar(int offset,QColor handle_color,QColor line_color)
|
2011-12-21 17:00:19 +00:00
|
|
|
:Layer(NoChannel),m_offset(offset),m_handle_color(handle_color),m_line_color(line_color)
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
gFooBar::~gFooBar()
|
|
|
|
{
|
|
|
|
}
|
2011-08-25 09:00:19 +00:00
|
|
|
void gFooBar::paint(gGraph & w,int left, int top, int width, int height)
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
2011-10-21 05:50:31 +00:00
|
|
|
Q_UNUSED(top);
|
|
|
|
Q_UNUSED(left);
|
|
|
|
Q_UNUSED(width);
|
|
|
|
Q_UNUSED(height);
|
2011-06-26 08:30:44 +00:00
|
|
|
if (!m_visible) return;
|
|
|
|
|
|
|
|
double xx=w.max_x-w.min_x;
|
|
|
|
|
|
|
|
if (xx==0)
|
|
|
|
return;
|
|
|
|
|
2011-10-21 05:50:31 +00:00
|
|
|
//int start_px=left;
|
2011-08-31 05:24:48 +00:00
|
|
|
//int end_px=left+width;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-09-17 12:39:00 +00:00
|
|
|
//float h=top;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-08-26 08:18:14 +00:00
|
|
|
/* glLineWidth(1);
|
2011-08-26 06:01:03 +00:00
|
|
|
glBegin(GL_LINES);
|
2011-08-02 04:20:26 +00:00
|
|
|
w.qglColor(m_line_color);
|
2011-06-26 08:30:44 +00:00
|
|
|
glVertex2f(start_px, h);
|
|
|
|
glVertex2f(start_px+width, h);
|
2011-09-05 02:30:10 +00:00
|
|
|
glEnd();
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
double rmx=w.rmax_x-w.rmin_x;
|
|
|
|
double px=((1/rmx)*(w.min_x-w.rmin_x))*width;
|
|
|
|
double py=((1/rmx)*(w.max_x-w.rmin_x))*width;
|
|
|
|
|
2011-08-26 06:56:51 +00:00
|
|
|
int extra=0;
|
2011-08-26 08:19:18 +00:00
|
|
|
if (fabs(px-py)<2) extra=2;
|
2011-08-26 06:56:51 +00:00
|
|
|
|
2011-08-26 08:18:14 +00:00
|
|
|
int hh=25;
|
2011-08-26 06:56:51 +00:00
|
|
|
glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
|
|
|
|
glEnable(GL_BLEND);
|
|
|
|
glBegin(GL_QUADS);
|
|
|
|
|
2011-08-26 08:18:14 +00:00
|
|
|
w.qglColor(m_handle_color);
|
2011-08-26 06:56:51 +00:00
|
|
|
glVertex2f(start_px+px-extra,top-hh);
|
|
|
|
glVertex2f(start_px+py+extra,top-hh);
|
|
|
|
//glColor4ub(255,255,255,128);
|
2011-08-26 08:18:14 +00:00
|
|
|
glColor4ub(255,255,255,128);
|
2011-08-26 06:56:51 +00:00
|
|
|
glVertex2f(start_px+py+extra,top-hh/2.0);
|
|
|
|
glVertex2f(start_px+px-extra,top-hh/2.0);
|
|
|
|
// glColor4ub(255,255,255,128);
|
2011-08-26 08:18:14 +00:00
|
|
|
glColor4ub(255,255,255,128);
|
2011-08-26 06:56:51 +00:00
|
|
|
glVertex2f(start_px+px-extra,top-hh/2.0);
|
|
|
|
glVertex2f(start_px+py+extra,top-hh/2.0);
|
2011-08-26 08:18:14 +00:00
|
|
|
w.qglColor(m_handle_color);
|
|
|
|
// glColor4ub(192,192,192,128);
|
2011-08-26 06:56:51 +00:00
|
|
|
glVertex2f(start_px+py+extra,h);
|
|
|
|
glVertex2f(start_px+px-extra,h);
|
2011-06-26 08:30:44 +00:00
|
|
|
glEnd();
|
2011-08-26 06:56:51 +00:00
|
|
|
glDisable(GL_BLEND);
|
|
|
|
|
|
|
|
w.qglColor(m_handle_color);
|
|
|
|
glBegin(GL_LINE_LOOP);
|
|
|
|
glVertex2f(start_px+px-extra,top-hh);
|
|
|
|
glVertex2f(start_px+py+extra,top-hh);
|
|
|
|
glVertex2f(start_px+py+extra,h);
|
|
|
|
glVertex2f(start_px+px-extra,h);
|
|
|
|
glEnd();
|
|
|
|
|
2011-09-05 02:30:10 +00:00
|
|
|
glLineWidth(3);
|
2011-08-26 06:56:51 +00:00
|
|
|
glBegin(GL_LINES);
|
|
|
|
w.qglColor(m_handle_color);
|
|
|
|
glVertex2f(start_px+px-extra,h);
|
|
|
|
glVertex2f(start_px+py+extra,h);
|
2011-09-05 02:30:10 +00:00
|
|
|
glEnd();
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-09-05 02:30:10 +00:00
|
|
|
glLineWidth(1); */
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|