Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Added notes from e-mail on desktop window implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 15, 2009
1 parent 8181960 commit d9c34d8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions TODO
Expand Up @@ -31,6 +31,17 @@
* Create extended set of (negative) error codes and have the API functions document and return them.
* Add clipboard support (from scrap demo)
* Add support for desktop windows?
With Qt, I can do this by the codes as follows:

setAttribute(Qt::WA_X11NetWmWindowTypeDesktop);
setWindowFlags(Qt::SplashScreen);

Qt::WindowFlags flags = 0;
flags |= Qt::FramelessWindowHint;
flags |= Qt::Tool;
flags |= Qt::WindowStaysOnBottomHint;

setWindowFlags(flags);
* Add support for synchronizing 2D updates with vblank (bug #406)
* Add support for real-time threads and/or adjusting thread priority?
* Add support for querying the number of CPUs and binding threads to them?
Expand Down

0 comments on commit d9c34d8

Please sign in to comment.