summaryrefslogtreecommitdiff
path: root/packages/extra/gtk/gtk/gtk.pp
blob: d3d9784269300ecf85fd3e86297dd666dcaeb98d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{

   GTK - The GIMP Toolkit
   Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public
   License along with this library; if not, write to the
   Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA.

 **********************************************************************}
unit gtk;
interface

{ Always use smartlinking for win32, this solves some undefined functions
  in the development gtk versions which change often (PFV) }
{$ifdef win32}
  {$ifndef NO_SMART_LINK}
    {$smartlink on}
  {$endif}
{$endif}

{$mode objfpc} { needed for array of const }

uses
  glib,gdk;

{$ifdef win32}
  const
    gtkdll='libgtk-0';
  {$define gtkwin}

  {$packrecords c}
{$else}
  {$ifdef os2}
    const
      gtkdll='gtk12';
    {$define gtkos2}

    {$packrecords c}
  {$else}
    const
    {$ifdef FreeBSD}
      gtkdll='gtk-12';
      {$linklib gtk-12}
    {$else}
    {$ifdef darwin}
      {$define gtkdarwin}
      gtkdll='gtk-1.2.0';
      {$linklib gtk-1.2.0}
    {$else}
      gtkdll='gtk';
      {$linklib gtk}
    {$endif darwin}
    {$endif freebsd}
    {$linklib c}
    {$linklib Xi}
    {$linklib Xext}
    {$linklib X11}
    {$linklib m}

    {$packrecords C}
  {$endif}
{$endif}

Type
  PLongint  = ^Longint;
  PByte     = ^Byte;
  PWord     = ^Word;
  PINteger  = ^Integer;
  PCardinal = ^Cardinal;
  PReal     = ^Real;
  PDouble   = ^Double;

{$define gtk_include_files}

{$define read_interface}
{$undef read_implementation}

{$i gtkincludes.pp}

  implementation

{$undef read_interface}
{$define read_implementation}

{$i gtkincludes.pp}

end.