gui icon indicating copy to clipboard operation
gui copied to clipboard

Super minimal, rock-solid foundation for concurrent GUI in Go.

Results 7 gui issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/40020346/160034708-9074b97a-a10c-40a1-a248-70c1f2e63667.png) ```go package main import ( "github.com/faiface/gui/win" "github.com/faiface/mainthread" "github.com/vova616/screenshot" "image" "image/draw" "time" ) func run() { w, err := win.New(win.Title("faiface/gui"), win.Size(800, 600)) if err != nil { panic(err) } redraw...

``` $ go run ./imageviewer/ fatal error: unexpected signal during runtime execution [signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x7fff2df567b4] runtime stack: runtime.throw(0x4217912, 0x2a) /usr/local/go/src/runtime/panic.go:617 +0x72 runtime.sigpanic() /usr/local/go/src/runtime/signal_unix.go:374 +0x4a9 goroutine 3...

Hi, I want to get a gg version use in arm. How to get the version? thank you.

also fix this issue: https://github.com/faiface/gui/issues/2

Definitely don't merge this. This is an attempt of mine at creating a layout system for this GUI system. This is largely uncommented code, with some bits taken from the...

Do keyboard events allow the capture of key combinations, such as "CTRL+R"? Simultaneously pressing this combination generates a "kb/down/ctrl" followed by a kb/up/ctrl when the CTRL key is released. However,...

Moving the window from a lower DPI monitor to a higher DPI monitor results in broken rendering: (The cursor position is still reported correctly)