]> git.tdb.fi Git - libs/gltk.git/blob - source/widget.cpp
7f153eb5540e4462bfa57645fab2b113cfb06a8b
[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 Widget::Widget(const Resources &r):
48         res(r),
49         style(0),
50         state(NORMAL)
51 { }
52
53 void Widget::update_style()
54 {
55         style=&res.get_style(get_class(), style_name);
56 }
57
58 void Widget::render_part(const Part &part) const
59 {
60         render_graphic(part);
61 }
62
63 void Widget::render_graphic(const Part &part) const
64 {
65         GL::push_matrix();
66         part.render(geom, state);
67         GL::pop_matrix();
68 }
69
70 void Widget::render_text(const Part &part, const string &text) const
71 {
72         const GL::Font *const font=style->get_font();
73
74         const float font_size=font->get_default_size();
75         unsigned text_w=static_cast<unsigned>(font->get_string_width(text)*font_size);
76
77         GL::push_matrix();
78
79         part.get_alignment().apply(geom, text_w, static_cast<unsigned>(font->get_ascent()*font_size));
80         GL::scale_uniform(font_size);
81
82         const Color &color=style->get_font_color();
83         glColor3f(color.r, color.g, color.b);
84         font->draw_string(text);
85         glColor3f(1, 1, 1);
86
87         GL::pop_matrix();
88 }
89
90 } // namespace GLtk
91 } // namespace Msp