GSeekable: document seek-past-end semantics
[glib.git] / gio / gpermission.h
blob49c29910c8914ee02176e49f137430b3271087e3
1 /*
2 * Copyright © 2010 Codethink Limited
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the licence, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
19 * Author: Ryan Lortie <desrt@desrt.ca>
22 #ifndef __G_PERMISSION_H__
23 #define __G_PERMISSION_H__
25 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
26 #error "Only <gio/gio.h> can be included directly."
27 #endif
29 #include <gio/giotypes.h>
31 G_BEGIN_DECLS
33 #define G_TYPE_PERMISSION (g_permission_get_type ())
34 #define G_PERMISSION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
35 G_TYPE_PERMISSION, GPermission))
36 #define G_PERMISSION_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
37 G_TYPE_PERMISSION, GPermissionClass))
38 #define G_IS_PERMISSION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
39 G_TYPE_PERMISSION))
40 #define G_IS_PERMISSION_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
41 G_TYPE_PERMISSION))
42 #define G_PERMISSION_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
43 G_TYPE_PERMISSION, GPermissionClass))
45 typedef struct _GPermissionPrivate GPermissionPrivate;
46 typedef struct _GPermissionClass GPermissionClass;
48 struct _GPermission
50 GObject parent_instance;
52 /*< private >*/
53 GPermissionPrivate *priv;
56 struct _GPermissionClass {
57 GObjectClass parent_class;
59 gboolean (*acquire) (GPermission *permission,
60 GCancellable *cancellable,
61 GError **error);
62 void (*acquire_async) (GPermission *permission,
63 GCancellable *cancellable,
64 GAsyncReadyCallback callback,
65 gpointer user_data);
66 gboolean (*acquire_finish) (GPermission *permission,
67 GAsyncResult *result,
68 GError **error);
70 gboolean (*release) (GPermission *permission,
71 GCancellable *cancellable,
72 GError **error);
73 void (*release_async) (GPermission *permission,
74 GCancellable *cancellable,
75 GAsyncReadyCallback callback,
76 gpointer user_data);
77 gboolean (*release_finish) (GPermission *permission,
78 GAsyncResult *result,
79 GError **error);
81 gpointer reserved[16];
84 GLIB_AVAILABLE_IN_ALL
85 GType g_permission_get_type (void);
86 GLIB_AVAILABLE_IN_ALL
87 gboolean g_permission_acquire (GPermission *permission,
88 GCancellable *cancellable,
89 GError **error);
90 GLIB_AVAILABLE_IN_ALL
91 void g_permission_acquire_async (GPermission *permission,
92 GCancellable *cancellable,
93 GAsyncReadyCallback callback,
94 gpointer user_data);
95 GLIB_AVAILABLE_IN_ALL
96 gboolean g_permission_acquire_finish (GPermission *permission,
97 GAsyncResult *result,
98 GError **error);
100 GLIB_AVAILABLE_IN_ALL
101 gboolean g_permission_release (GPermission *permission,
102 GCancellable *cancellable,
103 GError **error);
104 GLIB_AVAILABLE_IN_ALL
105 void g_permission_release_async (GPermission *permission,
106 GCancellable *cancellable,
107 GAsyncReadyCallback callback,
108 gpointer user_data);
109 GLIB_AVAILABLE_IN_ALL
110 gboolean g_permission_release_finish (GPermission *permission,
111 GAsyncResult *result,
112 GError **error);
114 GLIB_AVAILABLE_IN_ALL
115 gboolean g_permission_get_allowed (GPermission *permission);
116 GLIB_AVAILABLE_IN_ALL
117 gboolean g_permission_get_can_acquire (GPermission *permission);
118 GLIB_AVAILABLE_IN_ALL
119 gboolean g_permission_get_can_release (GPermission *permission);
121 GLIB_AVAILABLE_IN_ALL
122 void g_permission_impl_update (GPermission *permission,
123 gboolean allowed,
124 gboolean can_acquire,
125 gboolean can_release);
127 G_END_DECLS
129 #endif /* __G_PERMISSION_H__ */