1 /*
2  * Label.h
3  * Copyright (C) 2007 by Bryan Duff <duff0097@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18  * USA
19  */
20 #ifndef _GUI_LABEL_H_
21 #define _GUI_LABEL_H_
22 
23 #include "Quaternions.h"
24 #include <GL/gl.h>
25 #include <GL/glu.h>
26 
27 #include <string>
28 
29 #include "Window.h"
30 #include "Colors.h"
31 
32 class Label:public Window {
33 public:
34   Label();
~Label()35   ~Label() {
36     text.clear();
37   };
38   void setLabel(float xpos, float ypos, float size);
39   void setFont(int set, GLuint _base, GLuint _texture);
40   void setText(const char *text);
41   void setColor(Color _color);
42   void draw();
43 
44 private:
45   GLfloat xpos, ypos;
46   float size;
47   string text;
48   Color color;
49 
50   //Font stuff
51   int fontSet;
52   GLuint texture;
53   GLuint base;
54 };
55 
56 #endif
57