PyQt QToolTip that user can add description and so on.
Project description
pyqt-description-tooltip
PyQt QToolTip that user can add description and so on.
Setup
python -m pip install pyqt-description-tooltip
Usage
You can get the qt tooltip text using static method below.
DescriptionToolTipGetter.getToolTip(title: str = '', shortcut: str = '', description: str = '',
shortcut_color: str = '#AAA', description_color: str = '#AAA')
Example
Code Sample
from PyQt5.QtWidgets import QMainWindow, QPushButton, QApplication
from pyqt_description_tooltip import DescriptionToolTipGetter
from pyqt_style_setter import StyleSetter
class MainWindow(QMainWindow):
def __init__(self):
super().__init__()
self.__initUi()
def __initUi(self):
btn = QPushButton('ToolTip Button')
btn.setToolTip(DescriptionToolTipGetter.getToolTip(title='ToolTip Title', shortcut='Ctrl+T',
description='ToolTip Description.',))
self.setCentralWidget(btn)
if __name__ == "__main__":
import sys
app = QApplication(sys.argv)
example = MainWindow()
StyleSetter.setWindowStyle(example)
# https://github.com/yjg30737/pyqt-style-setter.git
example.show()
app.exec_()
Result
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyqt-description-tooltip-0.0.1.tar.gz.
File metadata
- Download URL: pyqt-description-tooltip-0.0.1.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/0.0.0 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d50cb0a896c8af845d78bdc601b1c96524acd63cf14c431f4f23fe1a7865299f
|
|
| MD5 |
c4e228dd595c01a6d41d25a49d011737
|
|
| BLAKE2b-256 |
7b7d253cabff86fbcea1fe66a6e32eb8d0cf35d499613ce40620b8dfde31a1c6
|
File details
Details for the file pyqt_description_tooltip-0.0.1-py3-none-any.whl.
File metadata
- Download URL: pyqt_description_tooltip-0.0.1-py3-none-any.whl
- Upload date:
- Size: 3.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/0.0.0 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b17415d86126147b8562fa6eea5e87caae86062b0e28a0a3a046a5f3f674343
|
|
| MD5 |
aceecea8ce836369ed854c578ac6cbcc
|
|
| BLAKE2b-256 |
de5748afbc16fe51c6d3e16ebce7c73398484bdf33a424589ac0f220cbb2799a
|