X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fwidget.cpp;h=2eade3913f4d9c9e4530675657873ee080a2d265;hb=6be5b834084fb3ab421b94b6c4ad8eece6bab754;hp=8674a138ab7b6cf240ff7510524c346e3265a77a;hpb=be8ea35fe6eabe4c68d2d337634f21c63c964265;p=libs%2Fgltk.git diff --git a/source/widget.cpp b/source/widget.cpp index 8674a13..2eade39 100644 --- a/source/widget.cpp +++ b/source/widget.cpp @@ -1,14 +1,35 @@ +/* $Id$ + +This file is part of libmspgltk +Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #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; @@ -32,6 +53,17 @@ void Widget::set_style(const string &s) update_style(); } +void Widget::set_visible(bool v) +{ + if(v==visible) + return; + + visible=v; + + if(!visible && parent) + parent->child_hidden(*this); +} + void Widget::render() const { if(!style) @@ -40,30 +72,13 @@ void Widget::render() const 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