/******************************************************************** glcommon GL code & font stuff Copyright (c)2011 Mark Watkins License: GPL *********************************************************************/ #include #include #include #include #include "glcommon.h" #include "SleepLib/profiles.h" #include bool _graph_init=false; QFont * defaultfont=NULL; QFont * mediumfont=NULL; QFont * bigfont=NULL; GLshort *vertex_array[num_vert_arrays]={NULL}; bool evil_intel_graphics_chip=false; // Must be called from a thread inside the application. void InitGraphs() { if (!_graph_init) { defaultfont=new QFont("FreeSans",10); bigfont=new QFont("FreeSans",35); mediumfont=new QFont("FreeSans",18); for (int i=0;i TextQue; void DrawTextQueue() { for (unsigned i=0;iwid,t->text,t->x,t->y,t->angle,*t->color,t->font); delete TextQue[i]; } TextQue.clear(); } void DrawText(gGraphWindow & wid, QString text, int x, int y, float angle, QColor color,QFont *font) { TextQue.push_back(new TextBuffer(&wid,text,x,y,angle,&color,font)); } 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