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.
  • config(bg: String = None, size: int = None, command: Callable = None): Modify size, background or command (function to invoke when the widget action occurs) 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()

# Configure this toggle widget
toggle.config(bg="blue", size=50)

# 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.2.tar.gz (17.5 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.2-py3-none-any.whl (18.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: tkinter_toggle-0.1.2.tar.gz
  • Upload date:
  • Size: 17.5 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.2.tar.gz
Algorithm Hash digest
SHA256 abf2a0456a2edb5b796f5cd97a4343c6e04fb5721de6cf458208a332390a484f
MD5 7023550c1e8bfe58e41ad388754025d3
BLAKE2b-256 2bab32d78e8913ea6a4ba81c2b3b4fc6382bd8317ca82e2c6e6033b52b082c9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tkinter_toggle-0.1.2.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.2-py3-none-any.whl.

File metadata

  • Download URL: tkinter_toggle-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 18.6 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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f4c359315c9d6057fe4f45caf6364d4440a8b0ad4f2762b0777898d0d42f3998
MD5 e7f67d9772c467fb1d917e6aabd3b6e8
BLAKE2b-256 ba8e41e040fb15581abb1a1041cc352111282cda19280c432a5a664821a0b46a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tkinter_toggle-0.1.2-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