aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/console/signals.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-02-15 14:58:46 +0100
committerMaximilian Hils <git@maximilianhils.com>2016-02-15 14:58:46 +0100
commit33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04 (patch)
tree31914a601302579ff817504019296fd7e9e46765 /libmproxy/console/signals.py
parent36f34f701991b5d474c005ec45e3b66e20f326a8 (diff)
downloadmitmproxy-33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04.tar.gz
mitmproxy-33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04.tar.bz2
mitmproxy-33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04.zip
move mitmproxy
Diffstat (limited to 'libmproxy/console/signals.py')
-rw-r--r--libmproxy/console/signals.py43
1 files changed, 0 insertions, 43 deletions
diff --git a/libmproxy/console/signals.py b/libmproxy/console/signals.py
deleted file mode 100644
index 6a439bf3..00000000
--- a/libmproxy/console/signals.py
+++ /dev/null
@@ -1,43 +0,0 @@
-import blinker
-
-# Show a status message in the action bar
-sig_add_event = blinker.Signal()
-
-
-def add_event(e, level):
- sig_add_event.send(
- None,
- e=e,
- level=level
- )
-
-# Show a status message in the action bar
-status_message = blinker.Signal()
-
-# Prompt for input
-status_prompt = blinker.Signal()
-
-# Prompt for a path
-status_prompt_path = 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()
-
-# Fired when settings change
-update_settings = blinker.Signal()
-
-# Fired when a flow changes
-flow_change = blinker.Signal()
-
-# Fired when the flow list or focus changes
-flowlist_change = blinker.Signal()
-
-# Pop and push view state onto a stack
-pop_view_state = blinker.Signal()
-push_view_state = blinker.Signal()