* added missing file of r13365

git-svn-id: trunk@13366 -
This commit is contained in:
florian 2009-07-07 16:36:57 +00:00
parent 61f7422d22
commit 5c49a653c4
2 changed files with 67 additions and 0 deletions

1
.gitattributes vendored
View File

@ -2535,6 +2535,7 @@ packages/gtk2/src/pango/pango-engine.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-font.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-fontmap.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-fontset.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-glyph-item.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-glyph.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-item.inc svneol=native#text/plain
packages/gtk2/src/pango/pango-layout.inc svneol=native#text/plain

View File

@ -0,0 +1,66 @@
// included by pango.pp
{$IFDEF read_forward_definitions}
{$ENDIF read_forward_definitions}
//------------------------------------------------------------------------------
{$IFDEF read_interface_types}
PPangoGlyphItem = ^TPangoGlyphItem;
TPangoGlyphItem = record
item : PPangoItem;
glyphs : PPangoGlyphString;
end;
PPangoGlyphItemIter = ^TPangoGlyphItemIter;
TPangoGlyphItemIter = record
glyph_item : PPangoGlyphItem;
text : Pgchar;
start_glyph : longint;
start_index : longint;
start_char : longint;
end_glyph : longint;
end_index : longint;
end_char : longint;
end;
{$ENDIF read_interface_types}
//------------------------------------------------------------------------------
{$IFDEF read_interface_functions}
function PANGO_TYPE_GLYPH_ITEM : GType;
function pango_glyph_item_get_type():GType;cdecl;external pangolib;
function pango_glyph_item_split(orig:PPangoGlyphItem; text:Pchar; split_index:longint):PPangoGlyphItem;cdecl;external pangolib;
function pango_glyph_item_copy(orig:PPangoGlyphItem):PPangoGlyphItem;cdecl;external pangolib;
procedure pango_glyph_item_free(glyph_item:PPangoGlyphItem);cdecl;external pangolib;
function pango_glyph_item_apply_attrs(glyph_item:PPangoGlyphItem; text:Pchar; list:PPangoAttrList):PGSList;cdecl;external pangolib;
procedure pango_glyph_item_letter_space(glyph_item:PPangoGlyphItem; text:Pchar; log_attrs:PPangoLogAttr; letter_spacing:longint);cdecl;external pangolib;
function PANGO_TYPE_GLYPH_ITEM_ITER : GType;
function pango_glyph_item_iter_get_type():GType;cdecl;external pangolib;
function pango_glyph_item_iter_copy(orig:PPangoGlyphItemIter):PPangoGlyphItemIter;cdecl;external pangolib;
procedure pango_glyph_item_iter_free(iter:PPangoGlyphItemIter);cdecl;external pangolib;
function pango_glyph_item_iter_init_start(iter:PPangoGlyphItemIter; glyph_item:PPangoGlyphItem; text:Pchar):gboolean;cdecl;external pangolib;
function pango_glyph_item_iter_init_end(iter:PPangoGlyphItemIter; glyph_item:PPangoGlyphItem; text:Pchar):gboolean;cdecl;external pangolib;
function pango_glyph_item_iter_next_cluster(iter:PPangoGlyphItemIter):gboolean;cdecl;external pangolib;
function pango_glyph_item_iter_prev_cluster(iter:PPangoGlyphItemIter):gboolean;cdecl;external pangolib;
{$endif read_interface_functions}
//------------------------------------------------------------------------------
{$IFDEF read_implementation}
function PANGO_TYPE_GLYPH_ITEM : GType;
begin
PANGO_TYPE_GLYPH_ITEM:=pango_glyph_item_get_type;
end;
function PANGO_TYPE_GLYPH_ITEM_ITER : GType;
begin
PANGO_TYPE_GLYPH_ITEM_ITER:=pango_glyph_item_iter_get_type;
end;
{$ENDIF}