我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Python实现系统桌面时钟

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Python实现系统桌面时钟

用Python + PyQT写的一个系统桌面时钟,刚学习Python,写的比较简陋,但是基本的功能还可以。

功能:

①窗体在应用程序最上层,不用但是打开其他应用后看不到时间

②左键双击全屏,可以做小屏保使用,再次双击退出全屏。

③系统托盘图标,主要参考PyQt4源码目录中的PyQt4\examples\desktop\systray下的程序

④鼠标右键,将程序最小化

使用时需要heart.svg放在源代码同级目录下,[文件可在PyQt4示例代码目录下PyQt4\examples\desktop\systray\images找到

运行需要Python2.7 + PyQt4.

__metaclass__ = type
#!coding= utf-8
#http://blog.csdn.net/gatieme/article/details/17659259
#gatieme


import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *


#--------------------------------------------------------------------------------
class SystemTrayIcon(QSystemTrayIcon):
    """
    The systemTrayIcon which uesd to connect the clock
    """
    #----------------------------------------------------------------------------
    def __init__(self, mainWindow, parent = None):
        """
        mainWindow : the main window that the system tray icon serves to
        """    
        super(SystemTrayIcon, self).__init__(parent)
        self.window = mainWindow
        self.setIcon(QIcon("heart.svg"))   # set the icon of the systemTrayIcon
        
        self.createActions( )
        self.createTrayMenu( )
        
        self.connect(self, SIGNAL("doubleClicked"), self.window, SLOT("showNormal"))
        #self.connect(self, SIGNAL("activated( )"), self, SLOT("slot_iconActivated"))
        

    def createActions(self):
        """
        create some action to Max Min Normal show the window
        """
        self.minimizeAction = QAction("Mi&nimize", self.window, triggered = self.window.hide)
        self.maximizeAction = QAction("Ma&ximize", self.window, triggered = self.window.showMaximized)
        self.restoreAction = QAction("&Restore", self.window, triggered = self.window.showNormal)
        self.quitAction = QAction("&Quit", self.window, triggered = qApp.quit)
                

    def createTrayMenu(self):
         self.trayIconMenu = QMenu(self.window)
         self.trayIconMenu.addAction(self.minimizeAction)
         self.trayIconMenu.addAction(self.maximizeAction)
         self.trayIconMenu.addAction(self.restoreAction)
         self.trayIconMenu.addSeparator( )
         self.trayIconMenu.addAction(self.quitAction)

         self.setContextMenu(self.trayIconMenu)
    
    def setVisible(self, visible):
        self.minimizeAction.setEnabled(not visible)
        self.maximizeAction.setEnabled(not self.window.isMaximized())
        self.restoreAction.setEnabled(self.window.isMaximized() or not visible)
        super(Window, self).setVisible(visible)



    def closeEvent(self, event):
        #if event.button( ) == Qt.RightButton:
        self.showMessage("Message",
                "The program will keep running in the system tray. To "
                "terminate the program, choose <b>Quit</b> in the "
                "context menu of the system tray entry.", 
                QSystemTrayIcon.Information, 5000)
        self.window.hide( )
        event.ignore( )

    def slot_iconActivated(self, reason):
        if reason == QSystemTrayIcon.DoubleClick:
            self.wiondow.showNormal( )



#--------------------------------------------------------------------------------
class DigitClock(QLCDNumber):
    """
    the DigitClock show a digit clock int the printer
    """
    
    #----------------------------------------------------------------------------
    def __init__(self, parent = None):
        """
        the constructor function of the DigitClock
        """
        super(DigitClock, self).__init__(parent)
        pale = self.palette( )

        pale.setColor(QPalette.Window, QColor(100, 180, 100))
        self.setPalette(pale)
        
        self.setNumDigits(19)
        self.systemTrayIcon = SystemTrayIcon(mainWindow = self)

        
        self.dragPosition = None;
        self.setWindowFlags(Qt.FramelessWindowHint | Qt.WindowStaysOnTopHint | Qt.Popup | Qt.Tool)
        self.setWindowOpacity(1)
        
        self.showTime( )            # print the time when the clock show
        self.systemTrayIcon.show( ) # show the SystemTaryIcon when the clock show 

        self.timer = QTimer( )
        self.connect(self.timer, SIGNAL("timeout( )"), self.showTime)
        self.timer.start(1000)
        
        self.resize(500, 60)
        
    
    #----------------------------------------------------------------------------
    def showTime(self):
        """
        show the current time 
        """
        self.date = QDate.currentDate( )
        self.time = QTime.currentTime( )
        text = self.date.toString("yyyy-MM-dd") + " " + self.time.toString("hh:mm:ss")
        self.display(text)

        

    #----------------------------------------------------------------------------
    def mousePressEvent(self, event):
        """
        clicked the left mouse to move the clock
        clicked the right mouse to hide the clock
        """
        if event.button( ) == Qt.LeftButton:
            self.dragPosition = event.globalPos( ) - self.frameGeometry( ).topLeft( )
            event.accept( )
        elif event.button( ) == Qt.RightButton:
            self.systemTrayIcon.closeEvent(event)

            #self.systemTrayIcon.hide( )
            #self.close( )

    def mouseMoveEvent(self, event):
        """
        """
        if event.buttons( ) & Qt.LeftButton:
            self.move(event.globalPos( ) - self.dragPosition)
            event.accept( )
    
    def keyPressEvent(self, event):
        """
        you can enter "ESC" to normal show the window, when the clock is Maxmize
        """
        if event.key() == Qt.Key_Escape and self.isMaximized( ):
            self.showNormal( )

    def mouseDoubleClickEvent(self, event):
        """
        """
        if event.buttons() == Qt.LeftButton:
            if self.isMaximized( ):
                self.showNormal( )
            else:
                self.showMaximized( )
    
if __name__ == "__main__":
    app = QApplication(sys.argv)
    
    digitClock = DigitClock( )
    digitClock.show( )    
    
    sys.exit(app.exec_( ))
    

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Python实现系统桌面时钟

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Python实现系统桌面时钟

用Python + PyQT写的一个系统桌面时钟,刚学习Python,写的比较简陋,但是基本的功能还可以。功能:①窗体在应用程序最上层,不用但是打开其他应用后看不到时间②左键双击全屏,可以做小屏保使用,再次双击退出全屏。③系统托盘图标,主要
2023-01-31

在Windows系统上怎么用QT5实现一个时钟桌面

这篇文章主要讲解了“在Windows系统上怎么用QT5实现一个时钟桌面”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“在Windows系统上怎么用QT5实现一个时钟桌面”吧!介绍这是一个简单的
2023-06-28

Electron 自定义窗口桌面时钟实现示例详解

这篇文章主要为大家介绍了Electron 自定义窗口桌面时钟实现示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
2023-03-09

Python调用ChatGPT制作基于Tkinter的桌面时钟

这篇文章主要为大家详细介绍了Python如何调用ChatGPT制作基于Tkinter的桌面时钟,文中的示例代码讲解详细,感兴趣的可以了解一下
2023-03-23

Python基础 用Python实现时钟

语言:Python IDE:Python.IDE编写时钟程序,要求根据时间动态更新 代码思路 需求:5个Turtle对象, 1个绘制外表盘+3个模拟表上针+1个输出文字 Step1:建立Turtle对象并初始化 Step2:静态表盘绘制
2023-01-31

C#实现系统桌面右下角弹框

这篇文章主要为大家详细介绍了C#如何实现系统桌面右下角弹框,文中的示例代码讲解详细,对我们学习C#有一定的帮助,感兴趣的小伙伴可以跟随小编一起了解一下
2023-01-05

Python怎么调用ChatGPT制作基于Tkinter的桌面时钟

本文小编为大家详细介绍“Python怎么调用ChatGPT制作基于Tkinter的桌面时钟”,内容详细,步骤清晰,细节处理妥当,希望这篇“Python怎么调用ChatGPT制作基于Tkinter的桌面时钟”文章能帮助大家解决疑惑,下面跟着小
2023-07-05

JavaScript如何实现页面电子时钟

这篇文章主要介绍了JavaScript如何实现页面电子时钟的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇JavaScript如何实现页面电子时钟文章都会有所收获,下面我们一起来看看吧。题目:页面上有一个电子时钟
2023-07-02

Python使用Pygame实现时钟效果

本文实例为大家分享了Python使用Pygame实现时钟效果的具体代码,供大家参考,具体内容如下import pygame,sys,math,random from pygame.locals import * from datetime
2022-06-02

C#如何实现图形界面的时钟

今天小编给大家分享一下C#如何实现图形界面的时钟的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。秒针有跳跃两个格子问题,主要是
2023-07-02

Python实现对桌面进行实时捕捉画面的方法详解

最近在研究目标检测方面的小东西,需要到对桌面进行实时捕捉画面。所以本文来用Python实现简单的对桌面进行实时捕捉画面,感兴趣的可以了解一下
2023-01-28

Python实现模拟时钟代码推荐

Python实现模拟时钟代码推荐# coding=utf8 import sys, pygame, math, random from pygame.locals import * from datetime import datetime
2022-06-04

Python入门——实现简易数码时钟

最近迷上了Python,要说为什么呢?Python语法简单,功能强大,有广泛的第三方库能快速编程实现自己的想法(无需重复去造轮子)。就像某位前辈说的:“人生苦短,学会偷懒…”,配置好sublime text照着网上教程直接上手写个小程序入门
2023-01-31

Win7系统中开启对梦幻桌面的支持实现将视频设置为桌面

说到梦幻桌面,大家都很清楚了吧,在Vista Ul编程客栈timate中,微软引进了此功能以实现将视频设置为桌面。不过在Windows 7中,微软似乎去除了这一功能。那么想继续用梦幻桌面怎么办?依然,通过一点小技巧我们就可以实现Window
2023-06-01

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录