]> git.tdb.fi Git - libs/gltk.git/blob - source/widget.cpp
e1538dec221bedc9a190c5904421ce6e1d16d87c
[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         visible(true)
52 { }
53
54 void Widget::update_style()
55 {
56         string sname=get_class();
57         if(!style_name.empty())
58         {
59                 sname+='-';
60                 sname+=style_name;
61         }
62         style=res.get<Style>(sname);
63 }
64
65 void Widget::render_part(const Part &part) const
66 {
67         render_graphic(part);
68 }
69
70 void Widget::render_graphic(const Part &part) const
71 {
72         GL::push_matrix();
73         part.render(geom, state);
74         GL::pop_matrix();
75 }
76
77 void Widget::render_text(const Part &part, const string &text) const
78 {
79         const GL::Font *const font=style->get_font();
80
81         const float font_size=font->get_default_size();
82         unsigned text_w=static_cast<unsigned>(font->get_string_width(text)*font_size);
83
84         GL::push_matrix();
85
86         part.get_alignment().apply(geom, text_w, static_cast<unsigned>(font->get_ascent()*font_size));
87         GL::scale_uniform(font_size);
88
89         const GL::Color &color=style->get_font_color();
90         glColor3f(color.r, color.g, color.b);
91         font->draw_string(text);
92         glColor3f(1, 1, 1);
93
94         GL::pop_matrix();
95 }
96
97
98 Widget::Loader::Loader(Widget &w):
99         wdg(w)
100 {
101         add("position", &Loader::position);
102         add("size",     &Loader::size);
103         add("style",    &Loader::style);
104         add("visible",  &Widget::visible);
105 }
106
107 void Widget::Loader::position(int x, int y)
108 {
109         wdg.set_position(x, y);
110 }
111
112 void Widget::Loader::size(unsigned w, unsigned h)
113 {
114         wdg.set_size(w, h);
115 }
116
117 void Widget::Loader::style(const string &s)
118 {
119         wdg.set_style(s);
120 }
121
122 } // namespace GLtk
123 } // namespace Msp