1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00
profanity/apidocs/python/src/prof.py
2016-07-29 00:10:00 +01:00

83 lines
1.2 KiB
Python

"""
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