2011-08-25 06:11:44 +00:00
|
|
|
/*
|
2011-06-26 08:30:44 +00:00
|
|
|
glcommon GL code & font stuff
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
2011-08-25 06:11:44 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-08-30 17:22:54 +00:00
|
|
|
#include <cmath>
|
2011-06-26 08:30:44 +00:00
|
|
|
#include "glcommon.h"
|
|
|
|
|
2011-12-17 14:38:15 +00:00
|
|
|
#ifdef BUILD_WITH_MSVC
|
|
|
|
double round(double number)
|
|
|
|
{
|
|
|
|
return number < 0.0 ? ceil(number - 0.5) : floor(number+0.5);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
void RoundedRectangle(int x,int y,int w,int h,int radius,const QColor color)
|
|
|
|
{
|
|
|
|
|
|
|
|
glEnable(GL_BLEND);
|
|
|
|
glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
|
|
|
|
glColor4ub(color.red(),color.green(),color.blue(),color.alpha());
|
|
|
|
|
|
|
|
glBegin(GL_POLYGON);
|
|
|
|
glVertex2i(x+radius,y);
|
|
|
|
glVertex2i(x+w-radius,y);
|
|
|
|
for(float i=(float)M_PI*1.5f;i<M_PI*2;i+=0.1f)
|
|
|
|
glVertex2f(x+w-radius+cos(i)*radius,y+radius+sin(i)*radius);
|
|
|
|
glVertex2i(x+w,y+radius);
|
|
|
|
glVertex2i(x+w,y+h-radius);
|
|
|
|
for(float i=0;i<(float)M_PI*0.5f;i+=0.1f)
|
|
|
|
glVertex2f(x+w-radius+cos(i)*radius,y+h-radius+sin(i)*radius);
|
|
|
|
glVertex2i(x+w-radius,y+h);
|
|
|
|
glVertex2i(x+radius,y+h);
|
|
|
|
for(float i=(float)M_PI*0.5f;i<M_PI;i+=0.1f)
|
|
|
|
glVertex2f(x+radius+cos(i)*radius,y+h-radius+sin(i)*radius);
|
|
|
|
glVertex2i(x,y+h-radius);
|
|
|
|
glVertex2i(x,y+radius);
|
|
|
|
for(float i=(float)M_PI;i<M_PI*1.5f;i+=0.1f)
|
|
|
|
glVertex2f(x+radius+cos(i)*radius,y+radius+sin(i)*radius);
|
|
|
|
glEnd();
|
|
|
|
|
|
|
|
glDisable(GL_BLEND);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LinedRoundedRectangle(int x,int y,int w,int h,int radius,int lw,QColor color)
|
|
|
|
{
|
2011-08-01 12:29:17 +00:00
|
|
|
//glDisable(GL_TEXTURE_2D);
|
2011-06-26 08:30:44 +00:00
|
|
|
glShadeModel(GL_SMOOTH);
|
|
|
|
glEnable(GL_BLEND);
|
|
|
|
glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA);
|
|
|
|
glColor4ub(color.red(),color.green(),color.blue(),color.alpha());
|
|
|
|
glLineWidth((GLfloat)lw);
|
|
|
|
|
|
|
|
glBegin(GL_LINE_STRIP);
|
|
|
|
for(float i=(float)M_PI;i<=1.5f*M_PI;i+=0.1f)
|
|
|
|
glVertex2f(radius*cos(i)+x+radius,radius*sin(i)+y+radius);
|
|
|
|
for(float i=1.5f*(float)M_PI;i<=2*M_PI; i+=0.1f)
|
|
|
|
glVertex2f(radius*cos(i)+x+w-radius,radius*sin(i)+y+radius);
|
|
|
|
for(float i=0;i<=0.5f*M_PI; i+=0.1f)
|
|
|
|
glVertex2f(radius*cos(i)+x+w-radius,radius*sin(i)+y+h-radius);
|
|
|
|
for(float i=0.5f*(float)M_PI;i<=M_PI;i+=0.1f)
|
|
|
|
glVertex2f(radius*cos(i)+x+radius,radius*sin(i)+y+h-radius);
|
|
|
|
glVertex2i(x,y+radius);
|
|
|
|
glEnd();
|
|
|
|
|
2011-08-01 12:29:17 +00:00
|
|
|
//glEnable(GL_TEXTURE_2D);
|
2011-06-26 08:30:44 +00:00
|
|
|
glDisable(GL_BLEND);
|
|
|
|
}
|
|
|
|
|