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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
|
program anim_test;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Classes, SysUtils,
// fpGUI
fpg_base, fpg_main, fpg_form, fpg_button,
fpg_label, fpg_trackbar, fpg_animation;
type
TMainForm = class(TfpgForm)
private
procedure TrackbarChanged(Sender: TObject; APosition: integer);
procedure btnQuitClicked(Sender: TObject);
procedure btnStartClicked(Sender: TObject);
public
{@VFD_HEAD_BEGIN: MainForm}
btnQuit: TfpgButton;
btnStart: TfpgButton;
tbName1: TfpgTrackBar;
Anim1: TfpgImgAnim;
wanda: TfpgImgAnim;
lblName1: TfpgLabel;
lblName2: TfpgLabel;
lblName3: TfpgLabel;
loadinglogo: TfpgImgAnim;
Label1: TfpgLabel;
{@VFD_HEAD_END: MainForm}
procedure AfterCreate; override;
end;
{@VFD_NEWFORM_DECL}
{@VFD_NEWFORM_IMPL}
procedure TMainForm.TrackbarChanged(Sender: TObject; APosition: integer);
begin
Anim1.Position := APosition;
end;
procedure TMainForm.btnQuitClicked(Sender: TObject);
begin
Close;
end;
procedure TMainForm.btnStartClicked(Sender: TObject);
begin
if btnStart.Tag = 0 then
btnStart.Tag := 1
else
btnStart.Tag := 0;
case btnStart.Tag of
0:
begin
btnStart.Text := 'Start';
Anim1.Enabled := False;
end;
1:
begin
btnStart.Text := 'Stop';
Anim1.Enabled := True;
end;
end; { case }
end;
procedure TMainForm.AfterCreate;
begin
{@VFD_BODY_BEGIN: MainForm}
Name := 'MainForm';
SetPosition(329, 251, 300, 250);
WindowTitle := 'Animation Demo';
Sizeable := False;
WindowPosition := wpScreenCenter;
btnQuit := TfpgButton.Create(self);
with btnQuit do
begin
Name := 'btnQuit';
SetPosition(212, 216, 80, 24);
Text := 'Quit';
FontDesc := '#Label1';
Hint := '';
ImageName := '';
TabOrder := 0;
OnClick := @btnQuitClicked;
end;
btnStart := TfpgButton.Create(self);
with btnStart do
begin
Name := 'btnStart';
SetPosition(140, 12, 80, 24);
Text := 'Start';
FontDesc := '#Label1';
Hint := '';
ImageName := '';
TabOrder := 1;
OnClick := @btnStartClicked;
end;
tbName1 := TfpgTrackBar.Create(self);
with tbName1 do
begin
Name := 'tbName1';
SetPosition(154, 84, 100, 30);
Max := 3;
ShowPosition := True;
TabOrder := 2;
OnChange := @TrackbarChanged;
end;
Anim1 := TfpgImgAnim.Create(self);
with Anim1 do
begin
Name := 'Anim1';
SetPosition(16, 12, 110, 100);
ImageFileName := 'gears.bmp';
end;
wanda := TfpgImgAnim.Create(self);
with wanda do
begin
Name := 'wanda';
SetPosition(64, 156, 104, 40);
IsTransparent := False;
ImageFileName := 'wanda.bmp';
FrameCount := 8;
Interval := 300;
Enabled := True;
end;
lblName1 := TfpgLabel.Create(self);
with lblName1 do
begin
Name := 'lblName1';
SetPosition(140, 52, 152, 16);
FontDesc := '#Label2';
Hint := '';
Text := 'Step through frames';
end;
lblName2 := TfpgLabel.Create(self);
with lblName2 do
begin
Name := 'lblName2';
SetPosition(56, 136, 108, 16);
FontDesc := '#Label2';
Hint := '';
Text := 'Wanda the fish';
end;
lblName3 := TfpgLabel.Create(self);
with lblName3 do
begin
Name := 'lblName3';
SetPosition(140, 68, 152, 16);
FontDesc := '#Label1';
Hint := '';
Text := '(stop the animation first)';
end;
loadinglogo := TfpgImgAnim.Create(self);
with loadinglogo do
begin
Name := 'loadinglogo';
SetPosition(236, 156, 16, 16);
IsTransparent := True;
ImageFileName := 'loading.bmp';
FrameCount := 8;
Interval := 200;
Enabled := True;
end;
Label1 := TfpgLabel.Create(self);
with Label1 do
begin
Name := 'Label1';
SetPosition(204, 136, 112, 16);
FontDesc := '#Label2';
Hint := '';
Text := 'Loading...';
end;
{@VFD_BODY_END: MainForm}
end;
procedure MainProc;
var
frm: TMainForm;
begin
fpgApplication.Initialize;
frm := TMainForm.Create(nil);
try
frm.Show;
fpgApplication.Run;
finally
frm.Free;
end;
end;
begin
MainProc;
end.
|