X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fwidget.cpp;h=84d042573ec18aff63230eca34cada3e150dbab3;hb=8a0058b5b90bb7e9eacf1646142f4d73b426fd66;hp=f03ed39652f5d56f416f28707674a9a8da5d3f54;hpb=e7bc29984e91ee36555d6a4e4eece22170d10ba4;p=libs%2Fgltk.git diff --git a/source/widget.cpp b/source/widget.cpp index f03ed39..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,38 +58,41 @@ void Widget::set_style(const string &s) update_style(); } +void Widget::set_visible(bool v) +{ + if(v==visible) + return; + + visible=v; + + signal_visibility_changed.emit(visible); +} + +void Widget::set_focus() +{ + if(!parent) + throw InvalidState("No parent"); + if(!visible) + throw InvalidState("Can't set focus on invisible widget"); + + signal_request_focus.emit(); +} + void Widget::render() const { if(!style) - throw InvalidState("Attempt to render a widget without a 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) - render_part(*i); - GL::pop_matrix(); -} - -Widget::Widget(const Resources &r): - res(r), - style(0), - state(NORMAL) -{ } - -void Widget::update_style() -{ - string sname=get_class(); - if(!style_name.empty()) { - sname+='-'; - sname+=style_name; + if(i->get_name().empty()) + render_graphic(*i); + else + render_special(*i); } - style=&res.get