gtkwindow-decorate.inc 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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) 2001 Red Hat, Inc.
  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. Authors: Alexander Larsson <[email protected]>
  27. }
  28. procedure gtk_decorated_window_init(window:PGtkWindow); cdecl; external gtklib;
  29. procedure gtk_decorated_window_calculate_frame_size(window:PGtkWindow); cdecl; external gtklib;
  30. procedure gtk_decorated_window_set_title(window:PGtkWindow; title:Pgchar); cdecl; external gtklib;
  31. procedure gtk_decorated_window_move_resize_window(window:PGtkWindow; x:gint; y:gint; width:gint; height:gint); cdecl; external gtklib;