OSCAR-code/Graphs/gFooBar.cpp
2011-08-26 16:01:03 +10:00

97 lines
2.0 KiB
C++

/*
gFooBar Implementation
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
*/
#include "gFooBar.h"
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;
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;
glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
glEnable(GL_BLEND);
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);
//glFlush();
}
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)
{
}
gFooBar::~gFooBar()
{
}
void gFooBar::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;
float h=top;
glLineWidth(1);
glBegin(GL_LINES);
w.qglColor(m_line_color);
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(3);
glBegin(GL_LINES);
w.qglColor(m_handle_color);
glVertex2f(start_px+px-4,h);
glVertex2f(start_px+py+4,h);
glEnd();
glLineWidth(1);
}