
Research
Security News
Malicious npm Packages Use Telegram to Exfiltrate BullX Credentials
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
pyqt-toast-notification
Advanced tools
A fully customizable and modern toast notification library for PyQt and PySide
PyQt5
, PyQt6
, PySide2
, and PySide6
pip install pyqt-toast-notification
Import the Toast
class, instantiate it, and show the toast notification with the show()
method:
from PyQt6.QtWidgets import QMainWindow, QPushButton
from pyqttoast import Toast, ToastPreset
class Window(QMainWindow):
def __init__(self):
super().__init__(parent=None)
# Add button and connect click event
self.button = QPushButton(self)
self.button.setText('Show toast')
self.button.clicked.connect(self.show_toast)
# Shows a toast notification every time the button is clicked
def show_toast(self):
toast = Toast(self)
toast.setDuration(5000) # Hide after 5 seconds
toast.setTitle('Success! Confirmation email sent.')
toast.setText('Check your email to complete signup.')
toast.applyPreset(ToastPreset.SUCCESS) # Apply style preset
toast.show()
IMPORTANT:
An instance ofToast
can only be shown once. If you want to show another one, even if the content is exactly the same, you have to create another instance.
Toast.setPosition(ToastPosition.BOTTOM_MIDDLE) # Default: ToastPosition.BOTTOM_RIGHT
AVAILABLE POSITIONS:
BOTTOM_LEFT
,BOTTOM_MIDDLE
,BOTTOM_RIGHT
,TOP_LEFT
,TOP_MIDDLE
,TOP_RIGHT
,CENTER
Toast.setAlwaysOnMainScreen(True) # Default: False
Toast.setPositionRelativeToWidget(some_widget) # Default: None
Toast.setMaximumOnScreen(5) # Default: 3
If you try to show more toasts than the maximum amount on screen, they will get added to a queue and get shown as soon as one of the currently showing toasts is closed.
Toast.setSpacing(20) # Default: 10
Toast.setOffset(30, 55) # Default: 20, 45
toast.setDuration(0) # Default: 5000
toast.setShowDurationBar(False) # Default: True
toast.setIcon(ToastIcon.SUCCESS) # Default: ToastIcon.INFORMATION
toast.setShowIcon(True) # Default: False
# Or setting a custom icon:
toast.setIcon(QPixmap('path/to/your/icon.png'))
# If you want to show the icon without recoloring it, set the icon color to None:
toast.setIconColor(None) # Default: #5C5C5C
AVAILABLE ICONS:
SUCCESS
,WARNING
,ERROR
,INFORMATION
,CLOSE
toast.setIconSize(QSize(14, 14)) # Default: QSize(18, 18)
toast.setShowIconSeparator(False) # Default: True
toast.setCloseButtonAlignment(ToastButtonAlignment.MIDDLE) # Default: ToastButtonAlignment.TOP
AVAILABLE ALIGNMENTS:
TOP
,MIDDLE
,BOTTOM
toast.setShowCloseButton(False) # Default: True
toast.setFadeInDuration(100) # Default: 250
toast.setFadeOutDuration(150) # Default: 250
toast.setResetDurationOnHover(False) # Default: True
toast.setBorderRadius(3) # Default: 0
toast.setBackgroundColor(QColor('#292929')) # Default: #E7F4F9
toast.setTitleColor(QColor('#FFFFFF')) # Default: #000000
toast.setTextColor(QColor('#D0D0D0')) # Default: #5C5C5C
toast.setDurationBarColor(QColor('#3E9141')) # Default: #5C5C5C
toast.setIconColor(QColor('#3E9141')) # Default: #5C5C5C
toast.setIconSeparatorColor(QColor('#585858')) # Default: #D9D9D9
toast.setCloseButtonIconColor(QColor('#C9C9C9')) # Default: #000000
# Init font
font = QFont('Times', 10, QFont.Weight.Bold)
# Set fonts
toast.setTitleFont(font) # Default: QFont('Arial', 9, QFont.Weight.Bold)
toast.setTextFont(font) # Default: QFont('Arial', 9)
toast.applyPreset(ToastPreset.ERROR)
AVAILABLE PRESETS:
SUCCESS
,WARNING
,ERROR
,INFORMATION
,SUCCESS_DARK
,WARNING_DARK
,ERROR_DARK
,INFORMATION_DARK
# Minimum and maximum size
toast.setMinimumWidth(100)
toast.setMaximumWidth(350)
toast.setMinimumHeight(50)
toast.setMaximumHeight(120)
# Fixed size (not recommended)
toast.setFixedSize(QSize(350, 80))
Other customization options:
Option | Description | Default |
---|---|---|
setFixedScreen() | Fixed screen where the toasts will be shown (static) | None |
setMovePositionWithWidget() | Whether the toasts should move with widget if positioned relative to a widget | True |
setIconSeparatorWidth() | Width of the icon separator that separates the icon and text section | 2 |
setCloseButtonIcon() | Icon of the close button | ToastIcon.CLOSE |
setCloseButtonIconSize() | Size of the close button icon | QSize(10, 10) |
setCloseButtonSize() | Size of the close button | QSize(24, 24) |
setStayOnTop() | Whether the toast stays on top of other windows even when they are focused | True |
setTextSectionSpacing() | Vertical spacing between the title and the text | 8 |
setMargins() | Margins around the whole toast content | QMargins(20, 18, 10, 18) |
setIconMargins() | Margins around the icon | QMargins(0, 0, 15, 0) |
setIconSectionMargins() | Margins around the icon section (the area with the icon and the icon separator) | QMargins(0, 0, 15, 0) |
setTextSectionMargins() | Margins around the text section (the area with the title and the text) | QMargins(0, 0, 15, 0) |
setCloseButtonMargins() | Margins around the close button | QMargins(0, -8, 0, -8) |
https://github.com/niklashenning/pyqt-toast/assets/58544929/f4d7f4a4-6d69-4087-ae19-da54b6da499d
The demos for PyQt5, PyQt6, and PySide6 can be found in the demo folder.
Installing the required test dependencies PyQt6, pytest, and coveragepy:
pip install PyQt6 pytest coverage
To run the tests with coverage, clone this repository, go into the main directory and run:
coverage run -m pytest
coverage report --ignore-errors -m
This software is licensed under the MIT license.
FAQs
A fully customizable toast notification library for PyQt and PySide
We found that pyqt-toast-notification demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.
Security News
AI-generated slop reports are making bug bounty triage harder, wasting maintainer time, and straining trust in vulnerability disclosure programs.