-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclock.py
43 lines (33 loc) · 1.25 KB
/
clock.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from PyQt4.QtGui import *
from PyQt4.QtCore import *
import sys
class DigiClock(QLCDNumber):
def __init__(self, parent=None):
super(DigiClock, self).__init__(parent)
p = self.palette()
p.setColor(QPalette.Window, Qt.red)
self.setPalette(p)
self.setNumDigits(19)
self.dragPosition = None
self.setWindowFlags(Qt.FramelessWindowHint)
self.setWindowOpacity(0.5)
timer = QTimer(self)
self.connect(timer, SIGNAL("timeout()"), self.showTime)
timer.start(1000)
self.showTime()
self.resize(500, 60)
def mousePressEvent(self, event):
if event.button() == Qt.LeftButton:
self.dragPosition = event.globalPos() - self.frameGeometry().topLeft()
event.accept()
if event.button() == Qt.RightButton:
self.close()
def mouseMoveEvent(self, event):
if event.buttons() & Qt.LeftButton:
self.move(event.globalPos() - self.dragPosition)
event.accept()
def showTime(self):
time = QTime.currentTime()
date = QDate.currentDate()
text = date.toString("yyyy-MM-dd") + " " + time.toString("hh:mm:ss")
self.display(text)