This repository has been archived by the owner on Aug 23, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsystray_linux.go
196 lines (166 loc) · 4.2 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
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
// +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 err
}
func quit() error {
C.quit()
// todo check error
return nil
}
// 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) {
}
// SetCustomLeftClickAction set custom function to process left click on icon
// only windows at this moment
func setCustomLeftClickAction(ff ClickActionType) {
// do nothing
// todo
}
// SetCustomRightClickAction set custom function to process right click on icon
// only windows at this moment
func setCustomRightClickAction(ff ClickActionType) {
// do nothing
// todo
}
// SetDefaultLeftClickAction set default function to process left click on icon (show menu)
// only windows at this moment
func setDefaultLeftClickAction() {
// do nothing
// todo
}
// SetDefaultRightClickAction set default function to process right click on icon (show menu)
// only windows at this moment
func setDefaultRightClickAction() {
// do nothing
// todo
}
// SetCustomLeftClickAction set custom function to process left Double click on icon
// only windows at this moment
func setCustomLeftDoubleClickAction(ff ClickActionType) {
// do nothing
// todo
}
// SetCustomRightClickAction set custom function to process right Double click on icon
// only windows at this moment
func setCustomRightDoubleClickAction(ff ClickActionType) {
// do nothing
// todo
}
// SetDefaultLeftClickAction set default function to process left Double click on icon (show menu)
// only windows at this moment
func setDefaultLeftDoubleClickAction() {
// do nothing
// todo
}
// SetDefaultRightClickAction set default function to process right Double click on icon (show menu)
// only windows at this moment
func setDefaultRightDoubleClickAction() {
// do nothing
// todo
}