about summary refs log tree commit diff stats
path: root/src/ui/notifier.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-04-21 20:17:06 +0100
committerJames Booth <boothj5@gmail.com>2013-04-21 20:17:06 +0100
commitf63f68630b84d9b94f1238e8c2d8e9c2e6ca73ab (patch)
tree9f4824b2c87b98d1f2977393e3672c1139000374 /src/ui/notifier.h
parente14cd43af4a0681cff9662bcf0ce33df4215b778 (diff)
downloadprofani-tty-f63f68630b84d9b94f1238e8c2d8e9c2e6ca73ab.tar.gz
Added notifier module
Diffstat (limited to 'src/ui/notifier.h')
-rw-r--r--src/ui/notifier.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/ui/notifier.h b/src/ui/notifier.h
new file mode 100644
index 00000000..a12dfa54
--- /dev/null
+++ b/src/ui/notifier.h
@@ -0,0 +1,28 @@
+/*
+ * notifier.h
+ *
+ * Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
+ *
+ * This file is part of Profanity.
+ *
+ * Profanity is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Profanity is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Profanity.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+void notifier_init(void);
+void notifier_uninit(void);
+
+void notify_typing(const char * const from);
+void notify_message(const char * const short_from);
+void notify_remind(void);