Skip to content

Commit 0de26ec

Browse files
authored
Merge pull request #685 from go-vgo/bitmap-pr
Add: export Handle data and add more window handle function #683
2 parents 0110b85 + c48e3d0 commit 0de26ec

File tree

1 file changed

+36
-3
lines changed

1 file changed

+36
-3
lines changed

robotgo.go

+36-3
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ type (
9090
CHex C.MMRGBHex
9191
// CBitmap define CBitmap as C.MMBitmapRef type
9292
CBitmap C.MMBitmapRef
93+
// Handle define window Handle as C.MData type
94+
Handle C.MData
9395
)
9496

9597
// Bitmap define the go Bitmap struct
@@ -875,12 +877,22 @@ func IsValid() bool {
875877
}
876878

877879
// 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) {
879886
C.set_active(win)
880887
}
881888

882889
// 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 {
884896
mdata := C.get_active()
885897
// fmt.Println("active----", mdata)
886898
return mdata
@@ -954,8 +966,29 @@ func SetHandlePid(pid int, args ...int) {
954966
C.set_handle_pid_mData(C.uintptr(pid), C.int8_t(isPid))
955967
}
956968

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+
//
957985
// 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 {
959992
var isPid int
960993
if len(args) > 0 || NotPid {
961994
isPid = 1

0 commit comments

Comments
 (0)