mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-28 04:22:52 +02:00
47 lines
1.6 KiB
ObjectPascal
47 lines
1.6 KiB
ObjectPascal
{ $Id$ }
|
|
{
|
|
---------------------------------------------------------------------------
|
|
gtk2extra.pp - GTK(2) widgetset - additional gdk/gtk functions
|
|
---------------------------------------------------------------------------
|
|
|
|
This unit contains missing gdk/gtk functions and defines for certain
|
|
versions of gtk or fpc.
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
@created(Sun Jan 28th WET 2006)
|
|
@lastmod($Date$)
|
|
@author(Marc Weustink <marc@@dommelstein.nl>)
|
|
|
|
*****************************************************************************
|
|
* *
|
|
* This file is part of the Lazarus Component Library (LCL) *
|
|
* *
|
|
* See the file COPYING.modifiedLGPL.txt, included in this distribution, *
|
|
* for details about the copyright. *
|
|
* *
|
|
* This program 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. *
|
|
* *
|
|
*****************************************************************************
|
|
}
|
|
|
|
unit Gtk2Extra;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
{$I gtk2defines.inc}
|
|
|
|
//todo: remove $I for gtk2extrah.inc and gtk2extra.inc
|
|
|
|
{$I gtk2extrah.inc}
|
|
|
|
implementation
|
|
|
|
{$I gtk2extra.inc}
|
|
|
|
end.
|