Top |
Contact Search channelsContact Search channels — service-side interface for the Contact Search channel type |
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
typedef struct _TpSvcChannelTypeContactSearch TpSvcChannelTypeContactSearch;
Dummy typedef representing any implementation of this interface.
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 }
“search-result-received”
signalvoid user_function (TpSvcChannelTypeContactSearch *self, gpointer user_data)
The SearchResultReceived D-Bus signal is emitted whenever this GObject signal is.
self |
an object |
|
arg_Result |
GHashTable * (FIXME, generate documentation) |
|
user_data |
user data set when the signal handler was connected. |
Flags: Has Details
“search-state-changed”
signalvoid 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.
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