mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 07:58:07 +02:00

There are still some minor glitches, but the IDE and most examples i tried seem to work fine. Some examples didn't work but that seemed to be mainly a Gtk 1.2 limitation (e.g. no rotating fonts).
55 lines
1.1 KiB
ObjectPascal
55 lines
1.1 KiB
ObjectPascal
{ $Id$ }
|
|
{
|
|
---------------------------------------------------------------------------
|
|
gtkextra.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 license.
|
|
*****************************************************************************
|
|
}
|
|
|
|
unit GtkExtra;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
{$I gtkdefines.inc}
|
|
|
|
{$ifdef gtk1}
|
|
{$I gtk1extrah.inc}
|
|
{$endif}
|
|
|
|
{$ifdef gtk2}
|
|
{$I gtk2extrah.inc}
|
|
{$endif}
|
|
|
|
|
|
implementation
|
|
|
|
uses
|
|
LazUtilities;
|
|
|
|
{$ifdef gtk1}
|
|
{$I gtk1extra.inc}
|
|
{$endif}
|
|
|
|
{$ifdef gtk2}
|
|
{$I gtk2extra.inc}
|
|
{$endif}
|
|
|
|
end.
|