-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnit1.pas
More file actions
276 lines (228 loc) · 6.54 KB
/
Copy pathUnit1.pas
File metadata and controls
276 lines (228 loc) · 6.54 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
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, Vcl.StdCtrls, Vcl.Menus, mmsystem,
Vcl.AppEvnts, Vcl.Themes, zaehlerForm, SHFolder;
type
states = (idle, running, stopped);
type
TForm1 = class(TForm)
btn_20sec: TButton;
Timer1: TTimer;
btn_30sec: TButton;
btn_start: TButton;
btn_reset: TButton;
PopupMenu: TPopupMenu;
DarkMode: TMenuItem;
ApplicationEvents1: TApplicationEvents;
KeepOnTop: TMenuItem;
procedure btn_20secClick(Sender: TObject);
procedure Timer1Timer(Sender: TObject);
procedure btn_30secClick(Sender: TObject);
procedure btn_startClick(Sender: TObject);
procedure FormActivate(Sender: TObject);
procedure btn_resetClick(Sender: TObject);
procedure Button1Click(Sender: TObject);
procedure DarkModeClick(Sender: TObject);
procedure FormMouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
procedure ApplicationEvents1Message(var Msg: tagMSG; var Handled: Boolean);
procedure FormCreate(Sender: TObject);
procedure ApplicationEvents1Activate(Sender: TObject);
procedure FormShow(Sender: TObject);
procedure KeepOnTopClick(Sender: TObject);
private
{ Private-Deklarationen }
counter: integer;
counterStart: integer;
state: states;
zaehler: TZaehler;
init: boolean;
appFolder: string;
public
{ Public-Deklarationen }
const
version: string = '0.3';
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
// ----------------------------------------------------
function GetSpecialFolderPath(CSIDLFolder: Integer): string;
var
FilePath: array [0..MAX_PATH] of char;
begin
SHGetFolderPath(0, CSIDLFolder, 0, 0, FilePath);
Result := FilePath;
end;
// -----------------------------------------------------
procedure TForm1.FormActivate(Sender: TObject);
begin
state := idle;
PopupMenu.AutoPopup := True;
Application.Title := 'XXX'; // Application.Title + ' v' + version;
end;
// -----------------------------------------------------------------------------
procedure saveUserData();
begin
end;
// -----------------------------------------------------------------------------
procedure TForm1.FormCreate(Sender: TObject);
begin
zaehler := Tzaehler.Create(nil);
zaehler.Show;
init := true;
if (Sender is TForm1) then
counterStart := 20;
appFolder := GetSpecialFolderPath($001c);
// zaehler.lbl_counter.Caption := '20';
end;
procedure TForm1.FormMouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
begin
// ShowMessage('Right button clicked.');
end;
procedure TForm1.FormShow(Sender: TObject);
begin
zaehler.BringToFront;
BringToFront;
if (init) then
begin
zaehler.Top := Top;
zaehler.Left := Left+Width+5;
init := false;
end;
end;
procedure TForm1.KeepOnTopClick(Sender: TObject);
begin
ShowMessage(Sender.ToString);
KeepOnTop.Checked := not KeepOnTop.Checked;
if (KeepOnTop.Checked) then
begin
SetWindowPos(Handle, HWND_TOPMOST, 0,0,0,0, SWP_NOACTIVATE+SWP_NOMOVE+SWP_NOSIZE);
end
else
begin
SetWindowPos(Handle, HWND_NOTOPMOST, 0,0,0,0, SWP_NOACTIVATE+SWP_NOMOVE+SWP_NOSIZE);
end;
end;
// ----------------------------------------------------
procedure TForm1.btn_30secClick(Sender: TObject);
begin
counterStart := 30;
zaehler.lbl_counter.Color := clWindow;
zaehler.lbl_counter.Caption := intToStr(counterStart);
end;
// ----------------------------------------------------
procedure TForm1.btn_startClick(Sender: TObject);
begin
if (state = idle) then
begin
btn_start.Caption := 'Stop';
btn_30sec.Enabled := false;
btn_20sec.Enabled := false;
btn_reset.Enabled := false;
Timer1.Enabled := true;
zaehler.lbl_counter.Color := clWindow;
zaehler.lbl_counter.Transparent := false;
counter := counterStart;
zaehler.lbl_counter.Caption := intToStr(counter);
state := running;
end
else if (state = running) then
begin
state := stopped;
Timer1.Enabled := false;
btn_start.Caption := 'Continue';
btn_reset.Enabled := true;
end
else if (state = stopped) then
begin
state := running;
Timer1.Enabled := true;
btn_start.Caption := 'Stop';
btn_30sec.Enabled := true;
btn_20sec.Enabled := true;
btn_reset.Enabled := false;
end;
end;
// ----------------------------------------------------
procedure TForm1.Button1Click(Sender: TObject);
begin
PopupMenu.Popup(Mouse.CursorPos.X, Mouse.CursorPos.Y);
end;
procedure TForm1.DarkModeClick(Sender: TObject);
begin
DarkMode.Checked := not DarkMode.Checked;
TStyleManager.SetStyle('Amakrits');
end;
// ----------------------------------------------------
procedure TForm1.btn_resetClick(Sender: TObject);
begin
state := idle;
counter := counterStart;
zaehler.lbl_counter.Caption := intToStr(counter);
btn_start.Caption := 'Start';
btn_20sec.Enabled := true;
btn_30sec.Enabled := true;
zaehler.lbl_counter.Color := clWindow;
zaehler.lbl_counter.Transparent := false;
end;
// -----------------------------------------------------
procedure TForm1.ApplicationEvents1Activate(Sender: TObject);
begin
zaehler.BringToFront;
BringToFront;
end;
procedure TForm1.ApplicationEvents1Message(var Msg: tagMSG;
var Handled: Boolean);
begin
if (Msg.message = WM_RBUTTONDOWN) then
begin
PopupMenu.Popup(Mouse.CursorPos.X, Mouse.CursorPos.Y);
end;
end;
procedure TForm1.btn_20secClick(Sender: TObject);
begin
counterStart := 20;
zaehler.lbl_counter.Color := clWindow;
zaehler.lbl_counter.Caption := intToStr(counterStart);
end;
// ----------------------------------------------------
procedure TForm1.Timer1Timer(Sender: TObject);
begin
if (counter > 0) then
begin
counter := counter - 1;
zaehler.lbl_counter.Caption := intToStr(counter);
end
else
begin
state := idle;
Timer1.Enabled := false;
btn_start.Enabled := true;
btn_30sec.Enabled := true;
btn_20sec.Enabled := true;
end;
if (counter <= 5) then
begin
zaehler.lbl_counter.Transparent := false;
zaehler.lbl_counter.Color := clYellow;
end;
if (counter = 0) then
begin
state := idle;
zaehler.lbl_counter.Color := clRed;
btn_start.Caption := 'Start';
btn_30sec.Enabled := true;
btn_20sec.Enabled := true;
btn_reset.Enabled := true;
Timer1.Enabled := false;
// if (Sound.Checked) then
// PlaySound('d:\ftp\antwortbitte.wav',hInstance,SND_ASYNC);
end;
end;
// ----------------------------------------------------
end.