我希望透明QDialog
的背景,以便透过窗口看到。我问,因为我想使用半透明的背景图像,创建一个“圆角窗口”错觉。使用setOpacity
对我来说不是一个选项,因为我希望所有小部件都保持完全不透明。
有没有办法在不使用本机OS API的情况下实现这一目标?
答案 0 :(得分:10)
使用QWidget::setAttribute(Qt::WA_TranslucentBackground);
。请注意,这也需要设置Qt::FramelessWindowHint
。
此示例适用于我:
#include <QtGui>
class Dialog : public QDialog
{
public:
Dialog() : QDialog(0, Qt::FramelessWindowHint) // hint is required on Windows
{
QPushButton *button = new QPushButton("Some Button", this);
setAttribute(Qt::WA_TranslucentBackground);
}
};
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Dialog d;
d.show();
return a.exec();
}
关于圆角,QWidget::setMask()
会对您有帮助。
编辑:在回复下面评论中的另一个问题时,这是一个使用资源文件中的图像并覆盖QWidget::paintEvent()
的工作示例:
#include <QtGui>
class Dialog : public QDialog
{
public:
Dialog() : QDialog(0, Qt::FramelessWindowHint) // hint is required on Windows
{
setFixedSize(500, 500); // size of the background image
QPushButton *button = new QPushButton("Some Button", this);
setAttribute(Qt::WA_TranslucentBackground);
}
protected:
void paintEvent(QPaintEvent *event)
{
QPainter painter(this);
painter.drawImage(QRectF(0, 0, 500, 500), QImage(":/resources/image.png"));
}
};
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Dialog d;
d.show();
return a.exec();
}