How to create shadow for shadow in Qt style sheet?

My impression of cast shadows before was what was done with images that already have shadows. Until I found out that you can create shadows for shadows using simple CSS. How do you create shadows for shadows though in a Qt style sheet?

+6
c ++ user-interface stylesheet qt
source share
1 answer

For QFrame, you can set the frameShadow property, but not through CSS. QGraphicsView has the QGraphicsDropShadowEffect class. In QWebView you can use all the CSS effects, but just use the CSS stylesheet in the content.

+2
source share

All Articles