Qt透明窗体

在日常使用的软件中,一些弹窗效果、设置透明度的都可以使用设置透明窗体的方法实现。
在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 窗体半透明
可以看到窗体的边缘部分

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值