| Thread title | Replies | Last modified |
|---|---|---|
| Writing an example for setting widget's geometry | 1 | 02:36, 10 January 2013 |
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.