1import blinker
2
3
4# Show a status message in the action bar
5status_message = blinker.Signal()
6
7# Prompt for input
8status_prompt = blinker.Signal()
9
10# Prompt for a path
11status_prompt_path = blinker.Signal()
12
13# Prompt for a single keystroke
14status_prompt_onekey = blinker.Signal()
15
16# Prompt for a command
17status_prompt_command = blinker.Signal()
18
19# Call a callback in N seconds
20call_in = blinker.Signal()
21
22# Focus the body, footer or header of the main window
23focus = blinker.Signal()
24
25# Fired when settings change
26update_settings = blinker.Signal()
27
28# Fired when a flow changes
29flow_change = blinker.Signal()
30
31# Fired when the flow list or focus changes
32flowlist_change = blinker.Signal()
33
34# Pop and push view state onto a stack
35pop_view_state = blinker.Signal()
36push_view_state = blinker.Signal()
37
38# Fired when the key bindings change
39keybindings_change = blinker.Signal()
40