From bbe33ce67db77464b211669c85aca2ea4aecce4e Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Thu, 18 Dec 2008 09:11:24 +0000 Subject: [PATCH] fixes #2365 svn changeset:6260/svn branch:trunk --- .../ui/AbstractComponentContainer.java | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/com/itmill/toolkit/ui/AbstractComponentContainer.java b/src/com/itmill/toolkit/ui/AbstractComponentContainer.java index a0717579a4..51aca35d25 100644 --- a/src/com/itmill/toolkit/ui/AbstractComponentContainer.java +++ b/src/com/itmill/toolkit/ui/AbstractComponentContainer.java @@ -216,6 +216,36 @@ public abstract class AbstractComponentContainer extends AbstractComponent } } + @Override + public void setWidth(float width, int unit) { + if (getWidth() < 0 && width >= 0) { + // width becoming defined -> relative width children currently + // painted undefined may become defined + // TODO could be optimized(subtree of only those components + // which have undefined height due this component), currently just + // repaints whole subtree + requestRepaintAll(); + } else if (getWidth() >= 0 && width < 0) { + requestRepaintAll(); + } + super.setWidth(width, unit); + } + + @Override + public void setHeight(float height, int unit) { + if (getHeight() < 0 && height >= 0) { + // height becoming defined -> relative height childs currently + // painted undefined may become defined + // TODO this could be optimized (subtree of only those components + // which have undefined width due this component), currently just + // repaints whole + // subtree + } else if (getHeight() >= 0 && height < 0) { + requestRepaintAll(); + } + super.setHeight(height, unit); + } + public void requestRepaintAll() { requestRepaint(); for (Iterator childIterator = getComponentIterator(); childIterator -- 2.39.5