forked from getlantern/systray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
systray_darwin.go
164 lines (143 loc) · 2.98 KB
/
systray_darwin.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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
// +build darwin
package systray
/*
#cgo darwin CFLAGS: -DDARWIN -x objective-c -fobjc-arc
#cgo darwin LDFLAGS: -framework Cocoa
#include "systray_darwin.h"
*/
import "C"
import (
"io/ioutil"
"unsafe"
)
func nativeLoop() (err error) {
_, err = C.nativeLoop()
return
}
func quit() {
C.quit()
}
// Sets the systray icon.
// iconBytes should be the content of .ico/.jpg/.png
func setIcon(iconBytes []byte) error {
cstr := (*C.char)(unsafe.Pointer(&iconBytes[0]))
_, err := C.setIcon(cstr, (C.int)(len(iconBytes)))
return err
}
// Sets the systray icon by path to file.
// File should be one of .ico/.jpg/.png
func setIconPath(path string) error {
b, err := ioutil.ReadFile(path)
if err != nil {
return err
}
return setIcon(b)
}
// SetTitle sets the systray title, only available on Mac.
func setTitle(title string) error {
_, err := C.setTitle(C.CString(title))
return err
}
// SetTooltip sets the systray tooltip to display on mouse hover of the tray icon,
// only available on Mac and Windows.
func setTooltip(tooltip string) error {
_, err := C.setTooltip(C.CString(tooltip))
return err
}
func addOrUpdateMenuItem(item *MenuItem) error {
if item.isSeparator {
return addSeparator(item.id)
}
var disabled, checked, isSubmenu, isSubmenuItem C.short
if item.disabled {
disabled = 1
}
if item.checked {
checked = 1
}
if item.isSubmenu {
isSubmenu = 1
isSubmenuItem = 0
}
if item.isSubmenuItem {
isSubmenu = 0
isSubmenuItem = 1
}
_, err := C.add_or_update_menu_item(
C.int(item.id),
C.int(item.menuId),
C.CString(item.title),
C.CString(item.tooltip),
disabled,
checked,
isSubmenu,
isSubmenuItem,
)
return err
}
func addSeparator(id int32) error {
_, err := C.add_separator(C.int(id))
return err
}
func hideMenuItem(item *MenuItem) error {
_, err := C.hide_menu_item(
C.int(item.id),
)
return err
}
func showMenuItem(item *MenuItem) error {
_, err := C.show_menu_item(
C.int(item.id),
)
return err
}
//export systray_ready
func systray_ready() {
go systrayReady()
}
//export systray_on_exit
func systray_on_exit() {
systrayExit()
}
//export systray_menu_item_selected
func systray_menu_item_selected(cID C.int) {
systrayMenuItemSelected(int32(cID), false, false)
}
func addBitmap(bitmapBytes []byte, item *MenuItem) error {
cstr := (*C.char)(unsafe.Pointer(&bitmapBytes[0]))
_, err := C.add_bitmap_to_menu_item(cstr, (C.int)(len(bitmapBytes)), C.int(item.id))
return err
}
func addBitmapPath(path string, item *MenuItem) error {
return nil
}
func createSubMenu(subMenuId int32) {
// NOOP
}
func addSubmenuToTray(item *MenuItem) {
var disabled, checked, isSubmenu, isSubmenuItem C.short
if item.disabled {
disabled = 1
}
if item.checked {
checked = 1
}
if item.isSubmenu {
isSubmenu = 1
isSubmenuItem = 0
}
if item.isSubmenuItem {
isSubmenu = 0
isSubmenuItem = 1
}
_, _ = C.add_sub_menu(
C.int(item.id),
C.int(item.menuId),
C.CString(item.title),
C.CString(item.tooltip),
disabled,
checked,
isSubmenu,
isSubmenuItem,
)
}