-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdelegate.prg
77 lines (52 loc) · 1.96 KB
/
delegate.prg
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
* IN YOUR APP PUT THIS LINES AT STARTUP
* do (getenv("Userprofile") + "\kwruntime\kodnet\loader.prg")
* _screen.kodnetLoader.load("v4")
if type("_screen.kodnetLoader.v4") == "U" or isnull(_screen.kodnetLoader.v4)
* Execute init.prg
MESSAGEBOX("Por favor ejecute el archivo init.prg primero. (Please execute first init.prg)", 64, "")
return
endif
local kodnet
kodnet = _screen.kodnetLoader.v4
* YES! KODNET SUPPORTS DELEGATES
PUBLIC Func1, Func2, target , TestClass, needrunCompile
TRY
* Take a look in compilecsharp.prg example for understand
TestClass= m.kodnet.COM.getStaticWrapper("Compiled.Test")
CATCH TO ex
needrunCompile= .t.
ENDTRY
IF needrunCompile
RETURN MESSAGEBOX("Please execute first 'compilecsharp.prg' example",64,"Kodnet")
ENDIF
target= CREATEOBJECT("func_callback")
target1= CREATEOBJECT("func_callback1")
Func1= m.kodnet.COM.getStaticWrapper("System.Func<System.String,System.Int32>").construct(m.kodnet.Helper.delegate(m.target,"callback"))
Func2= m.kodnet.COM.getStaticWrapper("System.Func<System.String,System.Int32,System.String,System.Int32>").construct(m.kodnet.Helper.delegate(m.target1,"invoke"))
* Pass Func1 delegate to c# function
?TestClass.executeFunc(Func1)
* pass overloaded
?TestClass.executeFunc(Func1, "Parameter sent to c#")
* pass overloaded System.Func<string,int,string,int>
?TestClass.executeFunc(Func2, "Parameter sent to c#", 64, "Title")
* It's a good practice Free delegate, avoid memory leaks
Func1.dispose()
Func2.dispose()
DEFINE CLASS func_callback as Custom
FUNCTION callback( str, option, title )
IF PCOUNT() == 3
RETURN MESSAGEBOX(str,option,title)
ELSE
RETURN MESSAGEBOX(str)
ENDIF
ENDFUNC
ENDDEFINE
DEFINE CLASS func_callback1 as Custom
FUNCTION invoke( str, option, title )
IF PCOUNT() == 3
RETURN MESSAGEBOX("MS2: " + str,option,title)
ELSE
RETURN MESSAGEBOX("MS2: "+str)
ENDIF
ENDFUNC
ENDDEFINE