在日常使用的软件中,一些弹窗效果、设置透明度的都可以使用设置透明窗体的方法实现。
在Qt中QWidget有一个方法
void QWidget::setAttribute(Qt::WidgetAttribute attribute, bool on = true)
Sets the attribute attribute on this widget if on is true; otherwise clears the attribute.
就可以设置窗体的很多属性,他的参数Qt::WidgetAttribute包含了很多不同
enum Qt::WidgetAttribute
This enum type is used to specify various widget attributes. Attributes are set and cleared with QWidget::setAttribute(), and queried with QWidget::testAttribute(), although some have special convenience functions which are mentioned below.
参数Qt::WA_TranslucentBackground则是设置窗体透明的枚举方法,下面是它的介绍
Indicates that the widget should have a translucent background, i.e., any non-opaque regions of the widgets will be translucent because the widget will have an alpha channel. Setting this flag causes WA_NoSystemBackground to be set. On Windows the widget also needs the Qt::FramelessWindowHint window flag to be set. This flag is set or cleared by the widget's author.
可知要实现窗体透明方法还需要设置Qt::FramelessWindowHint标志位。
实现代码
setAttribute(Qt::WA_TranslucentBackground, true);
//注意:设置此方法窗体无法移动
setWindowFlags(Qt::FramelessWindowHint);
图1 透明窗体
按钮和输入框都是窗体的子类(背景是桌面),可以看到效果还是很炫酷的,O(∩_∩)O~
设置透明度的方法之一
个人认为还是在paintEvent事件里比较好,外部可以挂接槽update更新窗口,如果是QPainter直接设置窗口到最后还是要调用paintEvent重绘控件。
简单的实现方法
void Widget::paintEvent(QPaintEvent *e)
{
QPainter p(this);
//QColor第四个参数就是透明度通道:0-255
p.fillRect(rect(), QColor(50,50,50,100));
QWidget::paintEvent(e);
}
此时效果如下
图2 窗体半透明
可以看到窗体的边缘部分