Re: [go-nuts] Re: Is there a gui library for Go, like Gtk+ or similar, which can be used to build statically linked executables ?

2020-09-13 Thread Stephen Illingworth
I've been using the Go bindings for Dear Imgui with great success.

https://github.com/inkyblackness/imgui-go

On Saturday, 12 September 2020 at 01:05:11 UTC+1 pcha...@pcsw.us wrote:

> There is a gtk binding, but I'm not sure if it's fully cross platform. 
>
> https://github.com/gotk3/gotk3
>
> On Fri, Sep 11, 2020, 6:26 PM Kent Sandvik  wrote:
>
>> I tested fyne on my Mac, hey didn't crash, that's a big plus with these 
>> cross-platform GUI frameworks. The Look is somewhat different but with 
>> some tweaks it could be made manageable. But for any large text-based 
>> application with text styling and so forth  I would use Electron or a 
>> similar browser-engine framework. --Kent
>>
>> On Fri, Sep 11, 2020 at 2:58 PM Serge Hulne  wrote:
>>
>>> I had a look again at "Fyne". It seems to have improved a lot lately, in 
>>> particular the default size for fonts etc seems much better!
>>> Thanks again for the suggestion.
>>>
>>> On Sunday, 2 August 2020 at 23:43:56 UTC+2 ma...@eliasnaur.com wrote:
>>>
 On Sunday, 2 August 2020 at 23:24:20 UTC+2 jake...@gmail.com wrote:

> There is currently no 'clear choice' for GUI in go. It will depend on 
> you needs. Some to look into:
>
> https://bitbucket.org/rj/goey/src/master/
> https://gioui.org/
> https://github.com/andlabs/ui
> https://github.com/goki/gi
> https://github.com/lxn/walk
>

 There's also https://fyne.io.

 Elias

>>> -- 
>>> 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...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/golang-nuts/729a782e-d87f-4ca9-9a08-740fd758d2a6n%40googlegroups.com
>>>  
>>> 
>>> .
>>>
>> -- 
>> 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...@googlegroups.com.
>>
> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/golang-nuts/CAHC_roHE9sTye127Gd%3DfxvDNXZU_R-yUdazpuskyxHfL9bkOiw%40mail.gmail.com
>>  
>> 
>> .
>>
>

-- 
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...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/4f1e8d63-ea3a-4c00-8ffc-20c7135558c4n%40googlegroups.com.


Re: [go-nuts] Re: Is there a gui library for Go, like Gtk+ or similar, which can be used to build statically linked executables ?

2020-09-11 Thread Philip Chapman
There is a gtk binding, but I'm not sure if it's fully cross platform.

https://github.com/gotk3/gotk3

On Fri, Sep 11, 2020, 6:26 PM Kent Sandvik  wrote:

> I tested fyne on my Mac, hey didn't crash, that's a big plus with these
> cross-platform GUI frameworks. The Look is somewhat different but with
> some tweaks it could be made manageable. But for any large text-based
> application with text styling and so forth  I would use Electron or a
> similar browser-engine framework. --Kent
>
> On Fri, Sep 11, 2020 at 2:58 PM Serge Hulne  wrote:
>
>> I had a look again at "Fyne". It seems to have improved a lot lately, in
>> particular the default size for fonts etc seems much better!
>> Thanks again for the suggestion.
>>
>> On Sunday, 2 August 2020 at 23:43:56 UTC+2 ma...@eliasnaur.com wrote:
>>
>>> On Sunday, 2 August 2020 at 23:24:20 UTC+2 jake...@gmail.com wrote:
>>>
 There is currently no 'clear choice' for GUI in go. It will depend on
 you needs. Some to look into:

 https://bitbucket.org/rj/goey/src/master/
 https://gioui.org/
 https://github.com/andlabs/ui
 https://github.com/goki/gi
 https://github.com/lxn/walk

>>>
>>> There's also https://fyne.io.
>>>
>>> Elias
>>>
>> --
>> 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...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/golang-nuts/729a782e-d87f-4ca9-9a08-740fd758d2a6n%40googlegroups.com
>> 
>> .
>>
> --
> 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...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/golang-nuts/CAHC_roHE9sTye127Gd%3DfxvDNXZU_R-yUdazpuskyxHfL9bkOiw%40mail.gmail.com
> 
> .
>

-- 
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...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/CABEejshannDE0XtX2O%3Dkomgm6rtV7Umf0SnZ-w3Uf0TFi7DrQQ%40mail.gmail.com.


Re: [go-nuts] Re: Is there a gui library for Go, like Gtk+ or similar, which can be used to build statically linked executables ?

2020-09-11 Thread Kent Sandvik
I tested fyne on my Mac, hey didn't crash, that's a big plus with these
cross-platform GUI frameworks. The Look is somewhat different but with
some tweaks it could be made manageable. But for any large text-based
application with text styling and so forth  I would use Electron or a
similar browser-engine framework. --Kent

On Fri, Sep 11, 2020 at 2:58 PM Serge Hulne  wrote:

> I had a look again at "Fyne". It seems to have improved a lot lately, in
> particular the default size for fonts etc seems much better!
> Thanks again for the suggestion.
>
> On Sunday, 2 August 2020 at 23:43:56 UTC+2 ma...@eliasnaur.com wrote:
>
>> On Sunday, 2 August 2020 at 23:24:20 UTC+2 jake...@gmail.com wrote:
>>
>>> There is currently no 'clear choice' for GUI in go. It will depend on
>>> you needs. Some to look into:
>>>
>>> https://bitbucket.org/rj/goey/src/master/
>>> https://gioui.org/
>>> https://github.com/andlabs/ui
>>> https://github.com/goki/gi
>>> https://github.com/lxn/walk
>>>
>>
>> There's also https://fyne.io.
>>
>> Elias
>>
> --
> 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...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/golang-nuts/729a782e-d87f-4ca9-9a08-740fd758d2a6n%40googlegroups.com
> 
> .
>

