X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fwidget.cpp;h=e929940f46655d97e98af351bece30151b0e7317;hb=e5f9004b672b038e43cf2b20c3fc9327f2b55ffd;hp=1442151262121406319c9bdf737f5f2f54a34d56;hpb=73afd124ab87e8bace98db55517a56c797a9b8c7;p=libs%2Fgltk.git diff --git a/source/widget.cpp b/source/widget.cpp index 1442151..e929940 100644 --- a/source/widget.cpp +++ b/source/widget.cpp @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of libmspgltk -Copyright © 2007-2011 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #include #include #include @@ -30,7 +23,11 @@ Widget::Widget(): Widget::~Widget() { if(parent) - parent->remove(*this); + { + Container *p = parent; + parent = 0; + p->remove(*this); + } } void Widget::set_position(int x, int y) @@ -47,6 +44,19 @@ void Widget::set_size(unsigned w, unsigned h) on_geometry_change(); } +void Widget::autosize() +{ + geom.w = 0; + geom.h = 0; + const Style::PartSeq &parts = style->get_parts(); + for(Style::PartSeq::const_iterator i=parts.begin(); i!=parts.end(); ++i) + if(i->get_name().empty()) + { + geom.w = max(geom.w, i->get_geometry().w); + geom.h = max(geom.h, i->get_geometry().h); + } +} + void Widget::set_geometry(const Geometry &g) { geom = g; @@ -56,7 +66,9 @@ void Widget::set_geometry(const Geometry &g) 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; on_reparent(); @@ -85,10 +97,11 @@ void Widget::update_style() sname += style_name; } - style = root->get_resources().get