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

« back to all changes in this revision

Viewing changes to fpcsrc/packages/extra/gtk2/gtk+/gtk/gtktexttypes.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
 
{ Pointers to basic pascal types, inserted by h2pas conversion program.}
2
 
Type
3
 
  PLongint  = ^Longint;
4
 
  PSmallInt = ^SmallInt;
5
 
  PByte     = ^Byte;
6
 
  PWord     = ^Word;
7
 
  PDWord    = ^DWord;
8
 
  PDouble   = ^Double;
9
 
 
10
 
{$PACKRECORDS C}
11
 
 
12
 
{$ifndef GTK_TEXT_TYPES_H}
13
 
{$define GTK_TEXT_TYPES_H}
14
 
{ C++ extern C conditionnal removed }
15
 
{ __cplusplus  }
16
 
 
17
 
{$include gtktextbuffer.inc}
18
 
{$include gtktexttagprivate.inc}
19
 
type
20
 
{
21
 
   Declarations for variables shared among the text-related files:
22
 
  }
23
 
{ In gtktextbtree.c  }
24
 
  var
25
 
     gtk_text_char_type : TGtkTextLineSegmentClass;cvar; external gtklib;
26
 
     gtk_text_toggle_on_type : TGtkTextLineSegmentClass;cvar; external gtklib;
27
 
     gtk_text_toggle_off_type : TGtkTextLineSegmentClass;cvar; external gtklib;
28
 
{ In gtktextmark.c  }
29
 
     gtk_text_left_mark_type : TGtkTextLineSegmentClass;cvar; external gtklib;
30
 
     gtk_text_right_mark_type : TGtkTextLineSegmentClass;cvar; external gtklib;
31
 
{ In gtktextchild.c  }
32
 
     gtk_text_pixbuf_type : TGtkTextLineSegmentClass;cvar; external gtklib;
33
 
     gtk_text_child_type : TGtkTextLineSegmentClass;cvar; external gtklib;
34
 
{
35
 
   UTF 8 Stubs
36
 
  }
37
 
 
38
 
const
39
 
   GTK_TEXT_UNKNOWN_CHAR = $FFFC;
40
 
 
41
 
  var
42
 
     gtk_text_unknown_char_utf8 : array of gchar;cvar;public;
43
 
 
44
 
 
45
 
function gtk_text_byte_begins_utf8_char(byte:Pgchar):gboolean; cdecl; external gtklib;
46
 
{ C++ end of extern C conditionnal removed }
47
 
{ __cplusplus  }
48
 
{$endif}
49