gdkpixbuf.inc 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. // included by gdk2.pp
  2. {$IFDEF read_interface_types}
  3. {$ENDIF read_interface_types}
  4. //------------------------------------------------------------------------------
  5. {$IFDEF read_interface_rest}
  6. { Rendering to a drawable }
  7. procedure gdk_pixbuf_render_threshold_alpha(pixbuf:PGdkPixbuf; bitmap:PGdkBitmap; src_x:longint; src_y:longint; dest_x:longint;
  8. dest_y:longint; width:longint; height:longint; alpha_threshold:longint); cdecl; external gdklib;
  9. procedure gdk_pixbuf_render_to_drawable(pixbuf:PGdkPixbuf; drawable:PGdkDrawable; gc:PGdkGC; src_x:longint; src_y:longint;
  10. dest_x:longint; dest_y:longint; width:longint; height:longint; dither:TGdkRgbDither;
  11. x_dither:longint; y_dither:longint); cdecl; external gdklib;
  12. procedure gdk_pixbuf_render_to_drawable_alpha(pixbuf:PGdkPixbuf; drawable:PGdkDrawable; src_x:longint; src_y:longint; dest_x:longint;
  13. dest_y:longint; width:longint; height:longint; alpha_mode:TGdkPixbufAlphaMode; alpha_threshold:longint;
  14. dither:TGdkRgbDither; x_dither:longint; y_dither:longint); cdecl; external gdklib;
  15. procedure gdk_pixbuf_render_pixmap_and_mask_for_colormap(pixbuf:PGdkPixbuf; colormap:PGdkColormap; var pixmap_return:PGdkPixmap; var mask_return:PGdkBitmap; alpha_threshold:longint); cdecl; external gdklib;
  16. {$ifndef GDK_MULTIHEAD_SAFE}
  17. procedure gdk_pixbuf_render_pixmap_and_mask(pixbuf:PGdkPixbuf; var pixmap_return:PGdkPixmap; var mask_return:PGdkBitmap; alpha_threshold:longint); cdecl; external gdklib;
  18. {$endif}
  19. { Fetching a region from a drawable }
  20. function gdk_pixbuf_get_from_drawable(dest:PGdkPixbuf; src:PGdkDrawable; cmap:PGdkColormap; src_x:longint; src_y:longint;
  21. dest_x:longint; dest_y:longint; width:longint; height:longint):PGdkPixbuf; cdecl; external gdklib;
  22. function gdk_pixbuf_get_from_image(dest:PGdkPixbuf; src:PGdkImage; cmap:PGdkColormap; src_x:longint; src_y:longint;
  23. dest_x:longint; dest_y:longint; width:longint; height:longint):PGdkPixbuf; cdecl; external gdklib;
  24. {$endif read_interface_rest}
  25. //------------------------------------------------------------------------------
  26. {$IFDEF read_implementation}
  27. {$ENDIF}