-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
DW.NativeControl.iOS.pas
68 lines (56 loc) · 1.85 KB
/
DW.NativeControl.iOS.pas
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
unit DW.NativeControl.iOS;
{*******************************************************}
{ }
{ Kastri }
{ }
{ Delphi Worlds Cross-Platform Library }
{ }
{ Copyright 2020-2024 Dave Nottage under MIT license }
{ which is located in the root folder of this library }
{ }
{*******************************************************}
interface
uses
// iOS
iOSapi.UIKit,
// FMX
FMX.Presentation.iOS;
type
TNativeControl = class(TiOSNativeControl)
private
FLongPressRecognizer: UILongPressGestureRecognizer;
protected
procedure DoLongPress; virtual;
public
function canBecomeFirstResponder: Boolean; cdecl;
procedure HandleLongPress(gestureRecognizer: UILongPressGestureRecognizer); cdecl;
public
constructor Create; override;
end;
implementation
uses
// macOS
Macapi.ObjCRuntime;
{ TNativeControl }
constructor TNativeControl.Create;
begin
inherited;
FLongPressRecognizer := TUILongPressGestureRecognizer.Alloc;
FLongPressRecognizer.initWithTarget(GetObjectID, sel_getUid('HandleLongPress:'));
FLongPressRecognizer.setDelaysTouchesBegan(False);
FLongPressRecognizer.setCancelsTouchesInView(True);
View.addGestureRecognizer(FLongPressRecognizer);
end;
function TNativeControl.canBecomeFirstResponder: Boolean;
begin
Result := UIView(super).canBecomeFirstResponder and Control.CanFocus and Control.HitTest;
end;
procedure TNativeControl.HandleLongPress(gestureRecognizer: UILongPressGestureRecognizer);
begin
DoLongPress;
end;
procedure TNativeControl.DoLongPress;
begin
//
end;
end.