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::set_focus()
75 throw InvalidState("No parent");
77 throw InvalidState("Can't set focus on invisible widget");
79 parent->grab_focus(*this);
82 void Widget::render() const
85 throw InvalidState(format("Attempt to render a widget without a style (class=\"%s\")", get_class()));
88 GL::translate(geom.x, geom.y, 0);
89 for(PartSeq::const_iterator i=style->get_parts().begin(); i!=style->get_parts().end(); ++i)
91 if(i->get_name().empty())
99 void Widget::render_graphic(const Part &part) const
102 part.render(geom, state);
106 void Widget::render_text(const Part &part, const string &text) const
108 const GL::Font *const font=style->get_font();
109 const float font_size=font->get_default_size();
112 rgeom.w=static_cast<unsigned>(font->get_string_width(text)*font_size);
113 rgeom.h=static_cast<unsigned>((font->get_ascent()-font->get_descent())*font_size);
114 rgeom.y=static_cast<int>(-font->get_descent()*font_size);
115 part.get_alignment().apply(rgeom, geom, part.get_margin());
118 GL::translate(rgeom.x, rgeom.y, 0);
119 GL::scale_uniform(font_size);
121 const GL::Color &color=style->get_font_color();
122 GL::Immediate imm((GL::COLOR4_UBYTE, GL::TEXCOORD2, GL::VERTEX2));
123 imm.color(color.r, color.g, color.b);
124 font->draw_string(text, imm);
129 void Widget::pointer_enter()
134 void Widget::pointer_leave()
139 void Widget::focus_in()
144 void Widget::focus_out()
149 void Widget::update_style()
151 string sname=get_class();
152 if(!style_name.empty())
157 style=res.get<Style>(sname);
161 void Widget::set_parent(Panel *p)
164 throw InvalidState("Widget is already in a Panel");
170 void Widget::set_parent(Widget &w, Panel *p)
176 Widget::Loader::Loader(Widget &w):
179 add("position", &Loader::position);
180 add("size", &Loader::size);
181 add("style", &Loader::style);
182 add("visible", &Widget::visible);
185 void Widget::Loader::position(int x, int y)
187 wdg.set_position(x, y);
190 void Widget::Loader::size(unsigned w, unsigned h)
195 void Widget::Loader::style(const string &s)