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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
|
unit gui_scrollbar;
{$mode objfpc}{$H+}
{
TODO:
* Set slider button to minimum length (default setting)
* Create property to enable dynamic sizing of slider button length.
* Paint scroll area between arrow buttons and slider button a different
color on click.
}
interface
uses
Classes,
SysUtils,
gfxbase,
fpgfx,
gfx_widget;
type
TScrollNotifyEvent = procedure(Sender: TObject; position: integer) of object;
{ TfpgScrollBar }
TfpgScrollBar = class(TfpgWidget)
private
FMax: integer;
FMin: integer;
FOnScroll: TScrollNotifyEvent;
FPosition: integer;
FScrollStep: integer;
procedure SetMax(const AValue: integer);
procedure SetMin(const AValue: integer);
procedure SetPosition(const AValue: integer);
protected
FSliderPos: TfpgCoord;
FSliderLength: TfpgCoord;
FSliderDragging: boolean;
FStartBtnPressed,
FEndBtnPressed: Boolean;
FSliderDragPos: TfpgCoord;
FSliderDragStart: TfpgCoord;
FScrollTimer: TfpgTimer;
FActiveButtonRect: TfpgRect;
FMousePosition: TPoint;
procedure ScrollTimer(Sender: TObject);
procedure DrawButton(x, y, w, h: TfpgCoord; const imgname: string; Pressed: Boolean = False);
procedure DrawSlider(recalc: boolean);
procedure HandleLMouseDown(x, y: integer; shiftstate: TShiftState); override;
procedure HandleLMouseUp(x, y: integer; shiftstate: TShiftState); override;
procedure HandleMouseMove(x, y: integer; btnstate: word; shiftstate: TShiftState); override;
procedure HandleMouseScroll(x, y: integer; shiftstate: TShiftState; delta: smallint); override;
procedure HandlePaint; override;
procedure PositionChange(d: integer);
public
Orientation: TOrientation;
SliderSize: double; // 0-1
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure RepaintSlider;
property Position: integer read FPosition write SetPosition default 10;
property ScrollStep: integer read FScrollStep write FScrollStep default 1;
property Min: integer read FMin write SetMin default 0;
property Max: integer read FMax write SetMax default 100;
property OnScroll: TScrollNotifyEvent read FOnScroll write FOnScroll;
end;
implementation
{ TfpgScrollBar }
constructor TfpgScrollBar.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FScrollTimer := TfpgTimer.Create(500);
FScrollTimer.Enabled := False;
FScrollTimer.OnTimer := @ScrollTimer;
Orientation := orVertical;
FMin := 0;
FMax := 100;
FPosition := 10;
SliderSize := 0.5;
FOnScroll := nil;
FSliderPos := 0;
FSliderDragging := False;
FSliderLength := 10;
FScrollStep := 1;
end;
destructor TfpgScrollBar.Destroy;
begin
FScrollTimer.Free;
inherited Destroy;
end;
procedure TfpgScrollBar.HandlePaint;
begin
Canvas.BeginDraw;
if Orientation = orVertical then
begin
DrawButton(0, 0, Width, Width, 'sys.sb.up', FStartBtnPressed);
DrawButton(0, Height-Width, Width, Width, 'sys.sb.down', FEndBtnPressed);
end
else
begin
DrawButton(0, 0, Height, Height, 'sys.sb.left', FStartBtnPressed);
DrawButton(Width-Height, 0, Height, Height, 'sys.sb.right', FEndBtnPressed);
end;
DrawSlider(True);
Canvas.EndDraw;
end;
procedure TfpgScrollBar.RepaintSlider;
begin
if not HasHandle then
Exit; //==>
DrawSlider(True);
end;
procedure TfpgScrollBar.SetMax(const AValue: integer);
begin
if AValue = FMax then
Exit;
if AValue < FMin then
FMax := FMin
else
FMax := AValue;
if FPosition > FMax then
SetPosition(FMax);
end;
procedure TfpgScrollBar.SetMin(const AValue: integer);
begin
if AValue = FMin then
Exit;
if AValue > FMax then
FMin := FMax
else
FMin := AValue;
if FPosition < FMin then
SetPosition(FMin);
end;
procedure TfpgScrollBar.SetPosition(const AValue: integer);
begin
if AValue < FMin then
FPosition := FMin
else if AValue > FMax then
FPosition := FMax
else
FPosition := AValue;
end;
procedure TfpgScrollBar.ScrollTimer(Sender: TObject);
begin
FScrollTimer.Interval := 25;
if (FMousePosition.X < FActiveButtonRect.Right)
and (FMousePosition.X > FActiveButtonRect.Left)
and (FMousePosition.Y < FActiveButtonRect.Bottom)
and (FMousePosition.Y > FActiveButtonRect.Top) then
begin
if FStartBtnPressed then
begin
PositionChange(-FScrollStep);
if Position = FMin then
FScrollTimer.Enabled := False;
end;
if FEndBtnPressed then
begin
PositionChange(FScrollStep);
if Position = FMax then
FScrollTimer.Enabled := False;
end;
end
else
FScrollTimer.Enabled := False;
end;
procedure TfpgScrollBar.DrawButton(x, y, w, h: TfpgCoord; const imgname: string; Pressed: Boolean = False);
var
img: TfpgImage;
begin
if Pressed then
Canvas.DrawButtonFace(x, y, w, h, [btnIsEmbedded, btnIsPressed])
else
Canvas.DrawButtonFace(x, y, w, h, [btnIsEmbedded]);
Canvas.SetColor(clText1);
img := fpgImages.GetImage(imgname);
if img <> nil then
Canvas.DrawImage(x + w div 2 - (img.Width div 2), y + h div 2 - (img.Height div 2), img);
end;
procedure TfpgScrollBar.DrawSlider(recalc: boolean);
var
area: TfpgCoord;
mm: TfpgCoord;
begin
Canvas.BeginDraw;
if SliderSize > 1 then
SliderSize := 1;
Canvas.SetColor(clScrollBar);
if Orientation = orVertical then
begin
Canvas.FillRectangle(0, Width, Width, Height-Width-Width);
area := Height - (Width shl 1);
end
else
begin
Canvas.FillRectangle(Height, 0, Width-Height-Height, Height);
area := Width - (Height shl 1);
end;
if recalc then
begin
if FPosition > FMax then
FPosition := FMax;
if FPosition < FMin then
FPosition := FMin;
FSliderLength := Trunc(area * SliderSize);
//FSliderLength := Trunc((width/area) * (fmax /area ));
if FSliderLength < 20 then
FSliderLength := 20;
if FSliderLength > area then
FSliderLength := area;
area := area - FSliderLength;
mm := FMax - FMin;
if mm = 0 then
FSliderPos := 0
else
FSliderPos := Trunc(area * ((FPosition - FMin) / mm));
end;
if Orientation = orVertical then
begin
Canvas.DrawButtonFace(0, Width + FSliderPos, Width, FSliderLength, [btnIsEmbedded]);
Canvas.EndDraw(0, Width, Width, Height - Width - Width);
end
else
begin
Canvas.DrawButtonFace(Height + FSliderPos, 0, FSliderLength, Height, [btnIsEmbedded]);
Canvas.EndDraw(Height, 0, Width - Height - Height, Height);
end;
end;
procedure TfpgScrollBar.HandleLMouseDown(x, y: integer; shiftstate: TShiftState);
begin
inherited;
if Orientation = orVertical then
begin
if y <= Width then
begin
PositionChange(-FScrollStep);
FStartBtnPressed := True;
FActiveButtonRect.SetRect(0, 0, Width, Width);
end
else if y >= Height - Width then
begin
PositionChange(FScrollStep);
FEndBtnPressed := True;
FActiveButtonRect.SetRect(0,Height-Width, Width, Height);
end
else if (y >= Width + FSliderPos) and (y <= Width + FSliderPos + FSliderLength) then
begin
FSliderDragging := True;
FSliderDragPos := y;
end;
end
else
begin
if x <= Height then
begin
PositionChange(-FScrollStep);
FStartBtnPressed := True;
FActiveButtonRect.SetRect(0, 0, Height, Height);
end
else if x >= Width - Height then
begin
PositionChange(FScrollStep);
FEndBtnPressed := True;
FActiveButtonRect.SetRect(Width-Height, 0, Width, Height);
end
else if (x >= Height + FSliderPos) and (x <= Height + FSliderPos + FSliderLength) then
begin
FSliderDragging := True;
FSliderDragPos := x;
end;
end;
if FSliderDragging then
begin
FSliderDragStart := FSliderPos;
DrawSlider(False);
end
else if FStartBtnPressed or FEndBtnPressed then
begin
FScrollTimer.Interval := 500;
FScrollTimer.Enabled := True;
HandlePaint;
end;
end;
procedure TfpgScrollBar.HandleLMouseUp(x, y: integer; shiftstate: TShiftState);
var
WasPressed: Boolean;
begin
inherited;
WasPressed := FStartBtnPressed or FEndBtnPressed;
FScrollTimer.Enabled := False;
FStartBtnPressed := False;
FEndBtnPressed := False;
FSliderDragging := False;
if WasPressed then HandlePaint;
end;
procedure TfpgScrollBar.HandleMouseMove(x, y: integer; btnstate: word; shiftstate: TShiftState);
var
d: integer;
area: integer;
newp: integer;
ppos: integer;
begin
inherited HandleMouseMove(x, y, btnstate, shiftstate);
FMousePosition.X := x;
FMousePosition.Y := y;
if (not FSliderDragging) or ((btnstate and MOUSE_LEFT) = 0) then
begin
FSliderDragging := False;
Exit;
end;
if Orientation = orVertical then
begin
d := y - FSliderDragPos;
area := Height - (Width shl 1) - FSliderLength;
end
else
begin
d := x - FSliderDragPos;
area := Width - (Height shl 1) - FSliderLength;
end;
ppos := FSliderPos;
FSliderPos := FSliderDragStart + d;
if FSliderPos < 0 then
FSliderPos := 0;
if FSliderPos > area then
FSliderPos := area;
if ppos <> FSliderPos then
DrawSlider(False);
if area <> 0 then
newp := FMin + Trunc((FMax - FMin) * (FSliderPos / area))
else
newp := FMin;
if newp <> FPosition then
begin
Position := newp;
if Assigned(FOnScroll) then
FOnScroll(self, FPosition);
end;
end;
procedure TfpgScrollBar.HandleMouseScroll(x, y: integer; shiftstate: TShiftState;
delta: smallint);
begin
inherited HandleMouseScroll(x, y, shiftstate, delta);
if delta < 0 then PositionChange(-FScrollStep);
if delta > 0 then PositionChange( FScrollStep);
end;
procedure TfpgScrollBar.PositionChange(d: integer);
begin
FPosition := FPosition + d;
if FPosition < FMin then
FPosition := FMin;
if FPosition > FMax then
FPosition := FMax;
if Visible then DrawSlider(True);
if Assigned(FOnScroll) then
FOnScroll(self, FPosition);
end;
end.
|