A very simple tkinter prompt window with an animated gradient background, By: Fibo Metavinci
Project description
gradient message box
A very simple tkinter prompt window with an animated gradient background.
Installation:
pip install gradientmessagebox
Several Presets that require basic configuration:
from gradientmessagebox import ColorConfig, PresetPromptWindow, PresetLoadingMessage, PresetImageBgMessage, PresetChoiceWindow, PresetChoiceEntryWindow, PresetChoiceMultilineEntryWindow, PresetCopyTextWindow, PresetUserPasswordWindow
PresetLoadingMessage:
'''
Basic loading indicator that can create a custom Loading message, plays a simple text animation.
shows without a frame, must be closed in code.
'''
loading = PresetLoadingMessage('LOADING')
loading.Play()
time.sleep(10)
loading.Close()
PresetImageBgMessage:
'''
Basic text pop up with a background image.
shows without a frame, must be closed in code.
'''
splash = PresetImageBgMessage(msg='THE TITLE', bg_img='./bg_image.png', logo_img='./logo.png')
splash.Show()
time.sleep(10)
splash.Close()
PresetPromptWindow:
'''
Basic choice window with an accept and a reject button.
returns the text of the clicked button
'''
prompt = PresetPromptWindow('You are kinda cool!', 'OK')
prompt.Prompt()
##no return
PresetChoiceWindow:
'''
Basic choice window with an accept and a reject button.
returns the text of the clicked button
'''
choice = PresetChoiceWindow('Cool?', 'Yup', 'Nope')
answer = choice.Ask()
print(answer.response)
#~"Yup"
PresetChoiceEntryWindow:
'''
Basic choice window with a text entry, an accept button, and a reject button.
returns the text of the entry, or reject button
'''
prompt = PresetChoiceEntryWindow('Why so Cool?', 'Enter', 'Nope')
prompt.Ask()
answer = prompt.Ask()
print(answer.response))
#Returns text entered into field
#~"None of your business..."
PresetDropDownWindow:
'''
Basic choice window with a drop down, an accept button, and a reject button.
returns the drop down value, or reject button
'''
prompt = PresetDropDownWindow('How Cool?', 'Enter')
answer = prompt.DropDown(['Pretty cool', 'Cool', 'Huh?'])
print(answer.response)
#Returns text entered into field
#~"None of your business..."
PresetChoiceMultilineEntryWindow:
'''
Basic choice window with a multi line text entry, and an accept and a reject button.
returns the text of the entry, or reject button
'''
prompt = PresetChoiceMultilineEntryWindow('Coolness details:', 'Enter', 'Nope')
answer = prompt.Ask()
print(answer.response)
#Returns text entered into field
#~"None of your business..."
All window objects text and color attributes can be configured, here are some examples:
popup = PresetChoiceWindow('Cool?', 'Yup', 'Nope')
'''
Add a header text to the popup
'''
win.set_title_text('QUIZ')
'''After creating various attributes can be configured
Here we lighten the foreground, and darken the background
By Default, foreground is the text color, and background is the widget surface color.'''
popup.fg_luminance(0.65)
popup.bg_luminance(0.35)
'''
add a bg image & logo to the window
'''
window.imagery('./hvym_3d_logo.png', './logo.png')
'''If you want to invert the foreground and background colors:'''
popup.invert()
'''On instantiation a midground color is created, based on the
the color that is halfway between the foreground and background.
To swap the midground for the foreground or background:'''
popup.swap_mg_for_fg()
##or
popup.swap_mg_for_bg()
'''Here we reduce the saturation of the gradient used on the pop up background
We could also lighten or darken it with config.gradient_luminance'''
popup.gradient_saturation(0.5)
'''Set the text to a custom color with'''
popup.custom_txt_color('red')#use web color codes
Pop ups can also be configured with a config object, for more customization:
from gradientmessagebox import ColorConfig, ChoiceWindow, MultiTextChoice, CopyText, UserPasswordWindow
'''Create the color configuration for the dialog:'''
config = ColorConfig(width=450, height=300, color1="#00ffff", color2="#ffa500", alpha=1.0, saturation=1.0, direct='+x', hasframe=True)
Color colors can be manipulated per element:
'''Here we lighten the foreground, and darken the background
By Default, foreground is the text color, and background is the widget surface color.'''
config.fg_luminance(0.65)
config.bg_luminance(0.35)
'''If you want to invert the foreground and background colors:'''
config.invert()
'''On instantiation a midground color is created, based on the
the color that is halfway between the foreground and background.
To swap the midground for the foreground or background:'''
config.swap_mg_for_fg()
##or
config.swap_mg_for_bg()
'''Here we reduce the saturation of the gradient used on the pop up background
We could also lighten or darken it with config.gradient_luminance'''
config.gradient_saturation(0.5)
'''This call will add an image to the pop up background on
top of the gradient. If logo is set, a logo for the window
is applied. If useImgSize is True, the pop up size is based on
the image size passed.'''
config.imagery(path='./test-bg.png', icon_path='./logo.png', useImgSize=False)
animation can be applied to the gradient background of the pop up:
'''Speed is in ms, so lower is faster
Stretch, lengthens the gradient, generally makes it look
better if it's a little longer in length.'''
config.animation(speed=10, stretch=2)
Example1 ~ Choice Window:
'''Create the window:'''
choice = ChoiceWindow(config)
'''Create a simple pop up, with option to add a text entry field,
Without the field, the popup returns the text of the button pressed
With an entry field, the accept button returns the text from the entry field.'''
answer = choice.Ask(msg='What's up?', b_accept='Chillin', b_decline='Nah', entry=False, horizontal=True)
print(answer.response)
'''Returns: "Chillin"'''
There are currently 4 window types:
ChoiceWindow, MultiTextChoice, CopyText, UserPasswordWindow
Each Window has an Ask('your prompt') method which will pop the window.
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
File details
Details for the file gradientmessagebox-1.5.tar.gz
.
File metadata
- Download URL: gradientmessagebox-1.5.tar.gz
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c70eae5fed7aea72221488dfa11d0cb391c175e7efef658ae006c899e9c9c1e |
|
MD5 | 6a36bb58a17c10aab8d0fff74ff0e3a3 |
|
BLAKE2b-256 | a0998161d2118d9994a92cc97c708bd85e32dc0464930d26f71b4a42ca0a4d51 |
File details
Details for the file gradientmessagebox-1.5-py2.py3-none-any.whl
.
File metadata
- Download URL: gradientmessagebox-1.5-py2.py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8179479d4afe541bfac6c7e414967b23b95b0f2a0ca9b79f6ecd4fec0cb07c0b |
|
MD5 | c329dbc8a8f84fdcb83590703a28f20b |
|
BLAKE2b-256 | 1d8b62154ce47a96d0985ad6661246b4891225123f1a17dbf1f108c418e3e441 |