1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
{ $Id$ }
{
----------------------------------
gtkdebug.pp - graphic dump utils
----------------------------------
@created(Wed May 10th WET 2007)
@lastmod($Date$)
@author(Marc Weustink <marc@@lazarus.dommelstein.net>)
This unit contains utility functions to show the contents of graphics
*****************************************************************************
This file is part of the Lazarus Component Library (LCL)
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
unit GtkDebug;
{$mode objfpc}{$H+}
interface
uses
{$IFDEF gtk2}
glib2, gdk2pixbuf, gdk2, gtk2,
{$ELSE}
glib, gdk, gtk, gdkpixbuf,
{$ENDIF}
sysutils;
procedure DbgDumpBitmap(ABitmap: PGdkBitmap; ATitle: String = ''; AWidth: Integer = -1; AHeight: Integer = -1);
procedure DbgDumpPixmap(APixmap: PGdkPixmap; ATitle: String = ''; AWidth: Integer = -1; AHeight: Integer = -1);
procedure DbgDumpPixbuf(APixbuf: PGdkPixbuf; ATitle: String = ''; AWidth: Integer = -1; AHeight: Integer = -1);
{$ifndef gtk1}
// do not debug images on gtk1, we cannot ref, unref them and thus we cannot rely that they will not be destroyed
procedure DbgDumpImage(AImage: PGdkImage; ATitle: String = ''; AWidth: Integer = -1; AHeight: Integer = -1);
{$endif}
implementation
type
TDbgDumpType = (ddtBitmap, ddtPixmap, ddtPixbuf, ddtImage);
PDbgDumpInfo = ^TDbgDumpInfo;
TDbgDumpInfo = record
Width, Height: Integer;
case DumpType: TDbgDumpType of
ddtBitmap: (Bitmap: PGdkBitmap);
ddtPixmap: (Pixmap: PGdkPixmap);
ddtPixbuf: (Pixbuf: PGdkPixbuf);
ddtImage: (Image: PGdkImage);
end;
procedure OnDbgWindowDestroy(widget: PGtkWidget; Data: Pointer); cdecl;
var
Info: PDbgDumpInfo absolute Data;
begin
case Info^.DumpType of
ddtBitmap: if Info^.Bitmap <> nil then gdk_pixmap_unref(Info^.Bitmap);
ddtPixmap: if Info^.Pixmap <> nil then gdk_pixmap_unref(Info^.Pixmap);
ddtPixbuf: if Info^.Pixbuf <> nil then gdk_pixbuf_unref(Info^.Pixbuf);
ddtImage: if Info^.Image <> nil then {$ifndef gtk1}gdk_image_unref(Info^.Image){$endif};
end;
Dispose(Info);
end;
procedure OnDbgDrawAreaExpose(widget: PGtkWidget; event: PGdkEventExpose; Data: Pointer); cdecl;
var
Info: PDbgDumpInfo absolute Data;
gc: Pointer;
color: TGdkColor;
begin
gc := gdk_gc_new(widget^.window);
case Info^.DumpType of
ddtBitmap: begin
if Info^.Bitmap = nil
then color.pixel := $808080
else color.pixel := 0;
gdk_gc_set_foreground(gc, @color);
gdk_draw_rectangle(widget^.window, gc, 1, 0, 0, Info^.Width, Info^.Height);
if Info^.Bitmap <> nil
then begin
gdk_gc_set_clip_mask(gc, Info^.Bitmap);
color.pixel := $FFFFFF;
gdk_gc_set_foreground(gc, @color);
gdk_draw_rectangle(widget^.window, gc, 1, 0, 0, Info^.Width, Info^.Height);
end;
end;
ddtPixmap: begin
if Info^.Pixmap <> nil
then gdk_draw_pixmap(widget^.window, gc, Info^.Pixmap, 0, 0, 0, 0, Info^.Width, Info^.Height);
end;
ddtPixbuf: begin
if Info^.Pixbuf <> nil
then gdk_pixbuf_render_to_drawable_alpha(Info^.Pixbuf, widget^.window, 0, 0, 0, 0, Info^.Width, Info^.Height, GDK_PIXBUF_ALPHA_BILEVEL, $80, GDK_RGB_DITHER_NORMAL, 0, 0);
end;
ddtImage: begin
if Info^.Image <> nil
then gdk_draw_image(widget^.window, gc, Info^.Image, 0, 0, 0, 0, Info^.Width, Info^.Height);
end;
end;
gdk_gc_destroy(gc);
end;
procedure DbgCreateWindow(AInfo: PDbgDumpInfo; const ATitle: String);
var
window, darea: Pointer;
begin
window := gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_window_set_title(window, PChar(ATitle));
gtk_window_set_default_size(window, AInfo^.Width, AInfo^.Height);
darea := gtk_drawing_area_new;
gtk_drawing_area_size (darea, AInfo^.Width, AInfo^.Height);
gtk_container_add(window, darea);
gtk_signal_connect(darea, 'expose-event', TGTKSignalFunc(@OnDbgDrawAreaExpose), AInfo);
gtk_signal_connect(window, 'destroy', TGTKSignalFunc(@OnDbgWindowDestroy), AInfo);
gtk_widget_show_all(window);
end;
procedure DbgDumpBitmap(ABitmap: PGdkBitmap; ATitle: String = ''; AWidth: Integer = -1; AHeight: Integer = -1);
var
Info: PDbgDumpInfo;
h,w,d: Integer;
begin
New(Info);
if ABitmap = nil
then begin
w := 0; h:= 0; d := 0;
end
else
{$ifdef gtk1}
gdk_window_get_geometry(ABitmap, nil,nil,@w,@h,@d);
{$else}
gdk_drawable_get_size(ABitmap, @w, @h);
d := gdk_drawable_get_depth(ABitmap);
{$endif}
if AWidth = -1 then AWidth := W;
if AHeight = -1 then AHeight := H;
Info^.Width := AWidth;
Info^.Height := AHeight;
if d = 1
then begin
Info^.DumpType := ddtBitmap;
Info^.Bitmap := ABitmap;
end
else begin
// got a pixmap as bitmap
Info^.DumpType := ddtPixmap;
Info^.Pixmap := ABitmap;
end;
gdk_pixmap_ref(ABitmap);
ATitle := ATitle + Format(' (Bitmap:$%p W:%d H:%d D:%d)', [ABitmap, w, h, d]);
DbgCreateWindow(Info, ATitle);
end;
procedure DbgDumpPixmap(APixmap: PGdkPixmap; ATitle: String = ''; AWidth: Integer = -1; AHeight: Integer = -1);
var
Info: PDbgDumpInfo;
h,w,d: Integer;
begin
New(Info);
if APixmap = nil
then begin
w := 0; h:= 0; d := 0;
end
else
{$ifdef gtk1}
gdk_window_get_geometry(APixmap, nil,nil,@w,@h,@d);
{$else}
gdk_drawable_get_size(APixmap, @w, @h);
d := gdk_drawable_get_depth(APixmap);
{$endif}
if AWidth = -1 then AWidth := W;
if AHeight = -1 then AHeight := H;
Info^.Width := AWidth;
Info^.Height := AHeight;
if d = 1
then begin
// got a bitmap as pixmap
Info^.DumpType := ddtBitmap;
Info^.Bitmap := APixmap;
end
else begin
Info^.DumpType := ddtPixmap;
Info^.Pixmap := APixmap;
end;
gdk_pixmap_ref(APixmap);
ATitle := ATitle + Format(' (Pixmap:$%p W:%d H:%d D:%d)', [APixmap, w, h, d]);
DbgCreateWindow(Info, ATitle);
end;
procedure DbgDumpPixbuf(APixbuf: PGdkPixbuf; ATitle: String = ''; AWidth: Integer = -1; AHeight: Integer = -1);
var
Info: PDbgDumpInfo;
h,w,c: Integer;
begin
New(Info);
c := gdk_pixbuf_get_n_channels(APixbuf);
w := gdk_pixbuf_get_width(APixbuf);
h := gdk_pixbuf_get_height(APixbuf);
if AWidth = -1 then AWidth := W;
if AHeight = -1 then AHeight := H;
Info^.Width := AWidth;
Info^.Height := AHeight;
Info^.DumpType := ddtPixbuf;
Info^.Pixbuf := APixbuf;
gdk_pixbuf_ref(APixbuf);
ATitle := ATitle + Format(' (Pixbuf:$%p W:%d H:%d C:%d)', [APixbuf, w, h, c]);
DbgCreateWindow(Info, ATitle);
end;
procedure DbgDumpImage(AImage: PGdkImage; ATitle: String; AWidth: Integer;
AHeight: Integer);
var
Info: PDbgDumpInfo;
begin
New(Info);
if AWidth = -1 then AWidth := AImage^.width;
if AHeight = -1 then AHeight := AImage^.height;
Info^.Width := AWidth;
Info^.Height := AHeight;
Info^.DumpType := ddtImage;
Info^.Image := AImage;
{$ifndef gtk1}
gdk_image_ref(AImage);
{$endif}
DbgCreateWindow(Info, ATitle);
end;
end.
|