gimpfontselect.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* LIBGIMP - The GIMP Library
  2. * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
  3. *
  4. * gimpfontselect.h
  5. *
  6. * This library is free software: you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 3 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library. If not, see
  18. * <http://www.gnu.org/licenses/>.
  19. */
  20. #if !defined (__GIMP_H_INSIDE__) && !defined (GIMP_COMPILATION)
  21. #error "Only <libgimp/gimp.h> can be included directly."
  22. #endif
  23. #ifndef __GIMP_FONT_SELECT_H__
  24. #define __GIMP_FONT_SELECT_H__
  25. G_BEGIN_DECLS
  26. typedef void (* GimpRunFontCallback) (const gchar *font_name,
  27. gboolean dialog_closing,
  28. gpointer user_data);
  29. const gchar * gimp_font_select_new (const gchar *title,
  30. const gchar *font_name,
  31. GimpRunFontCallback callback,
  32. gpointer data);
  33. void gimp_font_select_destroy (const gchar *font_callback);
  34. G_END_DECLS
  35. #endif /* __GIMP_FONT_SELECT_H__ */