Skip to main content

Pretty tkinter widgets

Project description

AwesomeTkinter offers some pretty tkinter widgets
These widgets are just a tkinter widgets with custom styles and images.

current available widgets:

  • radial progressbar (flat or 3d).
  • scrollable frames,
  • 3d buttons,
  • 3d frames.
  • Scrollable text widget
  • radiobutton with better indicator/check mark quality.
  • simple scrollbar "without arrow heads"

new widgets are coming soon

Screenshots:

progressbar

More Screenshots


Applications examples that uses AwesomeTkinter:

PyIDM

Installation:

python pip install awesometkinter on windows
python3 pip install awesometkinter on linux

for quick test:

import awesometkinter as atk
atk.main()

or from terminal:

python3 -m awesometkinter
or just
awesometkinter

this will display a test window

Requirements:

  • minimum python version 3.6
  • tkinter
  • pillow >= 6.0.0

Limitations:

  • some widgets don't work well with all tkinter themes, it is recommended to set tkinter theme to 'default', 'alt', or 'classic' for things to work fine, so after creating your root you should change theme like example below

Example:

import tkinter as tk
from tkinter import ttk
import awesometkinter as atk

# our root
root = tk.Tk()
root.config(background=atk.DEFAULT_COLOR)

# it is recommended to select tkinter theme required for things to be right on windows,
# 'alt', 'default', or 'classic' work fine on windows
s = ttk.Style()
s.theme_use('default')

# 3d frame
f1 = atk.Frame3d(root)
f1.pack(side='left', expand=True, fill='both', padx=3, pady=3)

# 3d progressbar
bar = atk.RadialProgressbar3d(f1, fg='cyan', size=120)
bar.pack(padx=20, pady=20)
bar.start()

# 3d button
atk.Button3d(f1, text='3D Button').pack(pady=10)

f2 = atk.Frame3d(root)
f2.pack(side='left', expand=True, fill='both', padx=3, pady=3)

# flat radial progressbar
bar = atk.RadialProgressbar(f2, fg='green')
bar.pack(padx=30, pady=30)
bar.start()

atk.Button3d(f2, text='Pressed Button').pack(pady=10)

root.mainloop()

also, you can use a lot of useful functions that manipulate images, e.g. to create a tkinter PhotoImage from a file but want to change its size and color:

img = atk.create_image(fp='path to my image file', color='red', size=(150, 100))

Documentations:

TBA


Author:

Mahmoud Elshahat
2020

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

AwesomeTkinter-2021.1.7.tar.gz (25.4 kB view hashes)

Uploaded Source

Built Distribution

AwesomeTkinter-2021.1.7-py3-none-any.whl (29.1 kB view hashes)

Uploaded Python 3

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