-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathControlProxy.pas
97 lines (80 loc) · 2 KB
/
ControlProxy.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
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
unit ControlProxy;
// Moved from CAPI_CtrlQueue.pas to avoid global variables
interface
uses
Classes,
ControlQueue,
ControlElem,
DSSClass,
sysutils,
Utilities,
UComplex, DSSUcomplex;
type
TControlProxyObj = class(TControlElem)
PUBLIC
ActionList: TList;
procedure ClearActionList;
function PopAction: Boolean;
constructor Create(context: TDSSContext);
destructor Destroy; OVERRIDE;
procedure DoPendingAction(const Code, ProxyHdl: Integer); OVERRIDE; // Do the action that is pending from last sample
procedure Reset; OVERRIDE; // Reset to initial defined state
procedure RecalcElementData; Override;
end;
implementation
uses
DSSGlobals,
DSSClassDefs;
procedure TControlProxyObj.DoPendingAction(const Code, ProxyHdl: Integer);
var
Action: pAction;
begin
Action := Allocmem(SizeOf(TAction));
Action^.ActionCode := Code;
Action^.DeviceHandle := ProxyHdl;
ActionList.Add(Action);
end;
procedure TControlProxyObj.RecalcElementData;
begin
raise Exception.Create('This procedure should not be called');
end;
procedure TControlProxyObj.ClearActionList;
begin
while PopAction do ; // spin until it is done
end;
constructor TControlProxyObj.Create(context: TDSSContext);
begin
DSS := context;
Name := 'COM_Proxy';
ActionList := TList.Create;
DSSObjType := DSS_OBJECT + HIDDEN_ELEMENT;
pUuid := nil;
end;
destructor TControlProxyObj.Destroy;
begin
ClearActionList;
ActionList.Free;
DSS := nil;
inherited;
end;
function TControlProxyObj.PopAction: Boolean;
begin
if DSS.ActiveAction <> NIL then
begin
Freemem(DSS.ActiveAction, Sizeof(TAction));
DSS.ActiveAction := NIL;
end;
Result := TRUE;
if ActionList.Count > 0 then
begin
DSS.ActiveAction := ActionList.Items[0];
ActionList.Delete(0);
end
else
Result := FALSE;
end;
procedure TControlProxyObj.Reset;
begin
ClearActionList;
end;
end.