You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

102 lines
3.7 KiB

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