gtktextutil.inc 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. { Pointers to basic pascal types, inserted by h2pas conversion program.}
  2. Type
  3. PLongint = ^Longint;
  4. PSmallInt = ^SmallInt;
  5. PByte = ^Byte;
  6. PWord = ^Word;
  7. PDWord = ^DWord;
  8. PDouble = ^Double;
  9. {$PACKRECORDS C}
  10. { GTK - The GIMP Toolkit
  11. Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
  12. This library is free software; you can redistribute it and/or
  13. modify it under the terms of the GNU Lesser General Public
  14. License as published by the Free Software Foundation; either
  15. version 2 of the License, or (at your option) any later version.
  16. This library is distributed in the hope that it will be useful,
  17. but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. Lesser General Public License for more details.
  20. You should have received a copy of the GNU Lesser General Public
  21. License along with this library; if not, write to the
  22. Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  23. Boston, MA 02111-1307, USA.
  24. }
  25. {
  26. Modified by the GTK+ Team and others 1997-2001. See the AUTHORS
  27. file for a list of people on the GTK+ Team. See the ChangeLog
  28. files for a list of changes. These files are distributed with
  29. GTK+ at ftp://ftp.gtk.org/pub/gtk/.
  30. }
  31. {$ifndef __GTK_TEXT_UTIL_H__}
  32. {$define __GTK_TEXT_UTIL_H__}
  33. {$include gtkwidget.inc}
  34. {$include gtkmenushell.inc}
  35. { C++ extern C conditionnal removed }
  36. { __cplusplus }
  37. { This is a private uninstalled header shared between GtkTextView and GtkEntry }
  38. type
  39. TGtkTextUtilCharChosenFunc = procedure (text:Pchar; data:gpointer); cdecl;
  40. procedure _gtk_text_util_append_special_char_menuitems(menushell:PGtkMenuShell; func:TGtkTextUtilCharChosenFunc; data:gpointer); cdecl; external gtklib;
  41. { C++ end of extern C conditionnal removed }
  42. { __cplusplus }
  43. {$endif}
  44. { __GTK_TEXT_UTIL_H__ }