| Time | User | Comment | |
|---|---|---|---|
| 05:33, 21 August 2012 | Franklin (Talk | contribs) | New thread created | |
| 01:36, 10 January 2013 | Broulik (Talk | contribs) | New reply created | (Reply to Writing an example for setting widget's geometry) |
1. In the widget attribute "geometry", we should add an example about how to set up the geometry of a widget. It spent me quite some time trying
widget.writeConfig("geometry", "x,y,w,h")
and
widget.geometry = new QRectF(x,y,w,h)
which both were found by google, but both failed. Finally Aaron told me to use this way:
widget.geometry = QRectF(x, y, w, h)
and it worked. So I suggest to put this in the page.