123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- {
- $Id$
- }
- {****************************************************************************
- Interface
- ****************************************************************************}
- {$ifdef read_interface}
- {$ifndef gtkwin}
- {$ifndef gtkos2}
- function GDK_GET_ROOT_WINDOW : PGdkWindow;
- function GDK_GET_ROOT_PARENT : PGdkWindow;
- function GDK_GET_XDISPLAY : PDisplay;
- function GDK_WINDOW_XDISPLAY(win : PGdkWindowPrivate) : PDisplay;
- function GDK_WINDOW_XWINDOW(win : PGdkWindowPrivate) : Twindow;
- function GDK_IMAGE_XDISPLAY(image : PGdkImagePrivate) : PDisplay;
- function GDK_IMAGE_XIMAGE(image : PGdkImagePrivate) : PXImage;
- function GDK_GC_XDISPLAY(gc : PGdkGCPrivate) : PDisplay;
- function GDK_GC_XGC(gc : PGdkGCPrivate) : TGC;
- function GDK_COLORMAP_XDISPLAY(cmap : PGdkColorMapPrivate) : PDisplay;
- function GDK_COLORMAP_XCOLORMAP(cmap : PGdkColorMapPrivate) : TColorMap;
- function GDK_VISUAL_XVISUAL(vis : PGdkVisualPrivate) : PVisual;
- function GDK_FONT_XDISPLAY(font : PGdkFontPrivate) : PDisplay;
- function GDK_FONT_XFONT(font : PGdkFontPrivate) : gpointer;
- function gdkx_visual_get(xvisualid:TVisualID):PGdkVisual;cdecl;external gdkdll name 'gdkx_visual_get';
- function gdkx_colormap_get(xcolormap:TColormap):PGdkColormap;cdecl;external gdkdll name 'gdkx_colormap_get';
- {$ifndef gtkdarwin}
- function gdk_get_client_window(dpy:pDisplay; win:TWindow):TWindow;cdecl;external gdkdll name 'gdk_get_client_window';
- {$endif not gtkdarwin}
- {$endif}
- {$endif}
- {$ifndef gtkos2}
- function gdk_pixmap_foreign_new(anid:guint32):PGdkPixmap;cdecl;external gdkdll name 'gdk_pixmap_foreign_new';
- function gdk_window_foreign_new(anid:guint32):PGdkWindow;cdecl;external gdkdll name 'gdk_window_foreign_new';
- {$endif}
- {$endif read_interface}
- {****************************************************************************
- Implementation
- ****************************************************************************}
- {$ifdef read_implementation}
- {$ifndef gtkwin}
- {$ifndef gtkos2}
- function GDK_GET_ROOT_WINDOW : PGdkWindow;
- begin
- GDK_GET_ROOT_WINDOW:=PGdkwindow(PtrInt(gdk_root_window));
- end;
- function GDK_GET_ROOT_PARENT : PGdkWindow;
- begin
- GDK_GET_ROOT_PARENT:=PGdkWindow(@(gdk_root_parent));
- end;
- function GDK_GET_XDISPLAY : PDisplay;
- begin
- GDK_GET_XDISPLAY:=gdk_display;
- end;
- function GDK_WINDOW_XDISPLAY(win : PGdkWindowPrivate) : PDisplay;
- begin
- GDK_WINDOW_XDISPLAY:=(PGdkWindowPrivate(win))^.xdisplay;
- end;
- function GDK_WINDOW_XWINDOW(win : PGdkWindowPrivate) : Twindow;
- begin
- GDK_WINDOW_XWINDOW:=(PGdkWindowPrivate(win))^.xwindow;
- end;
- function GDK_IMAGE_XDISPLAY(image : PGdkImagePrivate) : PDisplay;
- begin
- GDK_IMAGE_XDISPLAY:=(PGdkImagePrivate(image))^.xdisplay;
- end;
- function GDK_IMAGE_XIMAGE(image : PGdkImagePrivate) : PXImage;
- begin
- GDK_IMAGE_XIMAGE:=(PGdkImagePrivate(image))^.ximage;
- end;
- function GDK_GC_XDISPLAY(gc : PGdkGCPrivate) : PDisplay;
- begin
- GDK_GC_XDISPLAY:=(PGdkGCPrivate(gc))^.xdisplay;
- end;
- function GDK_GC_XGC(gc : PGdkGCPrivate) : TGC;
- begin
- GDK_GC_XGC:=(PGdkGCPrivate(gc))^.xgc;
- end;
- function GDK_COLORMAP_XDISPLAY(cmap : PGdkColorMapPrivate) : PDisplay;
- begin
- GDK_COLORMAP_XDISPLAY:=(PGdkColormapPrivate(cmap))^.xdisplay;
- end;
- function GDK_COLORMAP_XCOLORMAP(cmap : PGdkColorMapPrivate) : TColorMap;
- begin
- GDK_COLORMAP_XCOLORMAP:=(PGdkColormapPrivate(cmap))^.xcolormap;
- end;
- function GDK_VISUAL_XVISUAL(vis : PGdkVisualPrivate) : PVisual;
- begin
- GDK_VISUAL_XVISUAL:=(PGdkVisualPrivate(vis))^.xvisual;
- end;
- function GDK_FONT_XDISPLAY(font : PGdkFontPrivate) : PDisplay;
- begin
- GDK_FONT_XDISPLAY:=(PGdkFontPrivate(font))^.xdisplay;
- end;
- function GDK_FONT_XFONT(font : PGdkFontPrivate) : gpointer;
- begin
- GDK_FONT_XFONT:=(PGdkFontPrivate(font))^.xfont;
- end;
- {$endif}
- {$endif}
- {$endif read_implementation}
- {
- $Log$
- Revision 1.6 2004-12-15 21:25:30 peter
- * x86_64 fixes
- Revision 1.5 2004/05/02 19:14:47 jonas
- * fixed darwin incompatibilities
- Revision 1.4 2003/08/06 07:28:21 michael
- + Patch from Marc Weustinck to fix Win32 version
- Revision 1.3 2003/03/02 02:08:50 hajny
- + OS/2 support for GTK and X11 added by Yuri
- Revision 1.2 2002/09/07 15:42:58 peter
- * old logs removed and tabs fixed
- Revision 1.1 2002/01/29 17:55:08 peter
- * splitted to base and extra
- }
|