mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
20 lines
416 B
Python
20 lines
416 B
Python
import blinker
|
|
|
|
# Show a status message in the action bar
|
|
status_message = blinker.Signal()
|
|
|
|
# Prompt for input
|
|
status_prompt = blinker.Signal()
|
|
|
|
# Prompt for a path
|
|
status_path_prompt = blinker.Signal()
|
|
|
|
# Prompt for a single keystroke
|
|
status_prompt_onekey = blinker.Signal()
|
|
|
|
# Call a callback in N seconds
|
|
call_in = blinker.Signal()
|
|
|
|
# Focus the body, footer or header of the main window
|
|
focus = blinker.Signal()
|