-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoast_notification.py
47 lines (38 loc) · 1.74 KB
/
toast_notification.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
from PyQt5.QtWidgets import QWidget, QLabel, QHBoxLayout
from PyQt5.QtCore import Qt, QTimer, QPropertyAnimation, QEasingCurve, QPoint
from PyQt5.QtGui import QFont, QColor, QPalette
class ToastNotification(QWidget):
def __init__(self, text, parent=None, duration=3000):
super().__init__(parent)
self.setAttribute(Qt.WA_DeleteOnClose) # automatisch löschen
self.setWindowFlags(Qt.ToolTip | Qt.FramelessWindowHint) # kein Fensterrahmen / immer oben
self.duration = duration
# Stil definieren:
self.label = QLabel(text, self)
font = QFont("Segoe UI", 10, QFont.Bold)
self.label.setFont(font)
layout = QHBoxLayout(self)
layout.addWidget(self.label)
# Hintergrundfarbe setzen
palette = self.palette()
palette.setColor(QPalette.Window, QColor("#44c767")) # Grünliche Hintergrundfarbe
palette.setColor(QPalette.WindowText, Qt.white)
self.setPalette(palette)
self.setAutoFillBackground(True)
def showEvent(self, event):
super().showEvent(event)
# Positionieren (oben-rechts im Parent für Auffälligkeit)
parent = self.parent()
if parent:
geo = parent.geometry()
self.adjustSize()
self.move(geo.topRight() - self.rect().topRight() + QPoint(-20, 20)) # Randabstand
# Einblend-Animation:
self.animation = QPropertyAnimation(self, b"windowOpacity")
self.animation.setDuration(500)
self.animation.setStartValue(0.0)
self.animation.setEndValue(1.0)
self.animation.setEasingCurve(QEasingCurve.OutBack)
self.animation.start()
# Timer zum automatischen Schließen
QTimer.singleShot(self.duration, self.close)