-
Notifications
You must be signed in to change notification settings - Fork 885
/
mainloop_cgo.go
56 lines (48 loc) · 1.46 KB
/
mainloop_cgo.go
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
// Copyright 2019 The Walk Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build windows,walk_use_cgo
package walk
import (
"unsafe"
"github.com/lxn/win"
)
// #include <windows.h>
//
// extern void shimRunSynchronized(uintptr_t fb);
// extern unsigned char shimHandleKeyDown(uintptr_t fb, uintptr_t m);
//
// static int mainloop(uintptr_t handle_ptr, uintptr_t fb_ptr)
// {
// HANDLE *hwnd = (HANDLE *)handle_ptr;
// MSG m;
// int r;
//
// while (*hwnd) {
// r = GetMessage(&m, NULL, 0, 0);
// if (!r)
// return m.wParam;
// else if (r < 0)
// return -1;
// if (m.message == WM_KEYDOWN && shimHandleKeyDown(fb_ptr, (uintptr_t)&m))
// continue;
// if (!IsDialogMessage(*hwnd, &m)) {
// TranslateMessage(&m);
// DispatchMessage(&m);
// }
// shimRunSynchronized(fb_ptr);
// }
// return 0;
// }
import "C"
//export shimHandleKeyDown
func shimHandleKeyDown(fb uintptr, msg uintptr) bool {
return (*FormBase)(unsafe.Pointer(fb)).handleKeyDown((*win.MSG)(unsafe.Pointer(msg)))
}
//export shimRunSynchronized
func shimRunSynchronized(fb uintptr) {
(*FormBase)(unsafe.Pointer(fb)).group.RunSynchronized()
}
func (fb *FormBase) mainLoop() int {
return int(C.mainloop(C.uintptr_t(uintptr(unsafe.Pointer(&fb.hWnd))), C.uintptr_t(uintptr(unsafe.Pointer(fb)))))
}