]> Pileus Git - ~andy/gtk/blob - gtk/gtkaccelmap.h
Drop Win32 DLL ABI compatibility cruft
[~andy/gtk] / gtk / gtkaccelmap.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 #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
21 #error "Only <gtk/gtk.h> can be included directly."
22 #endif
23
24 #ifndef __GTK_ACCEL_MAP_H__
25 #define __GTK_ACCEL_MAP_H__
26
27
28 #include <gtk/gtkaccelgroup.h>
29
30 G_BEGIN_DECLS
31
32 /* --- global GtkAccelMap object --- */
33 #define GTK_TYPE_ACCEL_MAP                (gtk_accel_map_get_type ())
34 #define GTK_ACCEL_MAP(accel_map)          (G_TYPE_CHECK_INSTANCE_CAST ((accel_map), GTK_TYPE_ACCEL_MAP, GtkAccelMap))
35 #define GTK_ACCEL_MAP_CLASS(klass)        (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_ACCEL_MAP, GtkAccelMapClass))
36 #define GTK_IS_ACCEL_MAP(accel_map)       (G_TYPE_CHECK_INSTANCE_TYPE ((accel_map), GTK_TYPE_ACCEL_MAP))
37 #define GTK_IS_ACCEL_MAP_CLASS(klass)     (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_ACCEL_MAP))
38 #define GTK_ACCEL_MAP_GET_CLASS(obj)      (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_ACCEL_MAP, GtkAccelMapClass))
39
40 typedef struct _GtkAccelMap      GtkAccelMap;
41 typedef struct _GtkAccelMapClass GtkAccelMapClass;
42
43 /* --- notifier --- */
44 typedef void (*GtkAccelMapForeach)              (gpointer        data,
45                                                  const gchar    *accel_path,
46                                                  guint           accel_key,
47                                                  GdkModifierType accel_mods,
48                                                  gboolean        changed);
49
50
51 /* --- public API --- */
52
53 void       gtk_accel_map_add_entry      (const gchar            *accel_path,
54                                          guint                   accel_key,
55                                          GdkModifierType         accel_mods);
56 gboolean   gtk_accel_map_lookup_entry   (const gchar            *accel_path,
57                                          GtkAccelKey            *key);
58 gboolean   gtk_accel_map_change_entry   (const gchar            *accel_path,
59                                          guint                   accel_key,
60                                          GdkModifierType         accel_mods,
61                                          gboolean                replace);
62 void       gtk_accel_map_load           (const gchar            *file_name);
63 void       gtk_accel_map_save           (const gchar            *file_name);
64 void       gtk_accel_map_foreach        (gpointer                data,
65                                          GtkAccelMapForeach      foreach_func);
66 void       gtk_accel_map_load_fd        (gint                    fd);
67 void       gtk_accel_map_load_scanner   (GScanner               *scanner);
68 void       gtk_accel_map_save_fd        (gint                    fd);
69
70 void       gtk_accel_map_lock_path      (const gchar            *accel_path);
71 void       gtk_accel_map_unlock_path    (const gchar            *accel_path);
72
73 /* --- filter functions --- */
74 void    gtk_accel_map_add_filter         (const gchar           *filter_pattern);
75 void    gtk_accel_map_foreach_unfiltered (gpointer               data,
76                                           GtkAccelMapForeach     foreach_func);
77
78 /* --- notification --- */
79 GType        gtk_accel_map_get_type (void) G_GNUC_CONST;
80 GtkAccelMap *gtk_accel_map_get      (void);
81
82
83 /* --- internal API --- */
84 void            _gtk_accel_map_init             (void);
85
86 void            _gtk_accel_map_add_group         (const gchar   *accel_path,
87                                                   GtkAccelGroup *accel_group);
88 void            _gtk_accel_map_remove_group      (const gchar   *accel_path,
89                                                   GtkAccelGroup *accel_group);
90 gboolean        _gtk_accel_path_is_valid         (const gchar   *accel_path);
91
92
93 G_END_DECLS
94
95 #endif /* __GTK_ACCEL_MAP_H__ */