]> git.tdb.fi Git - libs/gltk.git/blob - source/widget.cpp
Initial revision
[libs/gltk.git] / source / widget.cpp
1 #include <msp/gl/matrix.h>
2 #include <msp/gl/transform.h>
3 #include "resources.h"
4 #include "widget.h"
5
6 #include <iostream>
7 using namespace std;
8
9 namespace Msp {
10 namespace GLtk {
11
12 void Widget::set_position(int x, int y)
13 {
14         geom.x=x;
15         geom.y=y;
16 }
17
18 void Widget::set_size(unsigned w, unsigned h)
19 {
20         geom.w=w;
21         geom.h=h;
22 }
23
24 void Widget::set_geometry(const Geometry &g)
25 {
26         geom=g;
27 }
28
29 void Widget::set_style(const string &s)
30 {
31         style_name=s;
32         update_style();
33 }
34
35 void Widget::render() const
36 {
37         if(!style)
38                 throw InvalidState("Attempt to render a widget without a style");
39
40         GL::push_matrix();
41         GL::translate(geom.x, geom.y, 0);
42         for(PartSeq::const_iterator i=style->get_parts().begin(); i!=style->get_parts().end(); ++i)
43                 render_part(*i);
44         GL::pop_matrix();
45 }
46
47 bool Widget::button_press(int x, int y, unsigned btn)
48 {
49         if(x>=geom.x && y>=geom.y && x<geom.x+static_cast<int>(geom.w) && y<geom.y+static_cast<int>(geom.h))
50         {
51                 on_button_press(x, y, btn);
52                 return true;
53         }
54
55         return false;
56 }
57
58 bool Widget::button_release(int x, int y, unsigned btn)
59 {
60         if(x>=geom.x && y>=geom.y && x<geom.x+static_cast<int>(geom.w) && y<geom.y+static_cast<int>(geom.h))
61         {
62                 on_button_release(x, y, btn);
63                 return true;
64         }
65
66         return false;
67 }
68
69 Widget::Widget(const Resources &r):
70         res(r),
71         style(0),
72         state(NORMAL)
73 { }
74
75 void Widget::update_style()
76 {
77         style=&res.get_style(get_class(), style_name);
78 }
79
80 void Widget::render_part(const Part &part) const
81 {
82         render_graphic(part);
83 }
84
85 void Widget::render_graphic(const Part &part) const
86 {
87         GL::push_matrix();
88         part.render(geom, state);
89         GL::pop_matrix();
90 }
91
92 void Widget::render_text(const Part &part, const string &text) const
93 {
94         const GL::Font *const font=style->get_font();
95
96         const float font_size=font->get_default_size();
97         unsigned text_w=static_cast<unsigned>(font->get_string_width(text)*font_size);
98
99         GL::push_matrix();
100
101         part.get_alignment().apply(geom, text_w, static_cast<unsigned>(font_size));
102         GL::scale_uniform(font_size);
103
104         const Color &color=style->get_font_color();
105         glColor3f(color.r, color.g, color.b);
106         font->draw_string(text);
107         glColor3f(1, 1, 1);
108
109         GL::pop_matrix();
110 }
111
112 } // namespace GLtk
113 } // namespace Msp