-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUnitThread.pas
More file actions
141 lines (100 loc) · 3.06 KB
/
UnitThread.pas
File metadata and controls
141 lines (100 loc) · 3.06 KB
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
unit UnitThread;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.ScrollBox,
FMX.Memo, FMX.Controls.Presentation, FMX.StdCtrls;
type
TMyThread=class(TThread)
procedure execute; override;
procedure Finish;
procedure Ligne ;
end;
TForm2 = class(TForm)
Button1: TButton;
Button2: TButton;
Button3: TButton;
Memo1: TMemo;
AniIndicator1: TAniIndicator;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
private
{ Déclarations privées }
public
{ Déclarations publiques }
procedure StopThread ;
end;
var
Form2: TForm2;
FMyThread : TMyThread ;
FArreterThread : boolean ;
Fmythreadid : integer ;
implementation
{$R *.fmx}
{------------------------------------------------------------------------------}
////////////////////////////////////////////////////////// Gestion Thread ////
{------------------------------------------------------------------------------}
procedure TMyThread.execute;
var
i, m : integer ;
begin
m := 0 ;
Fmythreadid := Self.ThreadID ;
for i:= 1 to 10000 do begin
if FArreterThread = True then begin
synchronize(Finish);
Exit ;
end;
inc(m);
Form2.Memo1.lines.add(inttostr(m));
synchronize(Ligne);
end;
synchronize(Finish);
end;
{------------------------------------------------------------------------------}
procedure TMyThread.Finish;
begin
Form2.memo1.lines.add('Thread Finish');
Form2.AniIndicator1.Enabled := False ;
Form2.AniIndicator1.Visible := False ;
Form2.Memo1.Visible := True ;
end;
{------------------------------------------------------------------------------}
procedure TMyThread.Ligne;
begin
//
end;
{------------------------------------------------------------------------------}
////////////////////////////////////////// Gestion Application principale ////
{------------------------------------------------------------------------------}
procedure TForm2.Button1Click(Sender: TObject);
var
i: integer ;
begin
Memo1.Lines.Clear ;
for i:= 0 to 10000 do begin
memo1.lines.add(inttostr(i));
end;
end;
{------------------------------------------------------------------------------}
procedure TForm2.Button2Click(Sender: TObject);
begin
AniIndicator1.Visible := True ;
AniIndicator1.Enabled := True ;
Memo1.Lines.Clear ;
Memo1.Visible := False ;
FArreterThread := False ;
FMyThread := TMyThread.Create(False) ;
end;
{------------------------------------------------------------------------------}
procedure TForm2.Button3Click(Sender: TObject);
begin
FMyThread.Synchronize(StopThread);
end;
{------------------------------------------------------------------------------}
procedure TForm2.StopThread;
begin
FArreterThread := True ;
end;
end.