This example demonstrates how to configure a TimePicker widget using settings loaded from a JSON file. Instead of using interactive controls to modify the TimePicker's appearance and behavior, this example reads all settings from a configuration file.
json_settings_example.py
- The main example applicationtimepicker_settings.json
- The configuration file containing all settings
The timepicker_settings.json
file supports the following settings:
{
"theme": "Light", // Can be "Light", "Dark", or "Custom"
"width": 180, // Width of the TimePicker (100-400)
"height": 120, // Height of the TimePicker (80-300)
"item_height": 40, // Height of each time item (20-80)
"visible_items": 3, // Number of visible items (3-7)
"text_color": "#333333", // Text color in hex format
"background_color": "#FFFFFF", // Background color in hex format
"highlight_color": "#E3F2FD", // Selection highlight color in hex format
"scroll_speed": 18.0, // Scrolling speed (1.0-50.0)
"smoothness": 0.90, // Scrolling smoothness (0.1-1.0)
"animation_duration": 300 // Animation duration in milliseconds (100-2000)
}
- JSON Configuration: All settings are loaded from a JSON file
- Settings Display: Shows current settings in a monospace font
- Theme Support: Built-in support for Light and Dark themes
- Fallback Values: Default values are used if the JSON file is missing or invalid
- Time Display: Shows the currently selected time
- Read-only Interface: Settings can only be changed by editing the JSON file
- Configure the TimePicker by editing
timepicker_settings.json
- Run the example:
python json_settings_example.py
{
"theme": "Light",
"text_color": "#333333",
"background_color": "#FFFFFF",
"highlight_color": "#E3F2FD"
}
{
"theme": "Dark",
"text_color": "#FFFFFF",
"background_color": "#121212",
"highlight_color": "#1F1F1F"
}
Set "theme": "Custom"
and specify your own colors using hex values:
{
"theme": "Custom",
"text_color": "#YOUR_COLOR",
"background_color": "#YOUR_COLOR",
"highlight_color": "#YOUR_COLOR"
}
width
: 100-400 pixelsheight
: 80-300 pixelsitem_height
: 20-80 pixelsvisible_items
: 3-7 itemsscroll_speed
: 1.0-50.0smoothness
: 0.1-1.0animation_duration
: 100-2000 milliseconds
If the JSON file is missing or contains invalid settings, the example will:
- Print an error message to the console
- Use default values for all settings
- Continue running with the default configuration
- Python 3.6+
- PySide6
- timepicker_control (custom module)
Install required packages:
pip install PySide6
pip install timepicker-control
- Settings are read-only during runtime
- Changes to the JSON file require restarting the application
- The window has a minimum size of 600x400 pixels
- All color values must be in hex format (e.g., "#FFFFFF")