No project description provided
Project description
UITK: Dynamic UI Management for Python with PySide2
UITK is a comprehensive Python package designed to streamline the creation, management, and interaction of user interfaces (UIs) using PySide2. With a focus on versatility, UITK leverages a naming convention-based switchboard module to dynamically load UI files, register custom widgets, manage slots and styles, and facilitate interaction with widgets. The primary goal of UITK is to simplify the development process of complex UIs and enhance the efficiency of event handling.
Key Features
- Dynamic UI file loading
- Custom widget registration
- Utility properties for MainWindow and child widget subclassing
- Management of slot connections and event handling
- Support for UI hierarchy navigation and submenus
- Custom event behavior through UI tags
- UI and slot history storage and retrieval
- Widget syncing and state management.
Module Overview
Module | Description |
---|---|
switchboard | Handles dynamic UI loading, assigns convenience properties, and manages slot connections. |
events | Manages event handling for dynamic UI widgets. |
stylesheet | Defines stylesheet presets and auto-applies them to your UI upon initialization. |
widgets | A source directory for custom widgets. |
Installation:
Add the uitk
folder to a directory on your python path, or
install via pip in a command line window using:
python -m pip install uitk
Basic Example:
Create an instance of Switchboard to load and connect your dynamic ui.
from uitk import Switchboard, signals
class MyProject:
...
class MyProjectSlots(MyProject):
def __init__(self):
self.sb = self.switchboard()
@signals("released") # Specify signal(s) other than the default
def MyButtonsObjectName(self):
self.sb.message_box("Button Pressed")
sb = Switchboard(ui_location="example", slot_location=MyProjectSlots)
ui = sb.example
ui.set_style(theme="dark")
print(repr(ui))
ui.show(app_exec=True)
Advanced Example:
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.