Contact Search channels

Contact Search channels — service-side interface for the Contact Search channel type

Functions

Signals

void search-result-received Has Details
void search-state-changed Has Details

Types and Values

Object Hierarchy

    GInterface
    ╰── TpSvcChannelTypeContactSearch

Includes

#include <telepathy-glib/telepathy-glib-dbus.h>

Description

Some instant messaging protocols allow searching for contacts by name or other details. In Telepathy, each search attempt is represented as a Channel.

This section documents the auto-generated C wrappers for the Contact Search channel type.

Functions

tp_svc_channel_type_contact_search_emit_search_result_received ()

void
tp_svc_channel_type_contact_search_emit_search_result_received
                               (gpointer instance,
                                GHashTable *arg_Result);

Type-safe wrapper around g_signal_emit to emit the SearchResultReceived signal on interface org.freedesktop.Telepathy.Channel.Type.ContactSearch.

Parameters

instance

The object implementing this interface

 

arg_Result

GHashTable * (FIXME, generate documentation)

 

tp_svc_channel_type_contact_search_emit_search_state_changed ()

void
tp_svc_channel_type_contact_search_emit_search_state_changed
                               (gpointer instance,
                                guint arg_State,
                                const gchar *arg_Error,
                                GHashTable *arg_Details);

Type-safe wrapper around g_signal_emit to emit the SearchStateChanged signal on interface org.freedesktop.Telepathy.Channel.Type.ContactSearch.

Parameters

instance

The object implementing this interface

 

arg_State

guint (FIXME, generate documentation)

 

arg_Error

const gchar * (FIXME, generate documentation)

 

arg_Details

GHashTable * (FIXME, generate documentation)

 

tp_svc_channel_type_contact_search_implement_more ()

void
tp_svc_channel_type_contact_search_implement_more
                               (TpSvcChannelTypeContactSearchClass *klass,
                                tp_svc_channel_type_contact_search_more_impl impl);

Register an implementation for the More method in the vtable of an implementation of this interface. To be called from the interface init function.

Parameters

klass

A class whose instances implement this interface

 

impl

A callback used to implement the More D-Bus method

 

tp_svc_channel_type_contact_search_implement_search ()

void
tp_svc_channel_type_contact_search_implement_search
                               (TpSvcChannelTypeContactSearchClass *klass,
                                tp_svc_channel_type_contact_search_search_impl impl);

Register an implementation for the Search method in the vtable of an implementation of this interface. To be called from the interface init function.

Parameters

klass

A class whose instances implement this interface

 

impl

A callback used to implement the Search D-Bus method

 

tp_svc_channel_type_contact_search_implement_stop ()

void
tp_svc_channel_type_contact_search_implement_stop
                               (TpSvcChannelTypeContactSearchClass *klass,
                                tp_svc_channel_type_contact_search_stop_impl impl);

Register an implementation for the Stop method in the vtable of an implementation of this interface. To be called from the interface init function.

Parameters

klass

A class whose instances implement this interface

 

impl

A callback used to implement the Stop D-Bus method

 

tp_svc_channel_type_contact_search_more_impl ()

void
(*tp_svc_channel_type_contact_search_more_impl)
                               (TpSvcChannelTypeContactSearch *self,
                                DBusGMethodInvocation *context);

The signature of an implementation of the D-Bus method More on interface org.freedesktop.Telepathy.Channel.Type.ContactSearch.

Parameters

self

The object implementing this interface

 

context

Used to return values or throw an error

 

tp_svc_channel_type_contact_search_return_from_more ()

void
tp_svc_channel_type_contact_search_return_from_more
                               (DBusGMethodInvocation *context);

Return successfully by calling dbus_g_method_return(). This inline function exists only to provide type-safety.

Parameters

context

The D-Bus method invocation context

 

tp_svc_channel_type_contact_search_return_from_search ()

void
tp_svc_channel_type_contact_search_return_from_search
                               (DBusGMethodInvocation *context);

Return successfully by calling dbus_g_method_return(). This inline function exists only to provide type-safety.

Parameters

context

The D-Bus method invocation context

 

tp_svc_channel_type_contact_search_return_from_stop ()

void
tp_svc_channel_type_contact_search_return_from_stop
                               (DBusGMethodInvocation *context);

Return successfully by calling dbus_g_method_return(). This inline function exists only to provide type-safety.

Parameters

context

The D-Bus method invocation context

 

tp_svc_channel_type_contact_search_search_impl ()

void
(*tp_svc_channel_type_contact_search_search_impl)
                               (TpSvcChannelTypeContactSearch *self,
                                GHashTable *in_Terms,
                                DBusGMethodInvocation *context);

The signature of an implementation of the D-Bus method Search on interface org.freedesktop.Telepathy.Channel.Type.ContactSearch.

Parameters

self

The object implementing this interface

 

in_Terms

GHashTable * (FIXME, generate documentation)

 

context

Used to return values or throw an error

 

tp_svc_channel_type_contact_search_stop_impl ()

void
(*tp_svc_channel_type_contact_search_stop_impl)
                               (TpSvcChannelTypeContactSearch *self,
                                DBusGMethodInvocation *context);

The signature of an implementation of the D-Bus method Stop on interface org.freedesktop.Telepathy.Channel.Type.ContactSearch.

Parameters

self

The object implementing this interface

 

context

Used to return values or throw an error

 

Types and Values

TpSvcChannelTypeContactSearch

typedef struct _TpSvcChannelTypeContactSearch TpSvcChannelTypeContactSearch;

Dummy typedef representing any implementation of this interface.


TpSvcChannelTypeContactSearchClass

typedef struct _TpSvcChannelTypeContactSearchClass TpSvcChannelTypeContactSearchClass;

The class of TpSvcChannelTypeContactSearch.

In a full implementation of this interface (i.e. all methods implemented), the interface initialization function used in G_IMPLEMENT_INTERFACE() would typically look like this:

static void
implement_channel_type_contact_search (gpointer klass,
    gpointer unused G_GNUC_UNUSED)
{
#define IMPLEMENT(x) tp_svc_channel_type_contact_search_implement_##x (\
  klass, my_object_##x)
  IMPLEMENT (search);
  IMPLEMENT (more);
  IMPLEMENT (stop);
#undef IMPLEMENT
}

Signal Details

The “search-result-received” signal

void
user_function (TpSvcChannelTypeContactSearch *self,
               gpointer                       user_data)

The SearchResultReceived D-Bus signal is emitted whenever this GObject signal is.

Parameters

self

an object

 

arg_Result

GHashTable * (FIXME, generate documentation)

 

user_data

user data set when the signal handler was connected.

 

Flags: Has Details


The “search-state-changed” signal

void
user_function (TpSvcChannelTypeContactSearch *self,
               guint                          arg_State,
               gchar                         *arg_Error,
               gpointer                       user_data)

The SearchStateChanged D-Bus signal is emitted whenever this GObject signal is.

Parameters

self

an object

 

arg_State

guint (FIXME, generate documentation)

 

arg_Error

const gchar * (FIXME, generate documentation)

 

arg_Details

GHashTable * (FIXME, generate documentation)

 

user_data

user data set when the signal handler was connected.

 

Flags: Has Details