来自QFrame的Qt气球窗口

时间:2015-04-19 01:54:23

标签: c++ qt stylesheet qwidget qframe

我想在Qt中创建自己的Balloon窗口以获取提示。我首先创建一个带圆角的窗口。

我正在使用从QFrame继承的类。该类的构造函数包含:

this->setWindowFlags(Qt::Window | Qt::FramelessWindowHint);
Pal.setColor(QPalette::Background, Qt::yellow);
this->setAutoFillBackground(true);
this->setPalette(Pal);
this->setStyleSheet("QFrame {border-style: solid; border-width: 10px;"
                    "border-radius: 100px;"
                    "min-width: 10em; background-clip: padding; background-origin: content;}");

但是,在使用show()成员函数显示时,这不会创建圆角。我明白了:

enter image description here

如何摆脱那些矩形边缘并让它们变成透明色?

如果您需要任何其他信息,请询问。

2 个答案:

答案 0 :(得分:2)

如果我的猜测正确,您正在寻找类似setMask的内容!

基本上您需要做的是绘制一个具有所需半径的矩形,然后将其转换为QRegion以将其与setMask一起使用。见下面的一种方式:

QPainterPath path;
path.addRoundedRect(rect(), 100, 100);
QRegion region = QRegion(path.toFillPolygon().toPolygon());
setMask(region);

这将是结果:

enter image description here

希望有所帮助!

答案 1 :(得分:0)

auto frame = new QWidget(parent, Qt::Popup); 
frame->setStyleSheet("background-color: red; border: 1px solid green; border-radius: 6px;");

QPainterPath path; 
path.addRoundedRect(frame->rect(), 6, 6); 
frame->setMask(path.toFillPolygon().toPolygon());

frame->show();