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 #include "gsimplepermission.h"
23 #include "gpermission.h"
28 * SECTION:gsimplepermission
29 * @title: GSimplePermission
30 * @short_description: a #GPermission that doesn't change value
32 * #GSimplePermission is a trivial implementation of #GPermission that
33 * represents a permission that is either always or never allowed. The
34 * value is given at constuction and doesn't change.
36 * Calling request or release will result in errors.
42 * #GSimplePermission is an opaque data structure. There are no methods
43 * except for those defined by #GPermission.
46 typedef GPermissionClass GSimplePermissionClass;
48 struct _GSimplePermission
50 GPermission parent_instance;
53 G_DEFINE_TYPE (GSimplePermission, g_simple_permission, G_TYPE_PERMISSION)
56 g_simple_permission_init (GSimplePermission *simple)
61 g_simple_permission_class_init (GSimplePermissionClass *class)
66 * g_simple_permission_new:
67 * @allowed: %TRUE if the action is allowed
68 * @returns: the #GSimplePermission, as a #GPermission
70 * Creates a new #GPermission instance that represents an action that is
71 * either always or never allowed.
74 g_simple_permission_new (gboolean allowed)
76 GPermission *permission = g_object_new (G_TYPE_SIMPLE_PERMISSION, NULL);
78 g_permission_impl_update (permission, allowed, FALSE, FALSE);
83 #define __G_SIMPLE_PERMISSION_C__
84 #include "gioaliasdef.c"