~ubuntu-branches/debian/lenny/fpc/lenny

« back to all changes in this revision

Viewing changes to packages/extra/gtk/gtk/gtkeventbox.pp

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-05-17 17:12:11 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080517171211-9qi33xhd9evfa0kg
Tags: 2.2.0-dfsg1-9
[ Torsten Werner ]
* Add Mazen Neifer to Uploaders field.

[ Mazen Neifer ]
* Moved FPC sources into a version dependent directory from /usr/share/fpcsrc
  to /usr/share/fpcsrc/${FPCVERSION}. This allow installing more than on FPC
  release.
* Fixed far call issue in compiler preventing building huge binearies.
  (closes: #477743)
* Updated building dependencies, recomennded and suggested packages.
* Moved fppkg to fp-utils as it is just a helper tool and is not required by
  compiler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{
2
 
   $Id: gtkeventbox.pp,v 1.2 2002/09/07 15:42:59 peter Exp $
3
 
}
4
 
 
5
 
{****************************************************************************
6
 
                                 Interface
7
 
****************************************************************************}
8
 
 
9
 
{$ifdef read_interface}
10
 
 
11
 
  type
12
 
     PGtkEventBox = ^TGtkEventBox;
13
 
     TGtkEventBox = record
14
 
          bin : TGtkBin;
15
 
       end;
16
 
 
17
 
     PGtkEventBoxClass = ^TGtkEventBoxClass;
18
 
     TGtkEventBoxClass = record
19
 
          parent_class : TGtkBinClass;
20
 
       end;
21
 
 
22
 
Type
23
 
  GTK_EVENT_BOX=PGtkEventBox;
24
 
  GTK_EVENT_BOX_CLASS=PGtkEventBoxClass;
25
 
 
26
 
function  GTK_EVENT_BOX_TYPE:TGtkType;cdecl;external gtkdll name 'gtk_event_box_get_type';
27
 
function  GTK_IS_EVENT_BOX(obj:pointer):boolean;
28
 
function  GTK_IS_EVENT_BOX_CLASS(klass:pointer):boolean;
29
 
 
30
 
function  gtk_event_box_get_type:TGtkType;cdecl;external gtkdll name 'gtk_event_box_get_type';
31
 
function  gtk_event_box_new : PGtkWidget;cdecl;external gtkdll name 'gtk_event_box_new';
32
 
 
33
 
{$endif read_interface}
34
 
 
35
 
 
36
 
{****************************************************************************
37
 
                              Implementation
38
 
****************************************************************************}
39
 
 
40
 
{$ifdef read_implementation}
41
 
 
42
 
function  GTK_IS_EVENT_BOX(obj:pointer):boolean;
43
 
begin
44
 
  GTK_IS_EVENT_BOX:=(obj<>nil) and GTK_IS_EVENT_BOX_CLASS(PGtkTypeObject(obj)^.klass);
45
 
end;
46
 
 
47
 
function  GTK_IS_EVENT_BOX_CLASS(klass:pointer):boolean;
48
 
begin
49
 
  GTK_IS_EVENT_BOX_CLASS:=(klass<>nil) and (PGtkTypeClass(klass)^.thetype=GTK_EVENT_BOX_TYPE);
50
 
end;
51
 
 
52
 
{$endif read_implementation}
53
 
 
54
 
 
55
 
{
56
 
  $Log: gtkeventbox.pp,v $
57
 
  Revision 1.2  2002/09/07 15:42:59  peter
58
 
    * old logs removed and tabs fixed
59
 
 
60
 
  Revision 1.1  2002/01/29 17:55:10  peter
61
 
    * splitted to base and extra
62
 
 
63
 
}