Qt中如何控制主窗口在屏幕下的显示位置

Qt中怎么控制主窗口在屏幕上的显示位置?
我希望能运行程序的时候,能把400*900的主窗口默认显示在屏幕的右侧靠边。查了win api函数,倒是有
HRESULT SetWindowPosition(
  long Left,
  long Top,
  long Width,
  long Height
);
似乎能实现。

请问,Qt 自身的类库,是否有这方面的函数?


------解决方案--------------------
探讨
不好意思,已经找到了。

C/C++ code


void move ( int x, int y );
void move ( const QPoint & );

------解决方案--------------------
setGeometry(x,y,width,heigth);
这个可以控制显示的位置与 大小
------解决方案--------------------
探讨

setGeometry(x,y,width,heigth);
这个可以控制显示的位置与 大小