aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/console/signals.py
blob: e4c11f5ab7559fbcc25f44c9ddc4ebfee0a4fc28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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_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()


# Pop and push view state onto a stack
pop_view_state = blinker.Signal()
push_view_state = blinker.Signal()