]> Pileus Git - ~andy/gtk/blob - gtk/gtkbindings.h
5d4549582222cc7cb46140016a374d863b2f4165
[~andy/gtk] / gtk / gtkbindings.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * GtkBindingSet: Keybinding manager for GtkObjects.
5  * Copyright (C) 1998 Tim Janik
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 /*
24  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
25  * file for a list of people on the GTK+ Team.  See the ChangeLog
26  * files for a list of changes.  These files are distributed with
27  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
28  */
29
30 #ifndef __GTK_BINDINGS_H__
31 #define __GTK_BINDINGS_H__
32
33
34 #include <gdk/gdk.h>
35 #include <gtk/gtkobject.h>
36 #include <gtk/gtkenums.h>
37
38
39 #ifdef __cplusplus
40 extern "C" {
41 #endif /* __cplusplus */
42
43
44 /* Binding sets
45  */
46
47 typedef struct _GtkBindingSet           GtkBindingSet;
48 typedef struct _GtkBindingEntry         GtkBindingEntry;
49 typedef struct _GtkBindingSignal        GtkBindingSignal;
50 typedef struct _GtkBindingArg           GtkBindingArg;
51
52 struct _GtkBindingSet
53 {
54   gchar                 *set_name;
55   gint                   priority;
56   GSList                *widget_path_pspecs;
57   GSList                *widget_class_pspecs;
58   GSList                *class_branch_pspecs;
59   GtkBindingEntry       *entries;
60   GtkBindingEntry       *current;
61   guint                  parsed : 1; /* From RC content */
62 };
63
64 struct _GtkBindingEntry
65 {
66   /* key portion
67    */
68   guint                  keyval;
69   GdkModifierType        modifiers;
70   
71   GtkBindingSet         *binding_set;
72   guint                 destroyed : 1;
73   guint                 in_emission : 1;
74   GtkBindingEntry       *set_next;
75   GtkBindingEntry       *hash_next;
76   GtkBindingSignal      *signals;
77 };
78
79 struct _GtkBindingSignal
80 {
81   GtkBindingSignal      *next;
82   gchar                 *signal_name;
83   guint                  n_args;
84   GtkBindingArg         *args;
85 };
86
87 struct _GtkBindingArg
88 {
89   GType          arg_type;
90   union {
91     glong        long_data;
92     gdouble      double_data;
93     gchar       *string_data;
94   } d;
95 };
96
97
98 /* Application-level methods */
99
100 GtkBindingSet*  gtk_binding_set_new     (const gchar    *set_name);
101 GtkBindingSet*  gtk_binding_set_by_class(gpointer        object_class);
102 GtkBindingSet*  gtk_binding_set_find    (const gchar    *set_name);
103 gboolean gtk_bindings_activate          (GtkObject      *object,
104                                          guint           keyval,
105                                          GdkModifierType modifiers);
106 gboolean gtk_binding_set_activate       (GtkBindingSet  *binding_set,
107                                          guint           keyval,
108                                          GdkModifierType modifiers,
109                                          GtkObject      *object);
110 #define  gtk_binding_entry_add          gtk_binding_entry_clear
111 void     gtk_binding_entry_clear        (GtkBindingSet  *binding_set,
112                                          guint           keyval,
113                                          GdkModifierType modifiers);
114 void     gtk_binding_entry_add_signal   (GtkBindingSet  *binding_set,
115                                          guint           keyval,
116                                          GdkModifierType modifiers,
117                                          const gchar    *signal_name,
118                                          guint           n_args,
119                                          ...);
120 void     gtk_binding_set_add_path       (GtkBindingSet  *binding_set,
121                                          GtkPathType     path_type,
122                                          const gchar    *path_pattern,
123                                          GtkPathPriorityType priority);
124
125
126 /* Non-public methods */
127
128 void     gtk_binding_entry_remove       (GtkBindingSet  *binding_set,
129                                          guint           keyval,
130                                          GdkModifierType modifiers);
131 void     gtk_binding_entry_add_signall  (GtkBindingSet  *binding_set,
132                                          guint           keyval,
133                                          GdkModifierType modifiers,
134                                          const gchar    *signal_name,
135                                          GSList         *binding_args);
136 guint    gtk_binding_parse_binding      (GScanner       *scanner);
137
138
139 gboolean _gtk_bindings_activate_event (GtkObject   *object,
140                                        GdkEventKey *event);
141 void     _gtk_binding_reset_parsed    (void);
142
143 /* Creates a signal with a fixed callback instead of a class offset;
144  * useful for key binding signals
145  */
146 guint _gtk_binding_signal_new (const gchar       *signal_name,
147                                GType              itype,
148                                GSignalFlags       signal_flags,
149                                GCallback          handler,
150                                GSignalAccumulator accumulator,
151                                gpointer           accu_data,
152                                GSignalCMarshaller c_marshaller,
153                                GType              return_type,
154                                guint              n_params,
155                                ...);
156 #ifdef __cplusplus
157 }
158 #endif /* __cplusplus */
159
160
161 #endif /* __GTK_BINDINGS_H__ */