blob: d5fe72f78fc02b5c143112dd909837fcc7d3d52d (
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
|
{ Pointers to basic pascal types, inserted by h2pas conversion program.}
Type
PLongint = ^Longint;
PSmallInt = ^SmallInt;
PByte = ^Byte;
PWord = ^Word;
PDWord = ^DWord;
PDouble = ^Double;
{$PACKRECORDS C}
{ GTK - The GIMP Toolkit
Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
Themes added by The Rasterman <raster@redhat.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
}
{
Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
file for a list of people on the GTK+ Team. See the ChangeLog
files for a list of changes. These files are distributed with
GTK+ at ftp://ftp.gtk.org/pub/gtk/.
}
{$ifndef __GTK_THEMES_H__}
{$define __GTK_THEMES_H__}
{$include <gdk/gdk.inc}
{$include gtkstyle.inc}
{$include gtkwidget.inc}
{ C++ extern C conditionnal removed }
{ __cplusplus }
function GTK_TYPE_THEME_ENGINE : GType;
function GTK_THEME_ENGINE(theme_engine : longint) : longint;
function GTK_IS_THEME_ENGINE(theme_engine : longint) : boolean;
function gtk_theme_engine_get_type:GType; cdecl; external gtklib;
function gtk_theme_engine_get(name:Pgchar):PGtkThemeEngine; cdecl; external gtklib;
function gtk_theme_engine_create_rc_style(engine:PGtkThemeEngine):PGtkRcStyle; cdecl; external gtklib;
{ C++ end of extern C conditionnal removed }
{ __cplusplus }
{$endif}
{ __GTK_THEMES_H__ }
function GTK_TYPE_THEME_ENGINE : GType;
begin
GTK_TYPE_THEME_ENGINE:=gtk_theme_engine_get_type;
end;
function GTK_THEME_ENGINE(theme_engine : longint) : longint;
begin
GTK_THEME_ENGINE:=PGtkThemeEngine(G_TYPE_CHECK_INSTANCE_CAST(theme_engine,GTK_TYPE_THEME_ENGINE));
end;
function GTK_IS_THEME_ENGINE(theme_engine : longint) : boolean;
begin
GTK_IS_THEME_ENGINE:=G_TYPE_CHECK_INSTANCE_TYPE(theme_engine,GTK_TYPE_THEME_ENGINE);
end;
|