[go-nuts] Re: [ANN] (GUI) Qt binding which supports Windows / macOS / Linux / Android / iOS / Sailfish OS / Raspberry Pi

2016-11-18 Thread therecipe
It's intended to be build against Qt 5.7. And I think Qt 5.6.2 works also (with some errors/warnings during the setup) I may add backward compatibility in the future, but it's not planned yet. I use this script to get Qt 5.7 on trusty, if you want to link against system libs.

[go-nuts] Re: [ANN] (GUI) Qt binding which supports Windows / macOS / Linux / Android / iOS / Sailfish OS / Raspberry Pi

2016-11-15 Thread therecipe
Yes, you could encode the image.Image to []byte (in png or some other image format) and use the encoded data to create a QByteArray, which then can be used to create a QImage. The QImage can then be used to edit the image or to create a QPixmap, which can be displayed inside a QGraphicScene,

[go-nuts] Re: [ANN] (GUI) Qt binding which supports Windows / macOS / Linux / Android / iOS / Sailfish OS / Raspberry Pi

2016-11-15 Thread howardcshaw
therecipe, is there a means available to render image.Image or draw.Image (go Image) objects to Qt images/buffers/etc? I was not able to locate such a facility in several other libraries. In the end I got fed up and wrote my own for converting a draw.Image to a GdkPixBuf to get gtk2 and gotk3

Re: [go-nuts] Re: [ANN] (GUI) Qt binding which supports Windows / macOS / Linux / Android / iOS / Sailfish OS / Raspberry Pi

2016-11-15 Thread therecipe
Converting Go code to ui xml is not supported and currently not planned. But you can load ui files created by the Qt Designer with the help of the uitools pkg, you might want to take a look at the basic example in internal/examples/uitools. I'm planning to port the uic application to convert ui

Re: [go-nuts] Re: [ANN] (GUI) Qt binding which supports Windows / macOS / Linux / Android / iOS / Sailfish OS / Raspberry Pi

2016-11-15 Thread Justin Israel
On Tue, Nov 15, 2016, 11:47 PM wrote: > Great news! is it possible to load the gui which has been created with qt > creator? > I doubt it. That would require converting your Go code into a Qt .ui file format, which I would be surprised if the library supported. Then for

[go-nuts] Re: [ANN] (GUI) Qt binding which supports Windows / macOS / Linux / Android / iOS / Sailfish OS / Raspberry Pi

2016-11-15 Thread gerald . stanje
Great news! is it possible to load the gui which has been created with qt creator? is there anything which you still plan to add/extend? On Monday, November 14, 2016 at 1:30:58 AM UTC+1, Rich wrote: > > This looks very well done. I've not done any real programming in it but > looking over the

[go-nuts] Re: [ANN] (GUI) Qt binding which supports Windows / macOS / Linux / Android / iOS / Sailfish OS / Raspberry Pi

2016-11-13 Thread Rich
This looks very well done. I've not done any real programming in it but looking over the github it looks like this is well on it's way. Thank you!! i have a few programs I've been meaning to write that needed a gui, I'll be giving this a shot. On Thursday, November 10, 2016 at 3:34:36 PM

[go-nuts] Re: [ANN] (GUI) Qt binding which supports Windows / macOS / Linux / Android / iOS / Sailfish OS / Raspberry Pi

2016-11-12 Thread therecipe
As Qt itself doesn't use exceptions (even through it partially supports them), there are no Go like error returns. Instead if something unexpected happens, most classes provide functions to receive an error message or error code in some way. So it will only panic if something happens, that's

[go-nuts] Re: [ANN] (GUI) Qt binding which supports Windows / macOS / Linux / Android / iOS / Sailfish OS / Raspberry Pi

2016-11-12 Thread therecipe
Yes it's fully supported, you might want to take a look at the `internal/examples/qml` or `quick` folder. To see how you can interact with QML from Go. Am Samstag, 12. November 2016 03:49:14 UTC+1 schrieb Tong Sun: > > Cool! > > Does it support the declarative >

[go-nuts] Re: [ANN] (GUI) Qt binding which supports Windows / macOS / Linux / Android / iOS / Sailfish OS / Raspberry Pi

2016-11-12 Thread Jason Stillwell
I gave it a try using QMdiArea. It seems to work well. But I'm confused about where the errors go. There doesnt' seem to be a way to check for errors. Does it panic in every error situation? On Thursday, November 10, 2016 at 12:34:36 PM UTC-8, therecipe wrote: > > Hey everyone, > > I would like

[go-nuts] Re: [ANN] (GUI) Qt binding which supports Windows / macOS / Linux / Android / iOS / Sailfish OS / Raspberry Pi

2016-11-11 Thread Tong Sun
Cool! Does it support the declarative QML ? On Thursday, November 10, 2016 at 3:34:36 PM UTC-5, therecipe wrote: > > Hey everyone, > > I would like to officially announce the project I'm working on

[go-nuts] Re: [ANN] (GUI) Qt binding which supports Windows / macOS / Linux / Android / iOS / Sailfish OS / Raspberry Pi

2016-11-11 Thread therecipe
Thank you, I appreciate it :) Am Donnerstag, 10. November 2016 23:42:41 UTC+1 schrieb Rusco: > > Good to see some progress on the GUI front - I think you are up to > something ! > Rusco > > > > On Thursday, 10 November 2016 20:34:36 UTC, therecipe wrote: >> >> Hey everyone, >> >> I would like to

[go-nuts] Re: [ANN] (GUI) Qt binding which supports Windows / macOS / Linux / Android / iOS / Sailfish OS / Raspberry Pi

2016-11-10 Thread Rusco
Good to see some progress on the GUI front - I think you are up to something ! Rusco On Thursday, 10 November 2016 20:34:36 UTC, therecipe wrote: > > Hey everyone, > > I would like to officially announce the project I'm working on for a while > now. > It's a binding for the Qt framework +