I need to create a simple app, that on given events create a few graphical elements on your screen. Basically I need to be able to write directly on top of all windows, with my application running in background (it shouldn't have a window entry in the taskbar).
I am using Qt, but an external library would do too..
In Qt I was trying to create a transparent widget with the Qt::FramelessWindowHint flag and the Qt::WA_TranslucentBackground window attribute. But unfortunately this still adds a window entry in the taskbar.
What is wrong in my approach to the problem or Is there a better solution?