X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fwidget.cpp;h=9dbd9da5ba2df7f60f44d824a8a7989d11d917dd;hb=b51fd94242badcd3807a39c339979f4f358120cd;hp=3f11af6d32e08bb707fc5b78bedd9b8aab964cf1;hpb=2b70e8801c43875ed3f4135bdd0141265cff0312;p=libs%2Fgltk.git diff --git a/source/widget.cpp b/source/widget.cpp index 3f11af6..9dbd9da 100644 --- a/source/widget.cpp +++ b/source/widget.cpp @@ -1,7 +1,5 @@ -#include #include -#include -#include +#include #include "container.h" #include "resources.h" #include "root.h" @@ -35,6 +33,7 @@ void Widget::set_position(int x, int y) geom.x = x; geom.y = y; on_geometry_change(); + rebuild(); } void Widget::set_size(unsigned w, unsigned h) @@ -42,6 +41,7 @@ void Widget::set_size(unsigned w, unsigned h) geom.w = w; geom.h = h; on_geometry_change(); + rebuild(); } void Widget::autosize() @@ -61,12 +61,13 @@ void Widget::set_geometry(const Geometry &g) { geom = g; on_geometry_change(); + rebuild(); } void Widget::set_parent(Container *p) { if(parent && p) - throw InvalidState("Widget is already in a Container"); + throw hierarchy_error("widget already parented"); else if(p==parent) return; parent = p; @@ -97,11 +98,12 @@ void Widget::update_style() sname += style_name; } - style = root->get_resources().get