aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/console/signals.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/console/signals.py')
-rw-r--r--libmproxy/console/signals.py17
1 files changed, 16 insertions, 1 deletions
diff --git a/libmproxy/console/signals.py b/libmproxy/console/signals.py
index a844ef8f..8fb35cff 100644
--- a/libmproxy/console/signals.py
+++ b/libmproxy/console/signals.py
@@ -1,4 +1,19 @@
-
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()