3 This file is part of libmspgltk
4 Copyright © 2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
8 #include <msp/gl/immediate.h>
9 #include <msp/gl/matrix.h>
10 #include <msp/gl/transform.h>
11 #include <msp/strings/formatter.h>
13 #include "resources.h"
21 Widget::Widget(const Resources &r):
32 parent->remove(*this);
35 void Widget::set_position(int x, int y)
42 void Widget::set_size(unsigned w, unsigned h)
49 void Widget::set_geometry(const Geometry &g)
55 void Widget::set_style(const string &s)
61 void Widget::set_visible(bool v)
68 if(!visible && parent)
69 parent->child_hidden(*this);
72 void Widget::render() const
75 throw InvalidState(format("Attempt to render a widget without a style (class=\"%s\")", get_class()));
78 GL::translate(geom.x, geom.y, 0);
79 for(PartSeq::const_iterator i=style->get_parts().begin(); i!=style->get_parts().end(); ++i)
81 if(i->get_name().empty())
89 void Widget::render_graphic(const Part &part) const
92 part.render(geom, state);
96 void Widget::render_text(const Part &part, const string &text) const
98 const GL::Font *const font=style->get_font();
99 const float font_size=font->get_default_size();
102 rgeom.w=static_cast<unsigned>(font->get_string_width(text)*font_size);
103 rgeom.h=static_cast<unsigned>((font->get_ascent()-font->get_descent())*font_size);
104 rgeom.y=static_cast<int>(-font->get_descent()*font_size);
105 part.get_alignment().apply(rgeom, geom, part.get_margin());
108 GL::translate(rgeom.x, rgeom.y, 0);
109 GL::scale_uniform(font_size);
111 const GL::Color &color=style->get_font_color();
112 GL::Immediate imm((GL::COLOR4_UBYTE, GL::TEXCOORD2, GL::VERTEX2));
113 imm.color(color.r, color.g, color.b);
114 font->draw_string(text, imm);
119 void Widget::pointer_enter()
124 void Widget::pointer_leave()
129 void Widget::focus_in()
134 void Widget::focus_out()
139 void Widget::update_style()
141 string sname=get_class();
142 if(!style_name.empty())
147 style=res.get<Style>(sname);
151 void Widget::set_parent(Panel *p)
154 throw InvalidState("Widget is already in a Panel");
160 void Widget::set_parent(Widget &w, Panel *p)
166 Widget::Loader::Loader(Widget &w):
169 add("position", &Loader::position);
170 add("size", &Loader::size);
171 add("style", &Loader::style);
172 add("visible", &Widget::visible);
175 void Widget::Loader::position(int x, int y)
177 wdg.set_position(x, y);
180 void Widget::Loader::size(unsigned w, unsigned h)
185 void Widget::Loader::style(const string &s)