~ubuntu-branches/ubuntu/dapper/fpc/dapper

« back to all changes in this revision

Viewing changes to packages/extra/gnome1/gnome/libgnomeui/gnomeicontext.inc

  • Committer: Bazaar Package Importer
  • Author(s): Carlos Laviola
  • Date: 2004-08-12 16:29:37 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040812162937-moo8ulvysp1ln771
Tags: 1.9.4-5
fp-compiler: needs ld, adding dependency on binutils.  (Closes: #265265)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{$IfDef read_interface}
 
2
 
 
3
type
 
4
   PGnomeIconTextInfoRow = ^TGnomeIconTextInfoRow;
 
5
   TGnomeIconTextInfoRow = record
 
6
        thetext : Pgchar;
 
7
        width : gint;
 
8
        text_wc : PGdkWChar;
 
9
        text_length : gint;
 
10
     end;
 
11
 
 
12
   PGnomeIconTextInfo = ^TGnomeIconTextInfo;
 
13
   TGnomeIconTextInfo = record
 
14
        rows : PGList;
 
15
        font : PGdkFont;
 
16
        width : gint;
 
17
        height : gint;
 
18
        baseline_skip : gint;
 
19
     end;
 
20
 
 
21
function gnome_icon_layout_text(font:PGdkFont; theetext:Pgchar; separators:Pgchar; max_width:gint; confine:gboolean):PGnomeIconTextInfo;cdecl;external libgnomeuidll name 'gnome_icon_layout_text';
 
22
procedure gnome_icon_paint_text(ti:PGnomeIconTextInfo; drawable:PGdkDrawable; gc:PGdkGC; x:gint; y:gint; 
 
23
            just:TGtkJustification);cdecl;external libgnomeuidll name 'gnome_icon_paint_text';
 
24
procedure gnome_icon_text_info_free(ti:PGnomeIconTextInfo);cdecl;external libgnomeuidll name 'gnome_icon_text_info_free';
 
25
 
 
26
{$EndIf read_interface}
 
27
 
 
28
{$Ifdef read_implementation}
 
29
 
 
30
{$Endif read_implementation}