1 Star 0 Fork 308

dddangdang / PyQt

forked from PyQt5 / PyQt 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
GifCursor.py 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
Irony 提交于 2020-03-13 00:30 . 动态忙碌光标
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Created on 2020年3月13日
@author: Irony
@site: https://pyqt.site https://github.com/892768447
@email: 892768447@qq.com
@file: Demo.GifCursor
@description:
"""
from PyQt5.QtWidgets import QWidget, QVBoxLayout, QPushButton
from Demo.Lib.QCursorGif import QCursorGif
__Author__ = 'Irony'
__Copyright__ = 'Copyright (c) 2020'
__Version__ = 1.0
class Window(QWidget, QCursorGif):
def __init__(self, *args, **kwargs):
super(Window, self).__init__(*args, **kwargs)
# 设置忙碌光标图片数组
self.initCursor(['Data/Images/Cursors/%d.png' %
i for i in range(8)], self)
self.setCursorTimeout(100)
layout = QVBoxLayout(self)
layout.addWidget(QPushButton(
'start busy', self, clicked=self.startBusy))
layout.addWidget(QPushButton(
'stop busy', self, clicked=self.stopBusy))
if __name__ == '__main__':
import sys
import cgitb
sys.excepthook = cgitb.enable(1, None, 5, '')
from PyQt5.QtWidgets import QApplication
app = QApplication(sys.argv)
w = Window()
w.show()
sys.exit(app.exec_())
Python
1
https://gitee.com/bleeze/PyQt.git
git@gitee.com:bleeze/PyQt.git
bleeze
PyQt
PyQt
master

搜索帮助