mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-04 09:18:14 +02:00
44 lines
996 B
ObjectPascal
44 lines
996 B
ObjectPascal
{ $Id$
|
|
-------------------------------
|
|
gtk1def.pp - Type definitions
|
|
-------------------------------
|
|
|
|
@created(Tue Nov 20st WET 2007)
|
|
@lastmod($Date$)
|
|
@author(Marc Weustink <marc@@dommelstein.net>)
|
|
|
|
This unit contains type definitions needed in the GTK1 <-> LCL interface
|
|
|
|
*****************************************************************************
|
|
This file is part of the Lazarus Component Library (LCL)
|
|
|
|
See the file COPYING.modifiedLGPL.txt, included in this distribution,
|
|
for details about the license.
|
|
*****************************************************************************
|
|
}
|
|
|
|
|
|
unit Gtk1Def;
|
|
|
|
{$mode objfpc} {$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
glib, gdk, gtk, gdkpixbuf, GtkDef;
|
|
|
|
type
|
|
|
|
{ TGtk1DeviceContext }
|
|
|
|
TGtk1DeviceContext = class(TGtkDeviceContext)
|
|
public
|
|
function GetFunction: TGdkFunction; override;
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$i gtk1devicecontext.inc}
|
|
|
|
end.
|