]> Pileus Git - ~andy/gtk/blob - gtk/gtkaccelgroup.h
Revert name change
[~andy/gtk] / gtk / gtkaccelgroup.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1998, 2001 Tim Janik
3  *
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 License, or (at your option) any later version.
8  *
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.
13  *
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.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
25  */
26
27 #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
28 #error "Only <gtk/gtk.h> can be included directly."
29 #endif
30
31 #ifndef __GTK_ACCEL_GROUP_H__
32 #define __GTK_ACCEL_GROUP_H__
33
34
35 #include <gdk/gdk.h>
36 #include <gtk/gtkenums.h>
37
38 G_BEGIN_DECLS
39
40
41 /* --- type macros --- */
42 #define GTK_TYPE_ACCEL_GROUP              (gtk_accel_group_get_type ())
43 #define GTK_ACCEL_GROUP(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), GTK_TYPE_ACCEL_GROUP, GtkAccelGroup))
44 #define GTK_ACCEL_GROUP_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_ACCEL_GROUP, GtkAccelGroupClass))
45 #define GTK_IS_ACCEL_GROUP(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), GTK_TYPE_ACCEL_GROUP))
46 #define GTK_IS_ACCEL_GROUP_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_ACCEL_GROUP))
47 #define GTK_ACCEL_GROUP_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_ACCEL_GROUP, GtkAccelGroupClass))
48
49
50 /* --- accel flags --- */
51 typedef enum
52 {
53   GTK_ACCEL_VISIBLE        = 1 << 0,    /* display in GtkAccelLabel? */
54   GTK_ACCEL_LOCKED         = 1 << 1,    /* is it removable? */
55   GTK_ACCEL_MASK           = 0x07
56 } GtkAccelFlags;
57
58
59 /* --- typedefs & structures --- */
60 typedef struct _GtkAccelGroup      GtkAccelGroup;
61 typedef struct _GtkAccelGroupClass GtkAccelGroupClass;
62 typedef struct _GtkAccelKey        GtkAccelKey;
63 typedef struct _GtkAccelGroupEntry GtkAccelGroupEntry;
64 typedef gboolean (*GtkAccelGroupActivate) (GtkAccelGroup  *accel_group,
65                                            GObject        *acceleratable,
66                                            guint           keyval,
67                                            GdkModifierType modifier);
68
69 typedef gboolean (*GtkAccelGroupFindFunc) (GtkAccelKey    *key,
70                                            GClosure       *closure,
71                                            gpointer        data);
72
73 struct _GtkAccelGroup
74 {
75   GObject             parent;
76
77   guint               GSEAL (lock_count);
78   GdkModifierType     GSEAL (modifier_mask);
79   GSList             *GSEAL (acceleratables);
80   guint               GSEAL (n_accels);
81   GtkAccelGroupEntry *GSEAL (priv_accels);
82 };
83
84 struct _GtkAccelGroupClass
85 {
86   GObjectClass parent_class;
87
88   void  (*accel_changed)        (GtkAccelGroup  *accel_group,
89                                  guint           keyval,
90                                  GdkModifierType modifier,
91                                  GClosure       *accel_closure);
92   
93   /* Padding for future expansion */
94   void (*_gtk_reserved1) (void);
95   void (*_gtk_reserved2) (void);
96   void (*_gtk_reserved3) (void);
97   void (*_gtk_reserved4) (void);
98 };
99
100 struct _GtkAccelKey
101 {
102   guint           accel_key;
103   GdkModifierType accel_mods;
104   guint           accel_flags : 16;
105 };
106
107
108 /* -- Accelerator Groups --- */
109 GType          gtk_accel_group_get_type           (void) G_GNUC_CONST;
110 GtkAccelGroup* gtk_accel_group_new                (void);
111 gboolean       gtk_accel_group_get_is_locked      (GtkAccelGroup  *accel_group);
112 GdkModifierType 
113                gtk_accel_group_get_modifier_mask  (GtkAccelGroup  *accel_group);
114 void           gtk_accel_group_lock               (GtkAccelGroup  *accel_group);
115 void           gtk_accel_group_unlock             (GtkAccelGroup  *accel_group);
116 void           gtk_accel_group_connect            (GtkAccelGroup  *accel_group,
117                                                    guint           accel_key,
118                                                    GdkModifierType accel_mods,
119                                                    GtkAccelFlags   accel_flags,
120                                                    GClosure       *closure);
121 void           gtk_accel_group_connect_by_path    (GtkAccelGroup  *accel_group,
122                                                    const gchar    *accel_path,
123                                                    GClosure       *closure);
124 gboolean       gtk_accel_group_disconnect         (GtkAccelGroup  *accel_group,
125                                                    GClosure       *closure);
126 gboolean       gtk_accel_group_disconnect_key     (GtkAccelGroup  *accel_group,
127                                                    guint           accel_key,
128                                                    GdkModifierType accel_mods);
129 gboolean       gtk_accel_group_activate           (GtkAccelGroup   *accel_group,
130                                                    GQuark          accel_quark,
131                                                    GObject        *acceleratable,
132                                                    guint           accel_key,
133                                                    GdkModifierType accel_mods);
134
135
136 /* --- GtkActivatable glue --- */
137 void            _gtk_accel_group_attach         (GtkAccelGroup  *accel_group,
138                                                  GObject        *object);
139 void            _gtk_accel_group_detach         (GtkAccelGroup  *accel_group,
140                                                  GObject        *object);
141 gboolean        gtk_accel_groups_activate       (GObject        *object,
142                                                  guint           accel_key,
143                                                  GdkModifierType accel_mods);
144 GSList*         gtk_accel_groups_from_object    (GObject        *object);
145 GtkAccelKey*    gtk_accel_group_find            (GtkAccelGroup        *accel_group,
146                                                  GtkAccelGroupFindFunc find_func,
147                                                  gpointer              data);
148 GtkAccelGroup*  gtk_accel_group_from_accel_closure (GClosure    *closure);
149
150
151 /* --- Accelerators--- */
152 gboolean gtk_accelerator_valid                (guint            keyval,
153                                                GdkModifierType  modifiers) G_GNUC_CONST;
154 void     gtk_accelerator_parse                (const gchar     *accelerator,
155                                                guint           *accelerator_key,
156                                                GdkModifierType *accelerator_mods);
157 gchar*   gtk_accelerator_name                 (guint            accelerator_key,
158                                                GdkModifierType  accelerator_mods);
159 gchar*   gtk_accelerator_get_label            (guint           accelerator_key,
160                                                GdkModifierType accelerator_mods);
161 void     gtk_accelerator_set_default_mod_mask (GdkModifierType  default_mod_mask);
162 guint    gtk_accelerator_get_default_mod_mask (void);
163
164
165 /* --- internal --- */
166 GtkAccelGroupEntry*     gtk_accel_group_query   (GtkAccelGroup  *accel_group,
167                                                  guint           accel_key,
168                                                  GdkModifierType accel_mods,
169                                                  guint          *n_entries);
170
171 void                 _gtk_accel_group_reconnect (GtkAccelGroup *accel_group,
172                                                  GQuark         accel_path_quark);
173
174 struct _GtkAccelGroupEntry
175 {
176   GtkAccelKey  key;
177   GClosure    *closure;
178   GQuark       accel_path_quark;
179 };
180
181
182 #ifndef GTK_DISABLE_DEPRECATED
183 #define gtk_accel_group_ref     g_object_ref
184 #define gtk_accel_group_unref   g_object_unref
185 #endif /* GTK_DISABLE_DEPRECATED */
186
187 G_END_DECLS
188
189
190 #endif /* __GTK_ACCEL_GROUP_H__ */