about summary refs log tree commit diff stats
path: root/apidocs/python/src/prof.py
blob: 0fa478fba12ac25e061dea71d838ccdeafbe5c61 (plain) (blame)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
"""
Profanity plugin API
"""

def cons_alert(): 
    """
    Highlights the console window in the status bar.
    """
    pass

def cons_show(message): 
    """
    Show a message in the console.\n
    *message*: The message to print\n 
    Return: True on success, False on failure
    """
    pass

def cons_show_themed(): 
    """\n	
    Show a message in the console, using the specified theme.
    | Themes can be must be specified in ~/.local/share/profanity/plugin_themes\n
    *group* The group name in the themes file, or NULL\n
    *item* The item name within the group, or NULL\n
    *def* A default colour if the theme cannot be found, or NULL\n
    *message* the message to print\n
    Return: True on success, False on failure
    """
    pass

def cons_bad_cmd_usage(): 
	pass

def register_command(): 
	pass

def register_timed(): 
	pass

def register_ac(): 
	pass

def send_line(): 
	pass

def notify(): 
	pass

def get_current_recipient(): 
	pass

def get_current_muc(): 
	pass

def current_win_is_console(): 
	pass

def log_debug(): 
	pass

def log_info(): 
	pass

def log_warning(): 
	pass

def log_error(): 
	pass

def win_exists(): 
	pass

def win_create(): 
	pass

def win_focus(): 
	pass

def win_show(): 
	pass

def win_show_themed(): 
	pass