views:

139

answers:

1

How do I create with QT 4 a window that remains anchored to the desktop as a widget ? (Eg like Yahoo Widgets or Google Gadgets).

I intend to give the same characteristics of a widget to a normal window:

  1. Remove the edges (easy to do)
  2. The window must not move (how ?)
  3. Must be displayed only when other windows are minimized (how ?)
A: 

I don't think Qt provides anything specific to do this. You will need to create and manage your own window but you can use QDesktopWidget to help.

Troubadour