~ubuntu-branches/ubuntu/lucid/fpc/lucid-proposed

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-10-09 23:29:00 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20081009232900-553f61m37jkp6upv
Tags: 2.2.2-4
[ Torsten Werner ]
* Update ABI version in fpc-depends automatically.
* Remove empty directories from binary package fpc-source.

[ Mazen Neifer ]
* Removed leading path when calling update-alternatives to remove a Linitian
  error.
* Fixed clean target.
* Improved description of packages. (Closes: #498882)

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}