about summary refs log tree commit diff stats
path: root/apidocs/python/src
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-07-29 00:10:00 +0100
committerJames Booth <boothj5@gmail.com>2016-07-29 00:10:00 +0100
commitc8f53a64fe6f840226919460d7cdc36fd4b55d9e (patch)
tree5e10c0f28c5521e13acf22c6399afcbff5cbb063 /apidocs/python/src
parent6c1fef522a6bd74033ddf8497e9cd305026b0a56 (diff)
downloadprofani-tty-c8f53a64fe6f840226919460d7cdc36fd4b55d9e.tar.gz
Add Python API docs
Diffstat (limited to 'apidocs/python/src')
-rw-r--r--apidocs/python/src/prof.py83
1 files changed, 83 insertions, 0 deletions
diff --git a/apidocs/python/src/prof.py b/apidocs/python/src/prof.py
new file mode 100644
index 00000000..0fa478fb
--- /dev/null
+++ b/apidocs/python/src/prof.py
@@ -0,0 +1,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
\ No newline at end of file