What I mean is, when you pick a widget from the widget panel, it pops under your cursor for you do drag and drop it on a form.
I managed to have it the size I want once dropped on the form.
But I can't seem to control its size during the "drag" faze from the panel to the form.
For example, if you look at the worldclock example, once you click on it, it apears in a 200x200 rectangle.
If you look at the code, TT just made resize(200,200) in the clocks constructor.
There is no other sizing code in the plugin inplementation or the base clock class (that I can see).
If I use resize() in my plugins base class it has no effect, nor when I do it in the plugin implementation class in createWidget().
So far I could not find what am I doing wrong, and why in my case the widget ignores the resize() in the costructor when it clearly works for the clock example...

Thanks.

EDIT: no layout is used for the widget, its just one widget.