Re: [go-nuts] Re: GUI for Go

2016-07-01 Thread Matt Harden
Don't forget that gopherjs is a thing. On Fri, Jul 1, 2016 at 7:41 AM Lucio wrote: > https://github.com/peterhoward42/godesktopgui > >

[go-nuts] Re: GUI for Go

2016-07-01 Thread Lucio
https://github.com/peterhoward42/godesktopgui A missing "/" in the middle. On Friday, 1 July 2016 16:31:40 UTC+2, Peter Howard wrote: > > My github project shows

[go-nuts] Re: GUI for Go

2016-07-01 Thread Fino
may be we need to wait for webassembly's golang translate. but some platform native features still cannot be done in a brower. BR fino -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails fro

[go-nuts] Re: GUI for Go

2016-07-01 Thread Peter Howard
My github project shows a simple way to make a go gui based on an html5 model by using css and the Bootstrap library and go's template package. It also shows how to compile the whole thing including the dedicated local server and the html and css into a single executable. https://github.com/pet

[go-nuts] Re: GUI for Go

2016-07-01 Thread paraiso . marc
AFAIK none of the projects related to GUI programming in Go are professional grade or nearly complete. There are some bindings for QML and Gtk3 but there are extremely limited. You'd be better off using C++ ,C(with GObject), Javascript, Python,Vala or Java here. All these languages have robust

[go-nuts] Re: GUI for Go

2016-07-01 Thread Mandolyte
I noticed that the QML project has been forked, so it may have some new energy -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroup

[go-nuts] Re: GUI for Go

2016-07-01 Thread Rio M
I hope for project based on Javascript+Golang server (like http://electron.atom.io/). -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@go

[go-nuts] Re: GUI for Go

2016-06-30 Thread Juan F . Giménez Silva
I've done some stuff with gotk https://github.com/gotk3/gotk3 It's a gtk3 binding set and is pretty easy to use. I'm not sure if it supports Windows. El miércoles, 29 de junio de 2016, 22:51:44 (UTC-3), Wen-Pin Hsieh escribió: > > Hi all, > > I am new to go language. > Now I am trying to develop

[go-nuts] Re: GUI for Go

2016-06-30 Thread Shy Robbiani
I lost a little bit the focus on this topic but you might take a look at the various projects on Github dealing with GUIs. The following links provide an overview of what's available today. http://libs.club/golang/media/gui https://golanglibs.com/category/gui Qt bindings are just one way to go.