2
0
mirror of https://github.com/miguelmota/cointop synced 2024-11-14 18:12:57 +00:00
cointop/vendor/github.com/tadvi/systray
2021-09-04 13:31:08 -07:00
..
.gitignore Set up notification package 2020-12-20 22:05:25 -08:00
AUTHORS Set up notification package 2020-12-20 22:05:25 -08:00
LICENSE Set up notification package 2020-12-20 22:05:25 -08:00
README.md Set up notification package 2020-12-20 22:05:25 -08:00
systray_linux.go Set up notification package 2020-12-20 22:05:25 -08:00
systray_windows.go Set up notification package 2020-12-20 22:05:25 -08:00

systray

Go package for Windows Systray icon, menu and notifications.

Dependencies

No other dependencies except Go standard library.

Building

If you want to package icon files and other resources into binary rsrc tool is recommended:

rsrc -manifest app.manifest -ico=app.ico,application_edit.ico,application_error.ico -o rsrc.syso

Here app.manifest is XML file in format:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
    <assemblyIdentity version="1.0.0.0" processorArchitecture="*" name="App" type="win32"/>
    <dependency>
        <dependentAssembly>
            <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*"/>
        </dependentAssembly>
    </dependency>
</assembly>

Most Windows applications do not display command prompt. Build your Go project with flag to indicate that it is Windows GUI binary:

go build -ldflags="-H windowsgui"

Samples

Best way to learn how to use the library is to look at the included example project.

Hello World

Use release.bat to build it.

Caveats

Package is designed to run as standalone GUI application. That means it runs its own Windows message loop. This can have unexpected side effects if you try to combine with other UI packages that also run they own message loops.

Credits

This library is built based on

xilp/systray

Constant definitions and syscall declarations have been reused from that package.