-- 
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...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/CAHC_roHE9sTye127Gd%3DfxvDNXZU_R-yUdazpuskyxHfL9bkOiw%40mail.gmail.com.


[go-nuts] Re: Is there a gui library for Go, like Gtk+ or similar, which can be used to build statically linked executables ?

2020-09-11 Thread Serge Hulne
I had a look again at "Fyne". It seems to have improved a lot lately, in 
particular the default size for fonts etc seems much better!
Thanks again for the suggestion.

On Sunday, 2 August 2020 at 23:43:56 UTC+2 ma...@eliasnaur.com wrote:

> On Sunday, 2 August 2020 at 23:24:20 UTC+2 jake...@gmail.com wrote:
>
>> There is currently no 'clear choice' for GUI in go. It will depend on you 
>> needs. Some to look into:
>>
>> https://bitbucket.org/rj/goey/src/master/
>> https://gioui.org/
>> https://github.com/andlabs/ui
>> https://github.com/goki/gi
>> https://github.com/lxn/walk
>>
>
> There's also https://fyne.io.
>
> Elias
>

-- 
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...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/729a782e-d87f-4ca9-9a08-740fd758d2a6n%40googlegroups.com.


[go-nuts] Re: Is there a gui library for Go, like Gtk+ or similar, which can be used to build statically linked executables ?

2020-08-02 Thread ma...@eliasnaur.com


On Sunday, 2 August 2020 at 23:24:20 UTC+2 jake...@gmail.com wrote:

> There is currently no 'clear choice' for GUI in go. It will depend on you 
> needs. Some to look into:
>
> https://bitbucket.org/rj/goey/src/master/
> https://gioui.org/
> https://github.com/andlabs/ui
> https://github.com/goki/gi
> https://github.com/lxn/walk
>

There's also https://fyne.io.

Elias

-- 
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...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/29fb4327-8303-4bed-bf2d-8199a77f2f6en%40googlegroups.com.


[go-nuts] Re: Is there a gui library for Go, like Gtk+ or similar, which can be used to build statically linked executables ?

2020-08-02 Thread Serge Hulne
Fantastic!

I'll have a great time trying them out!

Thanks!


On Sunday, 2 August 2020 23:24:20 UTC+2, jake...@gmail.com wrote:
>
> There is currently no 'clear choice' for GUI in go. It will depend on you 
> needs. Some to look into:
>
> https://bitbucket.org/rj/goey/src/master/
> https://gioui.org/
> https://github.com/andlabs/ui
> https://github.com/goki/gi
> https://github.com/lxn/walk
>
> On Sunday, August 2, 2020 at 11:53:32 AM UTC-4 Serge Hulne wrote:
>
>> Is there a gui library for Go, like Gtk+ or similar, which will produce a 
>> statically linked executable ?
>>
>> The aim is to create apps which do not require the user to install GTK or 
>> any extra libraries in order to use the app.
>>
>>
>>

-- 
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...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/ea291b6a-e3ab-497b-9ab1-f78766d5b3dao%40googlegroups.com.


[go-nuts] Re: Is there a gui library for Go, like Gtk+ or similar, which can be used to build statically linked executables ?

2020-08-02 Thread Serge Hulne
Thanks!

On Sunday, 2 August 2020 23:09:45 UTC+2, smart dev wrote:
>
> Yes, you can use go-astilectron. (electron + go)
> https://github.com/asticode/go-astilectron
>
> On Sunday, August 2, 2020 at 9:53:32 AM UTC-6, Serge Hulne wrote:
>>
>> Is there a gui library for Go, like Gtk+ or similar, which will produce a 
>> statically linked executable ?
>>
>> The aim is to create apps which do not require the user to install GTK or 
>> any extra libraries in order to use the app.
>>
>>
>>

-- 
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...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/b3d646eb-9ea9-4bd0-a9a7-a6b4bcc912e6o%40googlegroups.com.


[go-nuts] Re: Is there a gui library for Go, like Gtk+ or similar, which can be used to build statically linked executables ?

2020-08-02 Thread jake...@gmail.com
There is currently no 'clear choice' for GUI in go. It will depend on you 
needs. Some to look into:

https://bitbucket.org/rj/goey/src/master/
https://gioui.org/
https://github.com/andlabs/ui
https://github.com/goki/gi
https://github.com/lxn/walk

On Sunday, August 2, 2020 at 11:53:32 AM UTC-4 Serge Hulne wrote:

> Is there a gui library for Go, like Gtk+ or similar, which will produce a 
> statically linked executable ?
>
> The aim is to create apps which do not require the user to install GTK or 
> any extra libraries in order to use the app.
>
>
>

-- 
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...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/8963e9bd-5a2a-4f42-9664-6adec0d7d744n%40googlegroups.com.


[go-nuts] Re: Is there a gui library for Go, like Gtk+ or similar, which can be used to build statically linked executables ?

2020-08-02 Thread smart dev
Yes, you can use go-astilectron. (electron + go)
https://github.com/asticode/go-astilectron

On Sunday, August 2, 2020 at 9:53:32 AM UTC-6, Serge Hulne wrote:
>
> Is there a gui library for Go, like Gtk+ or similar, which will produce a 
> statically linked executable ?
>
> The aim is to create apps which do not require the user to install GTK or 
> any extra libraries in order to use the app.
>
>
>

-- 
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...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/c6b96bc4-4c11-4ada-9d32-674fd99af271o%40googlegroups.com.