Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / packages / gtk1 / src / gtk / gtk.pp
Size: Mime:
{

   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., 51 Franklin Street, Fifth Floor,
   Boston, MA 02110-1301, 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}

{$define gtk_include_files}

{$define read_interface}
{$undef read_implementation}

{$i gtkincludes.pp}

  implementation

{$undef read_interface}
{$define read_implementation}

{$i gtkincludes.pp}

end.