pidgin/pidgin

79e613af04c4
Parents 729ef4fec9b0
Children ed15916ec9ed
Start of moving attention to it's own files
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/libpurple/attention.h Thu Nov 23 22:28:09 2017 -0600
@@ -0,0 +1,60 @@
+/* purple
+ *
+ * Purple 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 PURPLE_ATTENTION_H
+#define PURPLE_ATTENTION_H
+
+/**
+ * SECTION:attention
+ * @section_id: libpurple-attention
+ * @short_description: <filename>attention.h</filename>
+ * @title: Attention Object and Interfaces
+ */
+
+#define PURPLE_TYPE_PROTOCOL_ATTENTION_IFACE (purple_protocol_attention_iface_get_type())
+
+typedef struct _PurpleProtocolAttentionIface PurpleProtocolAttentionIface;
+
+/**
+ * PurpleProtocolAttentionIface:
+ *
+ * The protocol attention interface.
+ *
+ * This interface provides attention API for sending and receiving
+ * zaps/nudges/buzzes etc.
+ */
+struct _PurpleProtocolAttentionIface
+{
+ /*< private >*/
+ GTypeInterface parent_iface;
+
+ /*< public >*/
+ gboolean (*send)(PurpleConnection *gc, const char *username,
+ guint type);
+
+ GList *(*get_types)(PurpleAccount *acct);
+};
+
+#define PURPLE_PROTOCOL_HAS_ATTENTION_IFACE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_PROTOCOL_ATTENTION_IFACE))
+#define PURPLE_PROTOCOL_GET_ATTENTION_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE((obj), PURPLE_TYPE_PROTOCOL_ATTENTION_IFACE, \
+ PurpleProtocolAttentionIface))
+
+#endif /* PURPLE_ATTENTION_H */
--- a/libpurple/protocol.h Sat Jan 06 03:01:07 2018 +0000
+++ b/libpurple/protocol.h Thu Nov 23 22:28:09 2017 -0600
@@ -588,34 +588,6 @@
#define PURPLE_PROTOCOL_GET_ROOMLIST_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE((obj), PURPLE_TYPE_PROTOCOL_ROOMLIST_IFACE, \
PurpleProtocolRoomlistIface))
-#define PURPLE_TYPE_PROTOCOL_ATTENTION_IFACE (purple_protocol_attention_iface_get_type())
-
-typedef struct _PurpleProtocolAttentionIface PurpleProtocolAttentionIface;
-
-/**
- * PurpleProtocolAttentionIface:
- *
- * The protocol attention interface.
- *
- * This interface provides attention API for sending and receiving
- * zaps/nudges/buzzes etc.
- */
-struct _PurpleProtocolAttentionIface
-{
- /*< private >*/
- GTypeInterface parent_iface;
-
- /*< public >*/
- gboolean (*send)(PurpleConnection *gc, const char *username,
- guint type);
-
- GList *(*get_types)(PurpleAccount *acct);
-};
-
-#define PURPLE_PROTOCOL_HAS_ATTENTION_IFACE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), PURPLE_TYPE_PROTOCOL_ATTENTION_IFACE))
-#define PURPLE_PROTOCOL_GET_ATTENTION_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE((obj), PURPLE_TYPE_PROTOCOL_ATTENTION_IFACE, \
- PurpleProtocolAttentionIface))
-
#define PURPLE_TYPE_PROTOCOL_MEDIA_IFACE (purple_protocol_media_iface_get_type())
typedef struct _PurpleProtocolMediaIface PurpleProtocolMediaIface;
@@ -1091,6 +1063,12 @@
gboolean purple_protocol_attention_iface_send(PurpleProtocol *protocol,
PurpleConnection *gc, const char *username, guint type);
+/**
+ * purple_protocol_attention_iface_get_types:
+ * @protocol: The #PurpleProtocol.
+ * @account: The #PurpleAccount whose attention types to get.
+ *
+ * Returns a list of
GList *purple_protocol_attention_iface_get_types(PurpleProtocol *protocol,
PurpleAccount *acct);