Skip to main content

A tkinter toggle widget is a reusable UI component for tkinter application.

Project description

tkinter-toggle

A tkinter toggle widget is a reusable UI component that lets users instantly switch between two states (like On/Off) by dynamically updating the UI and executing code upon interaction.

Installation

It is recommended to install Python packages inside a virtual environment to prevent dependency conflicts.

1. Create and activate a virtual environment (Optional but recommended):

# On Windows
python -m venv venv
venv\Scripts\activate

# On macOS/Linux
python3 -m venv venv
source venv/bin/activate

2. Install the package:

pip install tkinter-toggle

Quick Start

Import the toggle widget and attach it to your Tkinter window. Don't forget to call .pack(), .grid(), or .place() to display it!

import tkinter as tk
from tkinter_toggle import tkToggle

def on_click(event):
    print(event.value)

root = tk.Tk()

# Create the instance
toggle = tkToggle(root, default=False, size=30, bg="red", command=on_click)

# Show the toggle widget on the window
toggle.pack()

root.mainloop()

Configuration

When initializing tkToggle(master, ...), you can pass several optional arguments to customize its behavior and appearance.

Arguments

Argument Type Default Optional Description
default bool False Yes The initial state or value of the toggle widget.
size int 20 Yes The dimensions (width/height) of the widget.
bg str "#0000ff" Yes Background color (hex code or Tkinter color name).
command Callable "" Yes Function to execute when the user interacted with toggle widget.

Note: The first argument must always be the parent window or frame (master).

Methods

Once initialized, you can interact with the widget programmatically using its built-in methods:

  • set_value(value: bool): Updates the current state of the toggle widget to the given boolean value.
  • get_value() -> bool: Returns the current state of the toggle widget.
  • toggle(): Reverse the current state of the toggle widget.

Full Example

Here is a complete working example. You can also view this code directly in the repository at tests/example.py.

import tkinter as tk
from tkinter_toggle import tkToggle

def on_click(event):
    print(event.value)

# Initialize the main window
root = tk.Tk()
root.geometry("300x200+100+100")
root.title("Toggle Demo")

# Create and configure the widget
toggle = tkToggle(
    root, 
    default=False, 
    size=30, 
    bg="green", 
    command=on_click
)

# Display the toggle widget
toggle.pack(pady=20)

# Modify the value programmatically
toggle.toggle()

# Run the application
root.mainloop()

PyPI Project

The official package registry, release history, and download statistics are available on the Python Package Index (PyPI):
https://pypi.org/project/tkinter-toggle/

License

This project is licensed under the GNU Lesser General Public License (LGPL). See the COPYING.LESSER and COPYING files for full details.


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

tkinter_toggle-0.1.1.tar.gz (17.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tkinter_toggle-0.1.1-py3-none-any.whl (18.4 kB view details)

Uploaded Python 3

File details

Details for the file tkinter_toggle-0.1.1.tar.gz.

File metadata

  • Download URL: tkinter_toggle-0.1.1.tar.gz
  • Upload date:
  • Size: 17.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for tkinter_toggle-0.1.1.tar.gz
Algorithm Hash digest
SHA256 d97a0a9be3c4ff703f7f511e7d77632bb796cac361f3738d726a6aeaa6e1f75a
MD5 d6383365c8491e29e6420ae8efb58fb6
BLAKE2b-256 d147525a1867fa92e5060d87b461e9b6cd55a72e0dc88afac9150b756da75da8

See more details on using hashes here.

Provenance

The following attestation bundles were made for tkinter_toggle-0.1.1.tar.gz:

Publisher: publish.yml on akarshit-1609/tkinter-toggle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tkinter_toggle-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: tkinter_toggle-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 18.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for tkinter_toggle-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 aeca3a11d47bc68f10db49310d9ff154201e01c221c5dda8cac96c2c0b91c797
MD5 dadd9d34e4e244f62669a30e5568aa92
BLAKE2b-256 1fed8f57ec1cded35442953d468f823812294a7d2117ad43621839c97e2d87c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tkinter_toggle-0.1.1-py3-none-any.whl:

Publisher: publish.yml on akarshit-1609/tkinter-toggle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page