Hans
Hans

Reputation:

Qt: how to make a shadow to main window widget?

How to make a shadow to main window widget on windows using Qt?

Upvotes: 2

Views: 4271

Answers (2)

Jack
Jack

Reputation:

Solution to a related problem and many other qt questions can be found from the QT Center: http://www.qtcentre.org

Direct path to one solution that at least looks pretty good is: http://wiki.qtcentre.org/index.php?title=ARGB-Widgets

Upvotes: 2

user34247
user34247

Reputation: 21

Applications normally do not create shadows, that is up to the window manager. You could fake it by all sorts of evil hacks such as creating another borderless window that is the shadow color and put it under your main window.

Upvotes: 2

Related Questions