├── .coveragerc ├── .gitignore ├── LICENSE ├── README.md ├── demo ├── pyqt5 │ ├── main.py │ └── window.py ├── pyqt6 │ ├── main.py │ └── window.py └── pyside6 │ ├── main.py │ └── window.py ├── pytest.ini ├── requirements.txt ├── setup.py ├── src └── pyqttooltip │ ├── __init__.py │ ├── constants.py │ ├── drop_shadow.py │ ├── enums.py │ ├── placement_utils.py │ ├── tooltip.py │ ├── tooltip_interface.py │ ├── tooltip_triangle.py │ └── utils.py └── tests ├── __init__.py ├── placement_utils_test.py ├── tooltip_test.py └── utils_test.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/README.md -------------------------------------------------------------------------------- /demo/pyqt5/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/demo/pyqt5/main.py -------------------------------------------------------------------------------- /demo/pyqt5/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/demo/pyqt5/window.py -------------------------------------------------------------------------------- /demo/pyqt6/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/demo/pyqt6/main.py -------------------------------------------------------------------------------- /demo/pyqt6/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/demo/pyqt6/window.py -------------------------------------------------------------------------------- /demo/pyside6/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/demo/pyside6/main.py -------------------------------------------------------------------------------- /demo/pyside6/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/demo/pyside6/window.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | qt_api=pyqt6 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | QtPy>=2.4.1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/setup.py -------------------------------------------------------------------------------- /src/pyqttooltip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/src/pyqttooltip/__init__.py -------------------------------------------------------------------------------- /src/pyqttooltip/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/src/pyqttooltip/constants.py -------------------------------------------------------------------------------- /src/pyqttooltip/drop_shadow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/src/pyqttooltip/drop_shadow.py -------------------------------------------------------------------------------- /src/pyqttooltip/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/src/pyqttooltip/enums.py -------------------------------------------------------------------------------- /src/pyqttooltip/placement_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/src/pyqttooltip/placement_utils.py -------------------------------------------------------------------------------- /src/pyqttooltip/tooltip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/src/pyqttooltip/tooltip.py -------------------------------------------------------------------------------- /src/pyqttooltip/tooltip_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/src/pyqttooltip/tooltip_interface.py -------------------------------------------------------------------------------- /src/pyqttooltip/tooltip_triangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/src/pyqttooltip/tooltip_triangle.py -------------------------------------------------------------------------------- /src/pyqttooltip/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/src/pyqttooltip/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/placement_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/tests/placement_utils_test.py -------------------------------------------------------------------------------- /tests/tooltip_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/tests/tooltip_test.py -------------------------------------------------------------------------------- /tests/utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklashenning/pyqttooltip/HEAD/tests/utils_test.py --------------------------------------------------------------------------------