aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/ui.go
diff options
context:
space:
mode:
authorAnthony Dong <aanthony.dong@gmail.com>2019-03-25 18:12:14 +0100
committerAlexander Neumann <alexander.neumann@picos-software.com>2019-04-23 11:04:59 +0200
commitf9ed9d14b5a5c10c981e77232c066e0e1cda07ca (patch)
tree44362d9fee51b247e9d8d885c475ef90d748d5dd /ui/ui.go
parentui: add tunnels management view (diff)
downloadwireguard-windows-f9ed9d14b5a5c10c981e77232c066e0e1cda07ca.tar.xz
wireguard-windows-f9ed9d14b5a5c10c981e77232c066e0e1cda07ca.zip
ui: split tray logic into tray component
Signed-off-by: Anthony Dong <aanthony.dong@gmail.com> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '')
-rw-r--r--ui/ui.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/ui/ui.go b/ui/ui.go
index 633fc19b..2cd558b7 100644
--- a/ui/ui.go
+++ b/ui/ui.go
@@ -298,3 +298,14 @@ func onQuit() {
os.Exit(1)
}
}
+
+const aboutText = `
+WireGuard
+TODO.
+
+Copyright (C) 2019 WireGuard LLC. All Rights Reserved.
+`
+
+func onAbout() {
+ walk.MsgBox(nil, "About WireGuard", aboutText, walk.MsgBoxOK)
+}