-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathqwblackscreen.py
191 lines (157 loc) · 8.05 KB
/
qwblackscreen.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# -*- coding: utf-8 -*-
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' '
' Copyright 2018-2024 Gauthier Brière (gauthier.briere "at" gmail.com) '
' '
' This file is part of cn5X++ '
' '
' cn5X++ is free software: you can redistribute it and/or modify it '
' under the terms of the GNU General Public License as published by '
' the Free Software Foundation, either version 3 of the License, or '
' (at your option) any later version. '
' '
' cn5X++ is distributed in the hope that it will be useful, but '
' WITHOUT ANY WARRANTY; without even the implied warranty of '
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the '
' GNU General Public License for more details. '
' '
' You should have received a copy of the GNU General Public License '
' along with this program. If not, see <http://www.gnu.org/licenses/>. '
' '
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
import os, sys, time, random
from PyQt6 import QtCore, QtWidgets, uic
from PyQt6.QtCore import Qt, QCoreApplication, QObject, pyqtSignal, pyqtSlot, QSettings, QEvent, QThread, QEventLoop, QTimer
from PyQt6.QtGui import QKeyEvent
from gcodeQLineEdit import gcodeQLineEdit
from cn5X_config import *
class horlogeUpdater(QObject):
''' Objet pour mise à jour horloge durant la mise en veille '''
def __init__(self, horloge):
QObject.__init__(self)
self.horloge = horloge
self.horlogeUi = horloge.ui
self.deuxPoints = False
self.updateTimer = QTimer()
self.updateTimer.setInterval(500) # 1/2 seconde
self.updateTimer.timeout.connect(self.updateHeure)
self.moveTimer = QTimer()
self.moveTimer.setInterval(67) # ~15 fois par seconde
self.moveTimer.timeout.connect(self.moveHorloge)
# Déplacements aléatoires entre minMove et maxMove pixels
self.minMove = 2
self.maxMove = 5
random.seed()
self.deplacementX = random.randint(self.minMove, self.maxMove)
if random.randint(0, 1) == 0:
self.deplacementX = -self.deplacementX
self.deplacementY = random.randint(self.minMove, self.maxMove)
if random.randint(0, 1) == 0:
self.deplacementY = -self.deplacementY
def start(self):
self.updateTimer.start()
self.moveTimer.start()
def quit(self):
self.updateTimer.stop()
self.moveTimer.stop()
def updateHeure(self):
''' Mise à l'heure de l'horloge '''
H = time.strftime("%H")
M = time.strftime("%M")
S = time.strftime("%S")
# Heures : Minutes avec clignottement des ':' 1 fois sur 2
if self.deuxPoints:
self.horlogeUi.lblHM.setText("{} {}".format(H, M))
self.deuxPoints = False
else:
self.horlogeUi.lblHM.setText("{}:{}".format(H, M))
self.deuxPoints = True
# Secondes
self.horlogeUi.lblS.setText("{}".format(S))
def moveHorloge(self):
''' Déplacement de l'horloge sur l'écran '''
newX = self.horloge.pos().x() + self.deplacementX
if self.deplacementX > 0:
if newX + self.horloge.width() > self.horloge.parentWidget().width():
# On a atteind le bord de l'écran, on repart dans l'autre sens avec une autre vitesse
self.deplacementX = -random.randint(self.minMove, self.maxMove)
newX = self.horloge.pos().x() + self.deplacementX
else: # self.deplacementX < 0
if newX < 0:
# On a atteind le bord de l'écran, on repart dans l'autre sens avec une autre vitesse
self.deplacementX = random.randint(self.minMove, self.maxMove)
newX = self.horloge.pos().x() + self.deplacementX
newY = self.horloge.pos().y() + self.deplacementY
if self.deplacementY> 0:
if newY + self.horloge.height() > self.horloge.parentWidget().height():
# On a atteind le bord de l'écran, on repart dans l'autre sens avec une autre vitesse
self.deplacementY = -random.randint(self.minMove, self.maxMove)
newY = self.horloge.pos().y() + self.deplacementY
else: # self.deplacementY < 0
if newY < 0:
# On a atteind le bord de l'écran, on repart dans l'autre sens avec une autre vitesse
self.deplacementY = random.randint(self.minMove, self.maxMove)
newY = self.horloge.pos().y() + self.deplacementY
self.horloge.move(newX, newY)
class qwBlackScreen(QtWidgets.QWidget):
''' Widget personalise construisant un écran noir
cet écran disparait en cas de click ou d'appuis sur une touche '''
def __init__(self, parent=None):
super().__init__()
self.__settings = QSettings(QSettings.Format.NativeFormat, QSettings.Scope.UserScope, ORG_NAME, APP_NAME)
# Initialise le widget écran noir
self.parent = parent
self.blackScreen = QtWidgets.QWidget(parent)
self.blackScreen.setStyleSheet("background-color: black")
self.blackScreen.setCursor(Qt.CursorShape.BlankCursor)
self.blackScreen.move(0, 0)
self.blackScreen.resize(parent.width(), parent.height())
# widget horloge
self.blackScreen.horloge = QtWidgets.QWidget(self.blackScreen)
self.blackScreen.horloge.setStyleSheet("background-color: None")
self.blackScreen.horloge.ui = uic.loadUi(os.path.join(os.path.dirname(__file__), "qwHorloge.ui"), self.blackScreen.horloge)
# redimentionne l'horloge en fonction de la police de caractères
fontSize = self.__settings.value("screenSaverClockFontSize", 72, type=int)
fontHM = self.blackScreen.horloge.ui.lblFondHM.font()
fontS = self.blackScreen.horloge.ui.lblFondS.font()
fontHM.setPointSize(fontSize)
fontS.setPointSize(int(fontSize/2))
self.blackScreen.horloge.ui.lblFondHM.setFont(fontHM)
self.blackScreen.horloge.ui.lblHM.setFont(fontHM)
self.blackScreen.horloge.ui.lblFondS.setFont(fontS)
self.blackScreen.horloge.ui.lblS.setFont(fontS)
self.resizeClock()
self.blackScreen.horloge.setVisible(False)
self.updateHorloge = horlogeUpdater(self.blackScreen.horloge)
# L'écran noir est masqué au départ
self.blackScreen.setVisible(False)
def blackScreen_show(self):
# redimentionne le cache noir à la taille de la fenêtre
self.blackScreen.resize(self.parent.width(), self.parent.height())
if self.parent.screenSaverClock:
# place l'horloge au millieu
self.blackScreen.horloge.move(int((self.blackScreen.width()-self.blackScreen.horloge.width())/2), int((self.blackScreen.height()-self.blackScreen.horloge.height())/2))
# horloge visible
self.blackScreen.horloge.setVisible(True)
# lance la mise à jour de l'horloge
self.updateHorloge.start()
else:
# horloge invisible
self.blackScreen.horloge.setVisible(False)
# rend le tout visible
self.blackScreen.setVisible(True)
def resizeClock(self):
''' Ajuste la dimention de l'horloge en fonction de la police de caractères '''
self.blackScreen.horloge.ui.lblFondHM.adjustSize()
self.blackScreen.horloge.ui.lblHM.adjustSize()
self.blackScreen.horloge.ui.lblFondS.adjustSize()
self.blackScreen.horloge.ui.lblS.adjustSize()
self.blackScreen.horloge.ui.lblFondS.move(self.blackScreen.horloge.ui.lblHM.width(), self.blackScreen.horloge.ui.lblHM.height() - self.blackScreen.horloge.ui.lblS.height())
self.blackScreen.horloge.ui.lblS.move(self.blackScreen.horloge.ui.lblHM.width(), self.blackScreen.horloge.ui.lblHM.height() - self.blackScreen.horloge.ui.lblS.height())
self.blackScreen.horloge.adjustSize()
def blackScreen_hide(self):
self.blackScreen.setVisible(False)
if self.parent.screenSaverClock:
self.updateHorloge.quit()
def isVisible(self):
return self.blackScreen.isVisible()