2011-08-07 06:21:09 +00:00
|
|
|
/*
|
2011-06-26 08:30:44 +00:00
|
|
|
gFooBar Implementation
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
2011-08-07 06:21:09 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#include "gFooBar.h"
|
|
|
|
|
2011-08-25 09:00:19 +00:00
|
|
|
gShadowArea::gShadowArea(QColor shadow_color)
|
|
|
|
:Layer(EmptyChannel),m_shadow_color(shadow_color)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
|
|
|
|
int start_px=left;
|
|
|
|
int end_px=left+width;
|
|
|
|
|
|
|
|
glDisable(GL_DEPTH_TEST);
|
|
|
|
float h=top;
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
glEnable(GL_BLEND);
|
|
|
|
glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
|
|
|
|
|
|
|
|
glBegin(GL_QUADS);
|
|
|
|
w.qglColor(m_shadow_color);
|
|
|
|
|
|
|
|
glVertex2f(start_px, top);
|
|
|
|
glVertex2f(start_px, top+height);
|
|
|
|
glVertex2f(start_px+px, top+height);
|
|
|
|
glVertex2f(start_px+px, top);
|
|
|
|
|
|
|
|
glVertex2f(start_px+py, top);
|
|
|
|
glVertex2f(start_px+py, top+height);
|
|
|
|
glVertex2f(end_px, top+height);
|
|
|
|
glVertex2f(end_px, top);
|
|
|
|
glEnd();
|
|
|
|
glDisable(GL_BLEND);
|
|
|
|
}
|
|
|
|
|
|
|
|
gFooBar::gFooBar(int offset,QColor handle_color,QColor line_color)
|
|
|
|
:Layer(EmptyChannel),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
|
|
|
{
|
|
|
|
if (!m_visible) return;
|
|
|
|
|
|
|
|
double xx=w.max_x-w.min_x;
|
|
|
|
|
|
|
|
if (xx==0)
|
|
|
|
return;
|
|
|
|
|
2011-08-25 09:00:19 +00:00
|
|
|
int start_px=left;
|
|
|
|
int end_px=left+width;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-06-28 09:19:35 +00:00
|
|
|
glDisable(GL_DEPTH_TEST);
|
2011-08-25 09:00:19 +00:00
|
|
|
float h=top;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
glLineWidth(1);
|
|
|
|
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);
|
|
|
|
glEnd();
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
glLineWidth(4);
|
|
|
|
glBegin(GL_LINES);
|
2011-08-02 04:20:26 +00:00
|
|
|
w.qglColor(m_handle_color);
|
2011-06-26 08:30:44 +00:00
|
|
|
glVertex2f(start_px+px-4,h);
|
|
|
|
glVertex2f(start_px+py+4,h);
|
|
|
|
glEnd();
|
|
|
|
|
|
|
|
glLineWidth(1);
|
|
|
|
|
|
|
|
}
|
|
|
|
|