|
90 | 90 | CHex C.MMRGBHex
|
91 | 91 | // CBitmap define CBitmap as C.MMBitmapRef type
|
92 | 92 | CBitmap C.MMBitmapRef
|
| 93 | + // Handle define window Handle as C.MData type |
| 94 | + Handle C.MData |
93 | 95 | )
|
94 | 96 |
|
95 | 97 | // Bitmap define the go Bitmap struct
|
@@ -875,12 +877,22 @@ func IsValid() bool {
|
875 | 877 | }
|
876 | 878 |
|
877 | 879 | // SetActive set the window active
|
878 |
| -func SetActive(win C.MData) { |
| 880 | +func SetActive(win Handle) { |
| 881 | + SetActiveC(C.MData(win)) |
| 882 | +} |
| 883 | + |
| 884 | +// SetActiveC set the window active |
| 885 | +func SetActiveC(win C.MData) { |
879 | 886 | C.set_active(win)
|
880 | 887 | }
|
881 | 888 |
|
882 | 889 | // GetActive get the active window
|
883 |
| -func GetActive() C.MData { |
| 890 | +func GetActive() Handle { |
| 891 | + return Handle(GetActiveC()) |
| 892 | +} |
| 893 | + |
| 894 | +// GetActiveC get the active window |
| 895 | +func GetActiveC() C.MData { |
884 | 896 | mdata := C.get_active()
|
885 | 897 | // fmt.Println("active----", mdata)
|
886 | 898 | return mdata
|
@@ -954,8 +966,29 @@ func SetHandlePid(pid int, args ...int) {
|
954 | 966 | C.set_handle_pid_mData(C.uintptr(pid), C.int8_t(isPid))
|
955 | 967 | }
|
956 | 968 |
|
| 969 | +// GetHandById get handle mdata by id |
| 970 | +func GetHandById(id int, args ...int) Handle { |
| 971 | + isPid := 1 |
| 972 | + if len(args) > 0 { |
| 973 | + isPid = args[0] |
| 974 | + } |
| 975 | + return GetHandByPid(id, isPid) |
| 976 | +} |
| 977 | + |
| 978 | +// GetHandByPid get handle mdata by pid |
| 979 | +func GetHandByPid(pid int, args ...int) Handle { |
| 980 | + return Handle(GetHandByPidC(pid, args...)) |
| 981 | +} |
| 982 | + |
| 983 | +// Deprecated: use the GetHandByPid(), |
| 984 | +// |
957 | 985 | // GetHandPid get handle mdata by pid
|
958 |
| -func GetHandPid(pid int, args ...int) C.MData { |
| 986 | +func GetHandPid(pid int, args ...int) Handle { |
| 987 | + return GetHandByPid(pid, args...) |
| 988 | +} |
| 989 | + |
| 990 | +// GetHandByPidC get handle mdata by pid |
| 991 | +func GetHandByPidC(pid int, args ...int) C.MData { |
959 | 992 | var isPid int
|
960 | 993 | if len(args) > 0 || NotPid {
|
961 | 994 | isPid = 1
|
|
0 commit comments