/usr/include/libsocialweb/libsocialweb-client/sw-client-service.h is in libsocialweb-client-dev 0.25.20-6build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | /*
* libsocialweb - social data store
* Copyright (C) 2008 - 2009 Intel Corporation.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU Lesser General Public License,
* version 2.1, as published by the Free Software Foundation.
*
* This program is distributed in the hope it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
* more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef _SW_CLIENT_SERVICE
#define _SW_CLIENT_SERVICE
#include <glib-object.h>
#include <gio/gio.h>
#include <libsocialweb-client/sw-item.h>
#include <libsocialweb-client/sw-client-item-view.h>
#include <libsocialweb-client/sw-contact.h>
#include <libsocialweb-client/sw-client-contact-view.h>
G_BEGIN_DECLS
#define SW_CLIENT_TYPE_SERVICE sw_client_service_get_type()
#define SW_CLIENT_SERVICE(obj) \
(G_TYPE_CHECK_INSTANCE_CAST ((obj), SW_CLIENT_TYPE_SERVICE, SwClientService))
#define SW_CLIENT_SERVICE_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST ((klass), SW_CLIENT_TYPE_SERVICE, SwClientServiceClass))
#define SW_CLIENT_IS_SERVICE(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), SW_CLIENT_TYPE_SERVICE))
#define SW_CLIENT_IS_SERVICE_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE ((klass), SW_CLIENT_TYPE_SERVICE))
#define SW_CLIENT_SERVICE_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS ((obj), SW_CLIENT_TYPE_SERVICE, SwClientServiceClass))
typedef struct {
GObject parent;
} SwClientService;
typedef struct {
GObjectClass parent_class;
void (*capabilities_changed) (SwClientService *service, const char **caps);
void (*user_changed) (SwClientService *service);
void (*avatar_retrieved) (SwClientService *service, gchar *path);
void (*status_updated) (SwClientService *service, gboolean success);
} SwClientServiceClass;
GType sw_client_service_get_type (void);
/* Keep in sync with sw-service.h */
/* FIXME: These defines without namespace make the g-i scanner complain */
#define IS_CONFIGURED "is-configured"
#define CAN_VERIFY_CREDENTIALS "can-verify-credentials"
#define CREDENTIALS_VALID "credentials-valid"
#define CREDENTIALS_INVALID "credentials-invalid"
#define CAN_UPDATE_STATUS "can-update-status"
#define CAN_REQUEST_AVATAR "can-request-avatar"
#define CAN_GEOTAG "can-geotag"
#define HAS_UPDATE_STATUS_IFACE "has-update-status-iface"
#define HAS_AVATAR_IFACE "has-avatar-iface"
#define HAS_PHOTO_UPLOAD_IFACE "has-photo-upload-iface"
#define HAS_VIDEO_UPLOAD_IFACE "has-video-upload-iface"
#define HAS_BANISHABLE_IFACE "has-banishable-iface"
#define HAS_QUERY_IFACE "has-query-iface"
#define HAS_CONTACTS_QUERY_IFACE "has-contacts-query-iface"
#define CAN_UPDATE_STATUS_WITH_GEOTAG "can-update-status-with-geotag"
typedef void
(*SwClientServiceGetCapabilitiesCallback) (SwClientService *service,
const char **caps,
const GError *error,
gpointer userdata);
void
sw_client_service_get_static_capabilities (SwClientService *service,
SwClientServiceGetCapabilitiesCallback cb,
gpointer userdata);
void
sw_client_service_get_dynamic_capabilities (SwClientService *service,
SwClientServiceGetCapabilitiesCallback cb,
gpointer userdata);
void
sw_client_service_request_avatar (SwClientService *service);
typedef void
(*SwClientServiceUpdateStatusCallback) (SwClientService *service,
const GError *error,
gpointer userdata);
void
sw_client_service_credentials_updated (SwClientService *service);
void
sw_client_service_update_status (SwClientService *service,
SwClientServiceUpdateStatusCallback cb,
const gchar *status_msg,
gpointer userdata);
void
sw_client_service_update_status_with_fields (SwClientService *service,
SwClientServiceUpdateStatusCallback cb,
const gchar *status_msg,
GHashTable *fields,
gpointer userdata);
gboolean
sw_client_service_upload_photo (SwClientService *service,
const char *filename,
const GHashTable *fields,
GCancellable *cancellable,
GFileProgressCallback progress_callback,
gpointer progress_callback_data,
GAsyncReadyCallback callback,
gpointer userdata);
gboolean
sw_client_service_upload_photo_finish (SwClientService *service,
GAsyncResult *res,
GError **error);
gboolean
sw_client_service_upload_video (SwClientService *service,
const char *filename,
const GHashTable *fields,
GCancellable *cancellable,
GFileProgressCallback progress_callback,
gpointer progress_callback_data,
GAsyncReadyCallback callback,
gpointer userdata);
gboolean
sw_client_service_upload_video_finish (SwClientService *service,
GAsyncResult *res,
GError **error);
typedef void (*SwClientServiceQueryOpenViewCallback) (SwClientService *query,
SwClientItemView *item_view,
gpointer userdata);
void
sw_client_service_query_open_view (SwClientService *service,
const gchar *query,
GHashTable *params,
SwClientServiceQueryOpenViewCallback cb,
gpointer userdata);
typedef void (*SwClientServiceContactsQueryOpenViewCallback)
(SwClientService *query,
SwClientContactView *contact_view,
gpointer userdata);
void
sw_client_service_contacts_query_open_view
(SwClientService *service,
const gchar *query,
GHashTable *params,
SwClientServiceContactsQueryOpenViewCallback cb,
gpointer userdata);
void
sw_client_service_banishable_hide_item (SwClientService *service,
const gchar *uid);
const char *sw_client_service_get_name (SwClientService *service);
const char *sw_client_service_get_display_name (SwClientService *service);
gboolean sw_client_service_has_cap (const char **caps, const char *cap);
G_END_DECLS
#endif /* _SW_CLIENT_SERVICE */
|