-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_window.go
70 lines (58 loc) · 1.19 KB
/
main_window.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
package main
import (
"time"
"github.com/astaxie/beego/logs"
"github.com/lxn/walk"
. "github.com/lxn/walk/declarative"
)
var mainWindow *walk.MainWindow
func MainWindowsClose() {
if mainWindow != nil {
mainWindow.Close()
mainWindow = nil
}
}
func init() {
go func() {
for {
StatUpdate(StatGet())
time.Sleep(time.Second)
}
}()
}
func mainWindows() {
CapSignal(CloseWindows)
logs.Info("main windows ready to startup")
cnt, err := MainWindow{
Title: "Auto Proxy " + VersionGet(),
Icon: ICON_Main,
AssignTo: &mainWindow,
MinSize: Size{Width: 300, Height: 150},
Size: Size{Width: 300, Height: 150},
Layout: VBox{Margins: Margins{Top: 5, Bottom: 5, Left: 5, Right: 5}},
MenuItems: MenuBarInit(),
StatusBarItems: StatusBarInit(),
Children: []Widget{
Composite{
Layout: Grid{Columns: 2},
Children: ConsoleWidget(),
},
},
}.Run()
if err != nil {
logs.Error(err.Error())
} else {
logs.Info("main windows exit %d", cnt)
}
if err := recover(); err != nil {
logs.Error(err)
}
CloseWindows()
}
func CloseWindows() {
if ServerRunning() {
ServerShutdown()
}
MainWindowsClose()
NotifyExit()
}