blob: 383d6b52d0c0c55bf3456e6f4721111941c9cee8 (
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
72
73
74
75
76
77
78
79
|
{$IfDef read_interface}
type
TGnomeProcbarCallback = function (_para1:gpointer):gint; cdecl;
PGnomeProcBar = ^TGnomeProcBar;
TGnomeProcBar = record
hbox : TGtkHBox;
bar : PGtkWidget;
thelabel : PGtkWidget;
frame : PGtkWidget;
flag0 : word;
bs : PGdkPixmap;
colors : PGdkColor;
colors_allocated : gint;
first_request : gint;
n : gint;
tag : gint;
last : Pdword;
cb : TGnomeProcbarCallback;
cb_data : gpointer;
end;
GNOME_PROC_BAR = PGnomeProcBar;
const
bm__GnomeProcBar_vertical = $1;
bp__GnomeProcBar_vertical = 0;
function vertical(var a : TGnomeProcBar) : gboolean;
procedure set_vertical(var a : TGnomeProcBar; __vertical : gboolean);
type
PGnomeProcBarClass = ^TGnomeProcBarClass;
TGnomeProcBarClass = record
parent_class : TGtkHBoxClass;
end;
GNOME_PROC_BAR_CLASS = PGnomeProcBarClass;
function GNOME_TYPE_PROC_BAR : TGTKType;
function GNOME_IS_PROC_BAR(obj : Pointer) : Boolean;
function GNOME_IS_PROC_BAR_CLASS(klass : Pointer) : Boolean;
function gnome_proc_bar_get_type:TGTKTYPE;cdecl;external libgnomeuidll name 'gnome_proc_bar_get_type';
function gnome_proc_bar_new(thelabel:PGtkWidget; n:gint; colors:PGdkColor; cb : TGnomeProcbarCallback):PGtkWidget;cdecl;external libgnomeuidll name 'gnome_proc_bar_new';
procedure gnome_proc_bar_construct(pb:PGnomeProcBar; thelabel:PGtkWidget; n:gint; colors:PGdkColor; cb:TGnomeProcbarCallback);cdecl;external libgnomeuidll name 'gnome_proc_bar_construct';
procedure gnome_proc_bar_set_values(pb:PGnomeProcBar; val:Pguint);cdecl;external libgnomeuidll name 'gnome_proc_bar_set_values';
procedure gnome_proc_bar_set_orient(pb:PGnomeProcBar; vertical:gboolean);cdecl;external libgnomeuidll name 'gnome_proc_bar_set_orient';
procedure gnome_proc_bar_start(pb:PGnomeProcBar; gtime:gint; data:gpointer);cdecl;external libgnomeuidll name 'gnome_proc_bar_start';
procedure gnome_proc_bar_stop(pb:PGnomeProcBar);cdecl;external libgnomeuidll name 'gnome_proc_bar_stop';
procedure gnome_proc_bar_update(pb:PGnomeProcBar; colors:PGdkColor);cdecl;external libgnomeuidll name 'gnome_proc_bar_update';
{$EndIf read_interface}
{$Ifdef read_implementation}
function GNOME_TYPE_PROC_BAR : TGTKType;
begin
GNOME_TYPE_PROC_BAR:=gnome_proc_bar_get_type;
end;
function GNOME_IS_PROC_BAR(obj : Pointer) : Boolean;
begin
GNOME_IS_PROC_BAR:=(obj<>nil) and GNOME_IS_PROC_BAR_CLASS(PGtkTypeObject(obj)^.klass);
end;
function GNOME_IS_PROC_BAR_CLASS(klass : Pointer) : Boolean;
begin
GNOME_IS_PROC_BAR_CLASS:=(klass<>nil) and (PGtkTypeClass(klass)^.thetype=GNOME_TYPE_PROC_BAR);
end;
function vertical(var a : TGnomeProcBar) : gboolean;
begin
vertical:=gboolean((a.flag0 and bm__GnomeProcBar_vertical) shr bp__GnomeProcBar_vertical);
end;
procedure set_vertical(var a : TGnomeProcBar; __vertical : gboolean);
begin
a.flag0:=a.flag0 or ((gint(__vertical) shl bp__GnomeProcBar_vertical) and bm__GnomeProcBar_vertical);
end;
{$Endif read_implementation}
|