X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fwidget.cpp;h=48b647b71850b464bf8da56f102170d64bc8cf6e;hb=30780ba31be92c977a68a2a9103eeba87747d530;hp=7d608f2ce8d32980505f3fde37e8df91a3bb35de;hpb=c435423919a20a87d100e1ee4cd1fc6ce223040c;p=libs%2Fgltk.git diff --git a/source/widget.cpp b/source/widget.cpp index 7d608f2..48b647b 100644 --- a/source/widget.cpp +++ b/source/widget.cpp @@ -5,8 +5,10 @@ Copyright © 2007 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ +#include #include #include +#include #include "panel.h" #include "resources.h" #include "widget.h" @@ -67,10 +69,20 @@ void Widget::set_visible(bool v) parent->child_hidden(*this); } +void Widget::set_focus() +{ + if(!parent) + throw InvalidState("No parent"); + if(!visible) + throw InvalidState("Can't set focus on invisible widget"); + + parent->grab_focus(*this); +} + 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); @@ -107,13 +119,33 @@ void Widget::render_text(const Part &part, const string &text) const GL::scale_uniform(font_size); const GL::Color &color=style->get_font_color(); - glColor3f(color.r, color.g, color.b); - font->draw_string(text); - glColor3f(1, 1, 1); + 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();