An easy and customisable ToolTip implementation for Tkinter
Project description
tkinter-tooltip
What this is
This is a simple yet fully customisable tooltip/pop-up implementation for
tkinter widgets based on the original work performed by
Tucker Beck
Features
- normal tooltips
- show tooltip with
ssecondsdelay - tooltip tracks mouse cursor
- tooltip displays strings and string returning functions
- fully customisable, tooltip inherits underlying theme style
Install
pip install tkinter-tooltip
Examples
Normal tooltips
By default the tooltip activates when entering and/or moving in the widget are and deactivates when leaving and/or pressing any button.
import tkinter as tk
import tkinter.ttk as ttk
from tooltip import ToolTip
app = tk.Tk()
b = ttk.Button(app, text="Button").pack()
ToolTip(b, msg="Hover info")
app.mainloop()
Delayed tooltip
import tkinter as tk
import tkinter.ttk as ttk
from tooltip import ToolTip
app = tk.Tk()
b = ttk.Button(app, text="Button")
b.pack()
ToolTip(b, msg="Hover info", delay=2.0) # True by default
app.mainloop()
Tracking tooltip
Have the tooltip follow the mousse cursor around when moving.
import tkinter as tk
import tkinter.ttk as ttk
from tooltip import ToolTip
app = tk.Tk()
b = ttk.Button(app, text="Button")
b.pack()
ToolTip(b, msg="Hover info", follow=True) # True by default
app.mainloop()
Function as tooltip
Here the tooltip returns the value of time.asctime() which updates with every
movement. NOTE: the values do not update when the cursor is stationary.
import time
import tkinter as tk
import tkinter.ttk as ttk
from tooltip import ToolTip
app = tk.Tk()
b = ttk.Button(app, text="Button")
b.pack()
ToolTip(b, msg=time.asctime(), delay=0)
app.mainloop()
Themed tooltip
tkinter-tooltip is fully aware of the underlying theme (in this case a dark theme),
and can even be furher customised by passing tk styling arguments to the tooltip
Style tooltip and underlying the button. If a full theme has been used then
the ToolTip will inherit the settings of the theme by default.
import tkinter as tk
import tkinter.ttk as ttk
from tooltip import ToolTip
app = tk.Tk()
s = ttk.Style()
s.configure("custom.TButton", foreground="#ffffff", background="#1c1c1c")
b = ttk.Button(app, text="Button", style="custom.TButton")
b.pack()
ToolTip(b, msg="Hover info", delay=0,
parent_kwargs={"bg": "black", "padx": 5, "pady": 5},
fg="#ffffff", bg="#1c1c1c", padx=10, pady=10)
app.mainloop()
Acknowledgements
Special thanks to Tucker Beck for writting the original version of the code.
License
MIT License
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 tkinter-tooltip-0.0.1.tar.gz.
File metadata
- Download URL: tkinter-tooltip-0.0.1.tar.gz
- Upload date:
- Size: 511.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/1.6.0 pkginfo/1.7.1 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0794d3ceae3fdc107c10001a46fd9cb317cc48c85904699c203c00f7eec8a310
|
|
| MD5 |
7228a0b978a43d22b1a55857597aece8
|
|
| BLAKE2b-256 |
d61461f2019247ad3004f70a13f0c2a4e37dcfe1ca95dfdd3f4458446886447e
|
File details
Details for the file tkinter_tooltip-0.0.1-py3-none-any.whl.
File metadata
- Download URL: tkinter_tooltip-0.0.1-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/1.6.0 pkginfo/1.7.1 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d051f05d5943a17ed554674c06289984445c9f0bb99b464957867f1b7d42c48b
|
|
| MD5 |
0cf417d11e49213e00677ed4a8ed401a
|
|
| BLAKE2b-256 |
39778d47d07668d118e620996221d4a53b9f2b00a9aa4b8fdfcfae49e1ab1d7c
|