gmain: Fall back to pipes if kernel doesn't support EFD_CLOEXEC for eventfd()
[glib.git] / gio / gsimpleactiongroup.h
bloba526062f57233b4874c659c1294c9c608473698c
1 /*
2 * Copyright © 2010 Codethink Limited
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published
6 * by the Free Software Foundation; either version 2 of the licence or (at
7 * 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
15 * Public 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 * Authors: Ryan Lortie <desrt@desrt.ca>
22 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
23 #error "Only <gio/gio.h> can be included directly."
24 #endif
26 #ifndef __G_SIMPLE_ACTION_GROUP_H__
27 #define __G_SIMPLE_ACTION_GROUP_H__
29 #include "gactiongroup.h"
31 G_BEGIN_DECLS
33 #define G_TYPE_SIMPLE_ACTION_GROUP (g_simple_action_group_get_type ())
34 #define G_SIMPLE_ACTION_GROUP(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
35 G_TYPE_SIMPLE_ACTION_GROUP, GSimpleActionGroup))
36 #define G_SIMPLE_ACTION_GROUP_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
37 G_TYPE_SIMPLE_ACTION_GROUP, GSimpleActionGroupClass))
38 #define G_IS_SIMPLE_ACTION_GROUP(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
39 G_TYPE_SIMPLE_ACTION_GROUP))
40 #define G_IS_SIMPLE_ACTION_GROUP_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
41 G_TYPE_SIMPLE_ACTION_GROUP))
42 #define G_SIMPLE_ACTION_GROUP_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
43 G_TYPE_SIMPLE_ACTION_GROUP, GSimpleActionGroupClass))
45 typedef struct _GSimpleActionGroupPrivate GSimpleActionGroupPrivate;
46 typedef struct _GSimpleActionGroupClass GSimpleActionGroupClass;
48 /**
49 * GSimpleActionGroup:
51 * The #GSimpleActionGroup structure contains private data and should only be accessed using the provided API.
53 * Since: 2.28
55 struct _GSimpleActionGroup
57 /*< private >*/
58 GObject parent_instance;
60 GSimpleActionGroupPrivate *priv;
63 struct _GSimpleActionGroupClass
65 /*< private >*/
66 GObjectClass parent_class;
68 /*< private >*/
69 gpointer padding[12];
72 GType g_simple_action_group_get_type (void) G_GNUC_CONST;
74 GSimpleActionGroup * g_simple_action_group_new (void);
76 GAction * g_simple_action_group_lookup (GSimpleActionGroup *simple,
77 const gchar *action_name);
79 void g_simple_action_group_insert (GSimpleActionGroup *simple,
80 GAction *action);
82 void g_simple_action_group_remove (GSimpleActionGroup *simple,
83 const gchar *action_name);
85 G_END_DECLS
87 #endif /* __G_SIMPLE_ACTION_GROUP_H__ */