PDA

View Full Version : Customize the title bar of the application



Alundra
1st November 2013, 19:15
Hi all,
My question is quite simple, look at visual studio, the title bar of the app is customized :
http://nprogramming.files.wordpress.com/2012/09/vs_editor_2012_3.png
I mean the close button, the title bar color, the icon of the app.
If you launch an app from qt you got title bar like basic OS application.
My question is : "Is it possible to customize the title bar of the application" ?
Will that be for all title bar of the application as well as QDialog window ?
Thanks for the help

anda_skoa
1st November 2013, 20:33
The window decoration is usually provided by the windowing system, i.e. in order to ensure consistency across apps.

Applications that want to violate that consistency can ask the windowing system to not draw a decoration and then do it themselves.

Cheers,
_