资源简介
一个小测试程序,仿制360的悬浮球,难点在于对绘制玄的计算,其他都比较简单,并实现拖动已经鼠标离开后的隐藏,对隐藏时做了细节处理,详细看代码
代码片段和文件信息
#include “fballwidget.h“
#include
#include
#include
#include
#include
#include
#include
#include
FBallWidget::FBallWidget(QWidget *parent)
: QWidget(parent)
m_nMemOcc(20)
{
setWindowFlags(Qt::framelessWindowHint | Qt::WindowStaysOnTopHint | Qt::Tool);
setAttribute(Qt::WA_TranslucentBackground);
m_press = false;
m_bg.load(“:/images/background.png“);
QPixmap handle;
handle.load(“:/images/handle.png“);
QPixmap handlePress;
handlePress.load(“:/images/handlePress.png“);
m_handle = new QCursor(handle 0 0);
m_handlePress = new QCursor(handlePress 0 0);
this->setFixedSize(150 62);
setCursor(*m_handle);
int screenWidth = QApplication::desktop()->screenGeometry().width();
int screenHeight = QApplication::desktop()->screenGeometry().height();
this->move(screenWidth - 42 screenHeight * 0.618);
connect(this SIGNAL(notifyExitSoftSig()) this SLOT(OnCloseSlot()));
//动画延迟,否则会有抖动
m_timer = new QTimer(this);
connect(m_timer SIGNAL(timeout()) this SLOT(OnBallHideSlot()));
QTimer* timer = new QTimer(this);
connect(timer SIGNAL(timeout()) this SLOT(OnCountSlot()));
timer->start(500);
}
void FBallWidget::mousePressEvent(QMouseEvent *event)
{
if(event->button() == Qt::LeftButton)
{
m_press = true;
setCursor(*m_handlePress);
}
m_point = event->globalPos() - pos();
}
void FBallWidget::mouseReleaseEvent(QMouseEvent *)
{
setCursor(*m_handle);
m_press = false;
}
void FBallWidget::mouseMoveEvent(QMouseEvent *event)
{
if(m_press)
{
int screenWidth = QApplication::desktop()->screenGeometry().width();
QPoint move_pos = event->globalPos();
QPoint tarPos = move_pos - m_point;
if(tarPos.x() + this->width() > screenWidth)
{
tarPos.setX(screenWidth - this->width());
}
move(tarPos);
}
}
void FBallWidget::mouseDoubleClickEvent(QMouseEvent * event)
{
}
void FBallWidget::enterEvent(QEvent *event)
{
int screenWidth = QApplication::desktop()->screenGeometry().width();
if(this->geometry().x() + this->width() > screenWidth)
{
QRect rect = this->geometry();
rect.setX(screenWidth - this->width());
QPropertyAnimation *pAnimation = new QPropertyAnimation(this “geometry“);
pAnimation->setStartValue(this->geometry());
pAnimation->setEndValue(rect);
pAnimation->setEasingCurve(QEasingCurve::Linear);
pAnimation->start(QAbstractAnimation::DeleteWhenStopped);
}
isHide = true;
m_over = true;
update();
}
void FBallWidget::leaveEvent(QEvent *event)
{
// int screenWidth = QApplication::desktop()->screenGeometry().width();
// if(this->geometry().x() + this->width()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 9944 2018-09-09 16:13 MyFBallDemo\fballwidget.cpp
文件 938 2018-09-09 15:56 MyFBallDemo\fballwidget.h
文件 2798 2017-07-25 20:52 MyFBallDemo\images\background.png
文件 1871 2017-07-25 20:52 MyFBallDemo\images\handle.png
文件 1795 2017-07-25 20:52 MyFBallDemo\images\handlePress.png
文件 240 2018-09-09 11:25 MyFBallDemo\main.cpp
文件 455 2018-09-09 11:11 MyFBallDemo\MyFBallDemo.pro
文件 18577 2018-09-09 11:08 MyFBallDemo\MyFBallDemo.pro.user
文件 190 2018-09-09 11:23 MyFBallDemo\myfballdemo.qrc
文件 201 2018-09-09 11:08 MyFBallDemo\widget.cpp
文件 273 2018-09-09 11:08 MyFBallDemo\widget.h
文件 441 2018-09-09 11:08 MyFBallDemo\widget.ui
目录 0 2018-09-09 11:23 MyFBallDemo\images
目录 0 2018-09-09 16:13 MyFBallDemo
----------- --------- ---------- ----- ----
37723 14
相关资源
- 基于QT的网络聊天室+收发数据及文件
- qt数据画波形
- qt 实现ftp服务器源码
- VTK应用之VTK与Qt整合的
- qt实现的滑动设置时间自定义控件
- Qt的pro文件转VS的工程文件
- QT Qudpsocket 传送结构体数据
- Qt 使用多线程QThread实现进度条
- JasonQt_BaiduVop Demo
- Qt实现半透明不规则窗体的
- qtwinmigrate-2.8_1-opensource_qt5.7
- image_process.zip
- Qt 自绘波形图 心电图 的 实时显示
- Qt实现高级组织结构图
- Qt实现绘图工具
- Qt实现网络拓扑图
- QTtabBar+中文语言文件+win8主题
- CustomDelegate.rar
- Qt读取txt文件的内容,保存到数组,并
- 利用百度人脸识别API和pyqt5实现基于人
- QTTabBar 1038 中文汉化包 自己优化使用
- Qt条码生成器
- Qt QLocalServer QLocalSocket进程通信
- numberKeyBoard.rar
- 用Qt5实现QCamera摄像头的调用和监控
- Qt界面美化
- 基于Qt的通用态势显示平台的设计与实
- QT5 计算器
- qt双色球
- qt 动态创建控件
评论
共有 条评论