资源简介
这是一个仿安卓的时钟显示qt工程代码,支持三种特效类似日历的翻页,自上而下的滑动,前后翻转,三种特效。可以下载解压后可以直接编译运行
代码片段和文件信息
#include
#include
class Digits: public QWidget
{
Q_object
public:
/*Define three transition modes of the digital clock*/
enum {
Slide
Flip
Rotate
};
Digits(QWidget *parent)
: QWidget(parent)
m_number(0)
m_transition(Slide)
{
setAttribute(Qt::WA_OpaquePaintEvent true);
//Widget paints all its pixels when it receives a paint event
setAttribute(Qt::WA_NoSystemBackground true);
//Indicates that the widget has no background i.e. when the widget receives paint events the background is not automatically repainted.
connect(&m_animator SIGNAL(frameChanged(int)) SLOT(update()));
//start animation
m_animator.setframeRange(0 100);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-06-10 03:41 timer\
文件 690 2015-06-10 03:32 timer\mainwindow.h
文件 373 2015-06-10 02:32 timer\timer.pro
文件 8416 2015-06-10 03:30 timer\digits.cpp
文件 1567 2015-06-10 03:26 timer\Digits.h
文件 3090 2015-06-10 03:41 timer\mainwindow.cpp
文件 18253 2015-06-10 02:01 timer\timer.pro.user
文件 306 2015-06-10 02:09 timer\main.cpp
文件 13984 2015-06-10 01:57 timer\1.cpp
- 上一篇:PEX8733资料,官网
- 下一篇:qpsk 的 verilog实现
相关资源
- Qt学习总结.zip
- 基于qt+opencv的人脸识别
- GPRS模块GA6和STM32F103C8T6单片机上移植
- QT设计图标登录及三个游戏设计潜艇游
- 基于ZigBee的智能家居系统QT界面渲染
- Qt+opencv+摄像头+人脸检测
- Qt5 网络调试助手源代码 漂亮界面
- Qt 点菜系统
- 跨平台MQTT Client 源码和demo by 漠北
- 年会抽奖软件
- QT 智能家居源代码,可使用 实测通过
- Qt 之 简单截图功能三实现可拖拽选中
- 简单QT多线程聊天程序
- Qt提示框淡出、飞出、缩小等关闭窗口
- ImageRotation.zip
- QT打包工具合集
- linux环境下用QT实现打地鼠游戏源码共
- 基于QT的2048小游戏
- Qt登陆界面
- QT数字软键盘,包括QLineEdit弹出
- Qt Excel的读写
- 基于QT的电子相册设计
- Qt文件浏览器,Linux
- Qt写的UDP组播服务端
- QT文字闪烁浮动效果代码
- 基于qt编写的图片浏览器
- flash电子书翻页效果原文件模板fla及
- qt全局热键 全平台 支持qt5
- 漂亮的界面框架
- 无边框界面
评论
共有 条评论