A comprehensive multilingual GUI extension library for Tkinter with enhanced message boxes, and Windows-specific features
Project description
Tkface
Restore the "face" to your Tkinter!
A modern, multilingual GUI extension library for Tkinter (tkinter)-bringing back the "face" (interface) that Tkinter left behind.
📖 Overview
Tkface is a Python library designed to restore and enhance the "face" (user interface) of Tkinter. While Tkinter is a powerful toolkit, its dialogs and user-facing components are minimal and lack modern, friendly interfaces. Tkface fills this gap with beautiful, multilingual dialogs, advanced message boxes, and Windows-specific features.
- Restore the Face: "Tkinter" stands for "Tk interface", but ironically, its "face" (user interface) is often lacking. Tkface restores and enhances this missing "face" with beautiful, multilingual dialogs and user-centric design.
- Vibe Coding: Developed with a "Vibe Coding" approach-prioritizing developer joy, rapid prototyping, and a sense of fun. The codebase is hackable, readable, and easy to extend.
🔧 Requirements
- Python 3.7+
- Tkinter (included with Python)
- No additional dependencies
📦 Installation
Install the latest version from PyPI:
pip install tkface
Or install from the GitHub repository for the latest changes:
pip install git+https://github.com/mashu3/tkface.git
🚀 Usage
Message Boxes
from tkface import messagebox
# Simple information dialog
messagebox.showinfo("Success", "Operation completed successfully!")
# Multilingual support
messagebox.showerror("Error", "An error has occurred!", language="ja")
# Confirmation dialog
if messagebox.askyesno("Confirm", "Do you want to save?"):
save_file()
Input Dialogs
from tkface import simpledialog
# String input
name = simpledialog.askstring("Name", "Enter your name:")
# Integer input with validation
age = simpledialog.askinteger("Age", "Enter your age:", minvalue=0, maxvalue=120)
Windows-Specific Features
import tkinter as tk
from tkface import win
root = tk.Tk()
win.dpi() # Enable DPI awareness (Windows only)
win.unround(root) # Disable corner rounding (Windows 11 only)
root.mainloop()
Language Management
from tkface import lang
import tkinter as tk
root = tk.Tk()
lang.set("ja", root) # Set language manually
lang.set("auto", root) # Auto-detect system language
# Register custom translations
custom_translations = {
"ja": {
"Custom Message": "カスタムメッセージ",
"Custom Button": "カスタムボタン"
}
}
from tkface import messagebox
messagebox.showinfo(
"Custom Message",
"This will be translated",
custom_translations=custom_translations,
language="ja"
)
🧩 Features
- Multilingual Support: Automatic language detection, English/Japanese built-in, custom dictionaries
- Enhanced Message Boxes: All standard and advanced dialogs, custom positioning, keyboard shortcuts, tab navigation
- Enhanced Input Dialogs: String/integer/float input, validation, password input, custom positioning
- Windows Features: DPI awareness, Windows 11 corner rounding control (no-ops on other OS)
📁 Examples
See the examples/ directory for complete working examples:
demo_messagebox.py- Message box demonstrationsdemo_simpledialog.py- Input dialog demonstrations
Note: Test files are not included in the public release. For testing, see the development repository.
🌐 Supported Languages
- English (en): Default, comprehensive translations
- Japanese (ja): Complete Japanese translations
You can add support for any language by providing translation dictionaries:
custom_translations = {
"fr": {
"ok": "OK",
"cancel": "Annuler",
"yes": "Oui",
"no": "Non",
"Error": "Erreur",
"Warning": "Avertissement"
}
}
📝 License
This project is licensed under the MIT License. See the LICENSE file for details.
👤 Author
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 tkface-0.0.1.tar.gz.
File metadata
- Download URL: tkface-0.0.1.tar.gz
- Upload date:
- Size: 15.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01d42c249fd6087bba79af955e3b536246376a071e55eb2029413028b774ee8d
|
|
| MD5 |
0ad43fceb570b92f1eb43bfc05fcdab9
|
|
| BLAKE2b-256 |
2afe04c8b569153b13ec733c94f571b3b9df1581537d90753ab2f8ec595a1c34
|
File details
Details for the file tkface-0.0.1-py3-none-any.whl.
File metadata
- Download URL: tkface-0.0.1-py3-none-any.whl
- Upload date:
- Size: 15.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea5d4ed910e84ced4a42d7b139c7b3e9644cf6cf52849ffc6bb9128cb0e24f52
|
|
| MD5 |
1eb99acd5e2937ca3865960271901576
|
|
| BLAKE2b-256 |
7707b836553c5940c25a90d979eeb7d6b84813413e6cb188183abf4d000346c2
|