Qt实现窗口吸附屏幕边缘 & 自动收缩

先看效果:

N年前的QQ就可以吸附到屏幕边缘,聊天时候非常方便,不用点击状态栏图标即可呼出QQ界面

自己尝试做了一个糙版的屏幕吸附效果。

关键代码:

cpp 复制代码
void Widget::mouseMoveEvent(QMouseEvent *e)
{
    int dx = e->globalX() - lastPoint_.x();
    int dy = e->globalY() - lastPoint_.y();

    int targetx,targety;
    bool enableAnimation = false;

    if(mousePress_ == false) {
        return;
    }

    //! 垂直方向
    if(this->y() < EdgeAttachMargin && this->y() != 0) {
        //! 吸附顶部
        targety = 0;
        enableAnimation = true;
    } else {
        targety = this->y();
    }

    //! 水平方向
    if(this->x() < EdgeAttachMargin && this->x() != 0) {
        //! 吸附左边
        enableAnimation = 1;
        targetx = 0;
    } else {
        int rightx = this->x()+this->width();
        if(rightx > (QApplication::desktop()->width()-EdgeAttachMargin) && rightx != QApplication::desktop()->width()) {
            //! 吸附右边
            targetx = QApplication::desktop()->width()-this->width();
            enableAnimation = 1;
        } else {
            targetx = this->x();
        }
    }

    if(1 == enableAnimation){
        if(targetx == 0) {
            hideType_ = HideType::to_xleft;
        } else if(targetx == QApplication::desktop()->width()-this->width()) {
            hideType_ = HideType::to_xright;
        } else if(targety == 0) {
            hideType_ = HideType::to_y;
        }

        startAnimation(QPoint(targetx,targety),QPoint(this->x(),this->y()));
    } else {
        if(hideType_ == HideType::xleft) {
            int adjustX = x();
            int adjustY = y() + dy;
            if(dx > EdgeAttachMargin) {
                adjustX = x() + dx;
                hideType_ = HideType::none;
                lastPoint_.rx() = e->globalX();
            }
            this->move(adjustX, adjustY);
            lastPoint_.ry() = e->globalY();
        } else if (hideType_ == HideType::xright) {
            int adjustX = x();
            int adjustY = y() + dy;
            if(dx < -EdgeAttachMargin) {
                adjustX = x() + dx;
                hideType_ = HideType::none;
                lastPoint_.rx() = e->globalX();
            }
            this->move(adjustX, adjustY);
            lastPoint_.ry() = e->globalY();
        } else if(hideType_ == HideType::y) {
            int adjustX = x() + dx;
            int adjustY = y();
            if(dy > EdgeAttachMargin) {
                adjustY = y() + dy;
                hideType_ = HideType::none;
                lastPoint_.ry() = e->globalY();
            }
            this->move(adjustX, adjustY);
            lastPoint_.rx() = e->globalX();
        } else {
            int adjustX = x() + dx;
            int adjustY = y() + dy;
            if(adjustX < 0) adjustX = 0;
            if(adjustX > QApplication::desktop()->width() - width()) adjustX = QApplication::desktop()->width() - width();
            if(adjustY < 0) adjustY = 0;
            if(adjustY > QApplication::desktop()->availableGeometry().height() - height()) adjustY = QApplication::desktop()->availableGeometry().height() - height();
            this->move(adjustX, adjustY);
            lastPoint_   = e->globalPos();
        }
    }
}

鼠标悬停展开 / 离去收缩功能,

主要依据void enterEvent(QEvent *event); & void leaveEvent(QEvent *event);两个函数展开

动画效果使用QPropertyAnimation进行,可以参见另一篇博文中的例子:https://blog.csdn.net/wisdomroc/article/details/135975578


全套代码链接:Qt实现窗口吸附屏幕边缘 & 自动收缩

相关推荐
Mr.Q3 小时前
OpenCV和Qt坐标系不一致问题
qt·opencv
重生之我是数学王子7 小时前
QT基础 编码问题 定时器 事件 绘图事件 keyPressEvent QT5.12.3环境 C++实现
开发语言·c++·qt
----云烟----16 小时前
QT中QString类的各种使用
开发语言·qt
「QT(C++)开发工程师」21 小时前
【qt版本概述】
开发语言·qt
一路冰雨1 天前
Qt打开文件对话框选择文件之后弹出两次
开发语言·qt
老赵的博客1 天前
QT 自定义界面布局要诀
开发语言·qt
码码哈哈0.01 天前
VSCode 2022 离线安装插件QT VSTOOl报错此扩展不能安装在任何当前安装的产品上。
ide·vscode·qt
feiyangqingyun1 天前
Qt/C++离线地图的加载和交互/可以离线使用/百度和天地图离线/支持手机上运行
c++·qt·qt天地图·qt离线地图·qt地图导航
gz94562 天前
windows下,用CMake编译qt项目,出现错误By not providing “FindQt5.cmake“...
开发语言·qt
「QT(C++)开发工程师」2 天前
Ubuntu 26.04 LTS 大升级:Qt 6 成为未来新引擎
qt