Skip to main content

PyQt Toast (Small message displayed on the screen, visible for a short time)

Project description

pyqt-toast

PyQt Toast (Small message displayed on the screen, visible for a short time)

Requirements

PyQt5 >= 5.8

Setup

python -m pip install pyqt-toast

Included Packages

Usage

  • Toast(text='This is toast', duration=3, parent=self) - Constructor. Giving parent argument to self value helps toast to maintain its place after window got moved.

Note: You have to declare this one time as a class variable at initializing point(e.g. __initUi) or else new one will pop up even though last one is still showing.

  • setPosition(pos: QPoint) - Place center of the toast at the given position.

  • setFont(font: QFont) - Set the font of text in toast. Toast's size will be automatically changed based on text's size.

  • setForegroundColor(color) - Set the text(foreground) color. color argument can be both str(6-digits hex color string), QColor types.

  • setBackgroundColor(color) - Set the background color. color argument can be both str(6-digits hex color string), QColor types.

  • setOpacity(opacity: float) - Set the opacity of toast.

  • setDuration(duration: int) - Set the duration of toast.

  • setAlignment(alignment) - Set the alignment of text.

Example

Code Sample

from PyQt5.QtWidgets import QWidget, QApplication, QPushButton, QGridLayout



from pyqt_toast import Toast





class ToastExample(QWidget):

    def __init__(self):

        super().__init__()

        self.__initUi()



    def __initUi(self):

        btn = QPushButton('Krabby Patty secret formula')

        self.__toast = Toast(text='The Krabby Patty formula is the sole property of the Krusty Krab and is only to be discussed in part or in whole with its creator Mr. Krabs. Duplication of this formula is punishable by law. Restrictions apply, results may vary.', duration=3, parent=self)

        btn.clicked.connect(self.__toast.show)

        lay = QGridLayout()

        lay.addWidget(btn)

        self.setLayout(lay)





if __name__ == "__main__":

    import sys



    app = QApplication(sys.argv)

    toastExample = ToastExample()

    toastExample.show()

    app.exec_()

Result

https://user-images.githubusercontent.com/55078043/163155105-371e5d88-8b77-4a25-90cc-5c461f841762.mp4

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyqt-toast-0.0.15.tar.gz (4.5 kB view details)

Uploaded Source

Built Distribution

pyqt_toast-0.0.15-py3-none-any.whl (5.4 kB view details)

Uploaded Python 3

File details

Details for the file pyqt-toast-0.0.15.tar.gz.

File metadata

  • Download URL: pyqt-toast-0.0.15.tar.gz
  • Upload date:
  • Size: 4.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 CPython/3.7.6

File hashes

Hashes for pyqt-toast-0.0.15.tar.gz
Algorithm Hash digest
SHA256 d9464420f1c550ed7340c866b57093cb2521ea1493077ac1db705a63fedc9600
MD5 00d3c045743f29dfb523aa43b745ec6b
BLAKE2b-256 7a08b1c2cd73bd7607b408e83bf28ed87a3b85b27477110183a3003b1627311f

See more details on using hashes here.

File details

Details for the file pyqt_toast-0.0.15-py3-none-any.whl.

File metadata

  • Download URL: pyqt_toast-0.0.15-py3-none-any.whl
  • Upload date:
  • Size: 5.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 CPython/3.7.6

File hashes

Hashes for pyqt_toast-0.0.15-py3-none-any.whl
Algorithm Hash digest
SHA256 01f7fcff1acb3924d11cafa18e870248580e3748c8e2f6abf523adb95c266962
MD5 7f5e2df12ecc5ebe9ca486707726d3e1
BLAKE2b-256 cb14170c8918d915becf3212a67f467b7d57ac8fc2a72bbcfb665a098ff5d6f5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page