OS X transparent panels in Qt?
Is there a way to create a transparent panel as described by the Apple Human Interface Guidelines in Qt 4.6 (built for OS X 10.6/Cocoa)?
If not, are there any alternatives similar in look and function?
I understand that Qt is a cross platform toolkit开发者_如何学编程, but I want my application to feel as "native" as possible.
I haven't tried on Mac, but this should be possible. Here's what the QWidget docs say:
Creating Translucent Windows
Since Qt 4.5, it has been possible to create windows with translucent regions on window systems that support compositing.
To enable this feature in a top-level widget, set its
Qt::WA_TranslucentBackground
attribute withsetAttribute()
and ensure that its background is painted with non-opaque colors in the regions you want to be partially transparent.Platform notes:
X11: This feature relies on the use of an X server that supports ARGB visuals and a compositing window manager.
Windows: The widget needs to have the
Qt::FramelessWindowHint
window flag set for the translucency to work.
I imagine your panel is a top-level widget, so make sure to set Qt::WA_TranslucentBackground
as directed in the above.
精彩评论