X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fwidget.cpp;h=84d042573ec18aff63230eca34cada3e150dbab3;hb=8a0058b5b90bb7e9eacf1646142f4d73b426fd66;hp=e1aee846675d3b9e69e37b5d5039bd21f5baa92b;hpb=c062ca892fc6e10f74a76991b5d4b4349c046b5f;p=libs%2Fgltk.git diff --git a/source/widget.cpp b/source/widget.cpp index e1aee84..84d0425 100644 --- a/source/widget.cpp +++ b/source/widget.cpp @@ -1,29 +1,55 @@ +/* $Id$ + +This file is part of libmspgltk +Copyright © 2007-2009 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + +#include #include #include +#include +#include "panel.h" #include "resources.h" #include "widget.h" -#include using namespace std; namespace Msp { namespace GLtk { +Widget::Widget(const Resources &r): + res(r), + style(0), + state(NORMAL), + visible(true), + parent(0) +{ } + +Widget::~Widget() +{ + if(parent) + parent->remove(*this); +} + void Widget::set_position(int x, int y) { geom.x=x; geom.y=y; + on_geometry_change(); } void Widget::set_size(unsigned w, unsigned h) { geom.w=w; geom.h=h; + on_geometry_change(); } void Widget::set_geometry(const Geometry &g) { geom=g; + on_geometry_change(); } void Widget::set_style(const string &s) @@ -32,32 +58,41 @@ void Widget::set_style(const string &s) update_style(); } -void Widget::render() const +void Widget::set_visible(bool v) { - if(!style) - throw InvalidState("Attempt to render a widget without a style"); + if(v==visible) + return; - GL::push_matrix(); - GL::translate(geom.x, geom.y, 0); - for(PartSeq::const_iterator i=style->get_parts().begin(); i!=style->get_parts().end(); ++i) - render_part(*i); - GL::pop_matrix(); -} + visible=v; -Widget::Widget(const Resources &r): - res(r), - style(0), - state(NORMAL) -{ } + signal_visibility_changed.emit(visible); +} -void Widget::update_style() +void Widget::set_focus() { - style=&res.get_style(get_class(), style_name); + if(!parent) + throw InvalidState("No parent"); + if(!visible) + throw InvalidState("Can't set focus on invisible widget"); + + signal_request_focus.emit(); } -void Widget::render_part(const Part &part) const +void Widget::render() const { - render_graphic(part); + if(!style) + throw InvalidState(format("Attempt to render a widget without a style (class=\"%s\")", get_class())); + + GL::push_matrix(); + GL::translate(geom.x, geom.y, 0); + for(PartSeq::const_iterator i=style->get_parts().begin(); i!=style->get_parts().end(); ++i) + { + if(i->get_name().empty()) + render_graphic(*i); + else + render_special(*i); + } + GL::pop_matrix(); } void Widget::render_graphic(const Part &part) const @@ -70,22 +105,96 @@ void Widget::render_graphic(const Part &part) const void Widget::render_text(const Part &part, const string &text) const { const GL::Font *const font=style->get_font(); - const float font_size=font->get_default_size(); - unsigned text_w=static_cast(font->get_string_width(text)*font_size); - GL::push_matrix(); + Geometry rgeom; + rgeom.w=static_cast(font->get_string_width(text)*font_size); + rgeom.h=static_cast((font->get_ascent()-font->get_descent())*font_size); + rgeom.y=static_cast(-font->get_descent()*font_size); + part.get_alignment().apply(rgeom, geom, part.get_margin()); - part.get_alignment().apply(geom, text_w, static_cast(font_size)); + GL::push_matrix(); + GL::translate(rgeom.x, rgeom.y, 0); GL::scale_uniform(font_size); - const Color &color=style->get_font_color(); - glColor3f(color.r, color.g, color.b); - font->draw_string(text); - glColor3f(1, 1, 1); + const GL::Color &color=style->get_font_color(); + GL::Immediate imm((GL::COLOR4_UBYTE, GL::TEXCOORD2, GL::VERTEX2)); + imm.color(color.r, color.g, color.b); + font->draw_string(text, imm); GL::pop_matrix(); } +void Widget::pointer_enter() +{ + state|=HOVER; +} + +void Widget::pointer_leave() +{ + state&=~HOVER; +} + +void Widget::focus_in() +{ + state|=FOCUS; +} + +void Widget::focus_out() +{ + state&=~FOCUS; +} + +void Widget::update_style() +{ + string sname=get_class(); + if(!style_name.empty()) + { + sname+='-'; + sname+=style_name; + } + style=res.get