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.
 
 
 
 
 
 

55 line
1.7 KiB

  1. /* GTK - The GIMP Toolkit
  2. * Copyright 1998-2002 Tim Janik, Red Hat, Inc., and others.
  3. * Copyright (C) 2003 Alex Graveley
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the
  17. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  18. * Boston, MA 02111-1307, USA.
  19. */
  20. #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
  21. #error "Only <gtk/gtk.h> can be included directly."
  22. #endif
  23. #ifndef __GTK_MODULES_H__
  24. #define __GTK_MODULES_H__
  25. #include <gtk/gtksettings.h>
  26. G_BEGIN_DECLS
  27. /* Functions for use within GTK+
  28. */
  29. gchar * _gtk_find_module (const gchar *name,
  30. const gchar *type);
  31. gchar **_gtk_get_module_path (const gchar *type);
  32. void _gtk_modules_init (gint *argc,
  33. gchar ***argv,
  34. const gchar *gtk_modules_args);
  35. void _gtk_modules_settings_changed (GtkSettings *settings,
  36. const gchar *modules);
  37. typedef void (*GtkModuleInitFunc) (gint *argc,
  38. gchar ***argv);
  39. typedef void (*GtkModuleDisplayInitFunc) (GdkDisplay *display);
  40. G_END_DECLS
  41. #endif /* __GTK_MODULES_H__ */