summaryrefslogtreecommitdiff
path: root/finch/gntroomlist.h
diff options
context:
space:
mode:
authorSadrul Habib Chowdhury <sadrul@pidgin.im>2008-01-06 19:01:24 +0000
committerSadrul Habib Chowdhury <sadrul@pidgin.im>2008-01-06 19:01:24 +0000
commit028ad645bb5b933508d9c4699485fea08529fb6b (patch)
tree6543aa1c6f0cb1726c0124202258f2ba9b368633 /finch/gntroomlist.h
parentb1b503ef8603a54da857dc2d4995459b5b5030c8 (diff)
downloadpidgin-028ad645bb5b933508d9c4699485fea08529fb6b.tar.gz
Implementation of the roomlist API.
Diffstat (limited to 'finch/gntroomlist.h')
-rw-r--r--finch/gntroomlist.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/finch/gntroomlist.h b/finch/gntroomlist.h
new file mode 100644
index 0000000000..13a7f9dfa2
--- /dev/null
+++ b/finch/gntroomlist.h
@@ -0,0 +1,51 @@
+/**
+ * @file gntroomlist.h GNT Room List API
+ * @ingroup finch
+ */
+
+/* finch
+ *
+ * Finch is the legal property of its developers, whose names are too numerous
+ * to list here. Please refer to the COPYRIGHT file distributed with this
+ * source distribution.
+ *
+ * This program 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 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
+ */
+#ifndef _GNT_ROOMLIST_H
+#define _GNT_ROOMLIST_H
+
+#include "roomlist.h"
+
+/**********************************************************************
+ * @name GNT Room List API
+ **********************************************************************/
+/*@{*/
+
+/**
+ * Get the ui-functions.
+ *
+ * @return The PurpleRoomlistUiOps structure populated with the appropriate functions.
+ */
+PurpleRoomlistUiOps *finch_roomlist_get_ui_ops(void);
+
+/**
+ * Show the roomlist dialog.
+ */
+void finch_roomlist_show_all(void);
+
+/*@}*/
+
+#endif
+