Is it possible to create a non-standard window with Qt? I mean that I want to create an application with rounded-corner windows and buttons with aqua-like effects. The principal thing is that the app must be beautiful, not compliant with any Windows or Mac GUI reference…
Can Qt do these things, or it is preferable to use another toolkit?
Is it possible to create a non-standard window with Qt? I mean that I
Share
You can use stylesheets to create a custom look for your buttons. Refer to the Qt documentation for some examples.
To create non-rectangular windows, use
QWidget::setMask. Again, the documentation features an example application demonstrating this functionality.