summaryrefslogtreecommitdiff
path: root/telepathy-glib/base-protocol.h
diff options
context:
space:
mode:
authorEitan Isaacson <eitan@monotonous.org>2011-01-03 12:56:26 -0800
committerAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2011-11-21 12:46:13 -0200
commitcfc73d25323410f394f9625d1f72571a22740f9a (patch)
treef0cc644dd8bfcacba527d1ba54d4471623825ff7 /telepathy-glib/base-protocol.h
parenta45dc50337a4e377294a6088ab3bb8ac6662c9ca (diff)
downloadtelepathy-glib-cfc73d25323410f394f9625d1f72571a22740f9a.tar.gz
Make Protocol.Interface.Addressing functionality a GInterface.
Diffstat (limited to 'telepathy-glib/base-protocol.h')
-rw-r--r--telepathy-glib/base-protocol.h68
1 files changed, 46 insertions, 22 deletions
diff --git a/telepathy-glib/base-protocol.h b/telepathy-glib/base-protocol.h
index 588fc96ad..133eee9cd 100644
--- a/telepathy-glib/base-protocol.h
+++ b/telepathy-glib/base-protocol.h
@@ -134,21 +134,6 @@ typedef void (*TpBaseProtocolGetAvatarDetailsFunc) (TpBaseProtocol *self,
guint *max_width,
guint *max_bytes);
-typedef void (*TpBaseProtocolGetAddressingDetailsFunc) (TpBaseProtocol *self,
- GStrv *addressable_vcard_fields,
- GStrv *addressable_uri_schemes);
-
-typedef gchar *(*TpBaseProtocolAddressingNormalizeVCardAddressFunc) (
- TpBaseProtocol *self,
- const gchar *vcard_field,
- const gchar *vcard_address,
- GError **error);
-
-typedef gchar *(*TpBaseProtocolAddressingNormalizeUriFunc) (
- TpBaseProtocol *self,
- const gchar *uri,
- GError **error);
-
struct _TpBaseProtocolClass
{
GObjectClass parent_class;
@@ -182,14 +167,8 @@ struct _TpBaseProtocolClass
GStrv (*dup_authentication_types) (TpBaseProtocol *self);
- TpBaseProtocolGetAddressingDetailsFunc get_addressing_details;
-
- TpBaseProtocolAddressingNormalizeVCardAddressFunc normalize_vcard_address;
-
- TpBaseProtocolAddressingNormalizeUriFunc normalize_uri;
-
/*<private>*/
- GCallback padding[2];
+ GCallback padding[5];
TpBaseProtocolClassPrivate *priv;
};
@@ -202,6 +181,51 @@ const TpPresenceStatusSpec *tp_base_protocol_get_statuses (TpBaseProtocol *self)
TpBaseConnection *tp_base_protocol_new_connection (TpBaseProtocol *self,
GHashTable *asv, GError **error);
+
+/* ---- Implemented by subclasses for Addressing support ---- */
+
+#define TP_TYPE_PROTOCOL_ADDRESSING \
+ (tp_protocol_addressing_get_type ())
+
+#define TP_IS_PROTOCOL_ADDRESSING(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
+ TP_TYPE_PROTOCOL_ADDRESSING))
+
+#define TP_PROTOCOL_ADDRESSING_GET_INTERFACE(obj) \
+ (G_TYPE_INSTANCE_GET_INTERFACE ((obj), \
+ TP_TYPE_PROTOCOL_ADDRESSING, TpProtocolAddressingInterface))
+
+typedef struct _TpProtocolAddressingInterface TpProtocolAddressingInterface;
+
+typedef GStrv (*TpBaseProtocolGetSupportedVCardFields) (TpBaseProtocol *self);
+
+typedef GStrv (*TpBaseProtocolGetSupportedURISchemes) (TpBaseProtocol *self);
+
+typedef gchar *(*TpBaseProtocolNormalizeVCardAddressFunc) (
+ TpBaseProtocol *self,
+ const gchar *vcard_field,
+ const gchar *vcard_address,
+ GError **error);
+
+typedef gchar *(*TpBaseProtocolNormalizeURIFunc) (
+ TpBaseProtocol *self,
+ const gchar *uri,
+ GError **error);
+
+struct _TpProtocolAddressingInterface {
+ GTypeInterface parent;
+
+ TpBaseProtocolGetSupportedVCardFields get_supported_vcard_fields;
+
+ TpBaseProtocolGetSupportedURISchemes get_supported_uri_schemes;
+
+ TpBaseProtocolNormalizeVCardAddressFunc normalize_vcard_address;
+
+ TpBaseProtocolNormalizeURIFunc normalize_uri;
+};
+
+GType tp_protocol_addressing_get_type (void) G_GNUC_CONST;
+
G_END_DECLS
#endif