forked from getlantern/systray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
systray_linux.go
138 lines (116 loc) · 2.63 KB
/
systray_linux.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
// +build linux
package systray
/*
#cgo linux pkg-config: gtk+-3.0 appindicator3-0.1
#include "systray_linux.h"
*/
import "C"
import (
"crypto/md5"
"encoding/hex"
"io/ioutil"
"os"
"path/filepath"
)
func nativeLoop() (err error) {
_, err = C.nativeLoop()
return
}
func quit() {
C.quit()
}
// SetIcon sets the systray icon.
// iconBytes should be the content of .ico for windows and .ico/.jpg/.png
// for other platforms.
func setIcon(iconBytes []byte) error {
bh := md5.Sum(iconBytes)
dataHash := hex.EncodeToString(bh[:])
iconFilePath := filepath.Join(os.TempDir(), "systray_temp_icon_"+dataHash)
if _, err := os.Stat(iconFilePath); os.IsNotExist(err) {
if err := ioutil.WriteFile(iconFilePath, iconBytes, 0644); err != nil {
return err
}
}
return setIconPath(iconFilePath)
}
// SetIcon sets the systray icon.
// iconBytes should be the content of .ico for windows and .ico/.jpg/.png
// for other platforms.
func setIconPath(path string) (err error) {
_, err = C.setIcon(C.CString(path))
return err
}
// SetTitle sets the systray title, only available on Mac.
func setTitle(title string) (err error) {
_, err = C.setTitle(C.CString(title))
return
}
// SetTooltip sets the systray tooltip to display on mouse hover of the tray icon,
// only available on Mac and Windows.
func setTooltip(tooltip string) (err error) {
_, err = C.setTooltip(C.CString(tooltip))
return
}
func addOrUpdateMenuItem(item *MenuItem) (err error) {
if item.isSeparator {
return addSeparator(item.id)
}
var disabled, checkable, checked C.short
if item.disabled {
disabled = 1
}
if item.checkable {
checkable = 1
}
if item.checked {
checked = 1
}
_, err = C.add_or_update_menu_item(
C.int(item.id),
C.CString(item.title),
C.CString(item.tooltip),
disabled,
checkable,
checked,
)
return
}
func addSeparator(id int32) (err error) {
_, err = C.add_separator(C.int(id))
return
}
func hideMenuItem(item *MenuItem) (err error) {
_, err = C.hide_menu_item(
C.int(item.id),
)
return
}
func showMenuItem(item *MenuItem) (err error) {
_, err = C.show_menu_item(
C.int(item.id),
)
return
}
//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, cChecked C.int) {
systrayMenuItemSelected(int32(cID), true, int32(cChecked) != 0)
}
// stubs for submenu and butmap menu items
func addBitmap(bmpbyte []byte, item *MenuItem) error {
return nil
}
func addBitmapPath(fp string, item *MenuItem) error {
return nil
}
func createSubMenu(id int32) {
}
func addSubmenuToTray(item *MenuItem) {
}