* @brief Sets a window's geometry to the given rectangle. */
| 241 | * @brief Sets a window's geometry to the given rectangle. |
| 242 | */ |
| 243 | static void placeWindow(QQuickItem* win, int x, int y, int w, int h) |
| 244 | { |
| 245 | win->setX(x); |
| 246 | win->setY(y); |
| 247 | win->setWidth(w); |
| 248 | win->setHeight(h); |
| 249 | } |
| 250 | |
| 251 | /** |
| 252 | * @brief One window fills the available canvas area. |