python+PyQT实现系统桌面时钟

用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_( ))

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Python3.6 Schedule模块定时任务(实例讲解)

    一,编程环境 PyCharm2016,Anaconda3 Python3.6 需要安装schedule模块,该模块网址:https://pypi.python.org/pypi/schedule 打开Anaconda Prompt,输入:conda install schedule 提示:Package Not Found Error 于是,使用 pip 安装.由于Anaconda3 中已经自带了pip,如下图: 于是 cmd 命令行切换到 scripts 目录,执行 pip.exe insta

  • python自定义时钟类、定时任务类

    这是我使用python写的第一个类(也算是学习面向对象语言以来正式写的第一个解耦的类),记录下改进的过程. 分析需求 最初,因为使用time模块显示日期时,每次都要设置时间字符串的格式,挺麻烦,但还是忍了. 后来,在处理多线程任务时需要实现定时控制的功能,更麻烦,终于决定自己做一个解决这些问题的通用代码(虽然网上有现成的模块,但亲手编写这部分代码正好能锻炼一下我的面向对象编程). 分析框架 刚开始,我计划做一个模仿时钟的抽象类,让它独立运行在一个线程中,让它提供显示日期.计时.设置定时任务的方法

  • Python Tkinter模块实现时钟功能应用示例

    本文实例讲述了Python Tkinter模块实现时钟功能.分享给大家供大家参考,具体如下: 本机测试效果: 完整代码: # coding=utf-8 from Tkinter import * import _tkinter import math import time from threading import Thread class Clock: def __init__(self, master, x, y, width, height, radius): ''' :param ma

  • python实现简易数码时钟

    最近迷上了Python,要说为什么呢?Python语法简单,功能强大,有广泛的第三方库能快速编程实现自己的想法(无需重复去造轮子).就像某位前辈说的:"人生苦短,学会偷懒-",配置好sublime text照着网上教程直接上手写个小程序入门. 先插张图,计算机技术的演进过程,总结的还是挺到位的. 安装好Python环境,引入需要用到的库: import threading import turtle import time 引入time库后使用localtime()方法可以获取当前服务

  • Linux下Python脚本自启动与定时任务详解

    前言 最近同事问了一个关于Python脚本自启动与定时任务的问题,发现很多的朋友对这块都不是特别的熟悉,所以本文主要给大家介绍的是关于Linux下Python脚本自启动与定时任务的相关内容,分享出来供大家参考学习,话不多说了,来一起看看详细的介绍: 一.让Python随Linux开机自动运行 准备好要自启的脚本auto.py 用root权限编辑以下文件 sudo vim /ect/rc.local 在exit 0上面编辑启动脚本的命令 /usr/bin/python3.5 /home/edgar

  • Python+Pyqt实现简单GUI电子时钟

    本文实例为大家分享了Python+Pyqt实现简单GUI电子时钟的具体代码,供大家参考,具体内容如下 突发奇想想用GUI做一个简单的电子时钟界面,利用pyqt模块也很方便,代码如下: from PyQt5.QtGui import * from PyQt5.QtCore import * from PyQt5.QtWidgets import QWidget,QApplication,QLCDNumber,QVBoxLayout,QMessageBox,QPushButton import sy

  • Python3中常用的处理时间和实现定时任务的方法的介绍

    无论哪种编程语言,时间肯定都是非常重要的部分,今天来看一下python如何来处理时间和python定时任务,注意咯:本篇所讲是python3版本的实现,在python2版本中的实现略有不同,有时间会再写一篇以便大家区分. 1.计算明天和昨天的日期 #! /usr/bin/env python #coding=utf-8 # 获取今天.昨天和明天的日期 # 引入datetime模块 import datetime #计算今天的时间 today = datetime.date.today() #计算

  • Python定时任务sched模块用法示例

    本文实例讲述了Python定时任务sched模块用法.分享给大家供大家参考,具体如下: 通过sched模块可以实现通过自定义时间,自定义函数,自定义优先级来执行函数. 范例一 import time import sched schedule = sched.scheduler( time.time,time.sleep) def func(string1): print "now excuted func is %s"%string1 print "start"

  • Python实现定时任务

    Python下实现定时任务的方式有很多种方式.下面介绍几种 循环sleep: 这是一种最简单的方式,在循环里放入要执行的任务,然后sleep一段时间再执行.缺点是,不容易控制,而且sleep是个阻塞函数. def timer(n): ''''' 每n秒执行一次 ''' while True: print time.strftime('%Y-%m-%d %X',time.localtime()) yourTask() # 此处为要执行的任务 time.sleep(n) threading的Time

  • python实现简易动态时钟

    本文实例为大家分享了python实现简易动态时钟的具体代码,供大家参考,具体内容如下 from turtle import * from datetime import * #移动到指定位置 def skip(step): penup() forward(step) pendown() #画指针 def drawpointer(name, length): reset() skip(-length*0.1) begin_poly() forward(length*1.1) end_poly()

随机推荐