Re: [virt-tools-list] [PATCH virt-viewer 0/4] Port virt-viewer to GtkApplication APIs

2015-11-30 Thread Jonathon Jongsma
On Fri, 2015-11-27 at 17:23 -0200, Eduardo Lima (Etrunko) wrote:
> The subject says it all, and you will find more details in each commit
> message. Unfortunately I was not able to test some options on
> remote-viewer, especially spice-controller and ovirt. I will be really
> glad if someone can help with those.
> 
> Also, the work has been pushed to the gapplication branch in my github
> repository, in case you are interested in trying it easier, without the
> need to apply the patches on your tree.
> 
> http://github.com/etrunko/virt-viewer
> 


FYI: I built your branch and when I run virt-viewer or remote-viewer, I get an
empty window with the following warnings on the terminal:


(virt-viewer:1605): Gtk-WARNING **: Attempting to add a widget with type GtkVBox
to a container of type GtkApplicationWindow, but the widget is already inside a
container of type GtkWindow, please remove the widget from its existing
container first.

(virt-viewer:1605): Gtk-CRITICAL **: gtk_window_resize: assertion 'width > 0'
failed



> Regards, Eduardo.
> 
> Eduardo Lima (Etrunko) (3):
>   Move variable declaration to the top of the function
>   Port to GtkApplication API's
>   Port to GtkApplicationWindow API's
> 
> Fabiano FidĂȘncio (1):
>   Drop support to gtk2
> 
>  configure.ac  |  39 +
>  src/remote-viewer-main.c  | 122 +-
>  src/remote-viewer.c   | 144 
>  src/remote-viewer.h   |   3 +-
>  src/view/autoDrawer.c |  10 --
>  src/view/ovBox.c  |  45 -
>  src/virt-gtk-compat.h |  12 --
>  src/virt-viewer-app.c | 220 +++-
>  src/virt-viewer-app.h |  12 +-
>  src/virt-viewer-display.c |  96 ---
>  src/virt-viewer-main.c| 102 +---
>  src/virt-viewer-window.c  |  67 
>  src/virt-viewer.c | 105 +---
>  src/virt-viewer.h |   8 +-
>  src/virt-viewer.xml   | 416 +++--
> -
>  virt-viewer.spec.in   |  23 ---
>  16 files changed, 589 insertions(+), 835 deletions(-)
> 

___
virt-tools-list mailing list
virt-tools-list@redhat.com
https://www.redhat.com/mailman/listinfo/virt-tools-list

Re: [virt-tools-list] [PATCH virt-viewer 0/4] Port virt-viewer to GtkApplication APIs

2015-11-30 Thread Eduardo Lima (Etrunko)
On 11/30/2015 05:44 PM, Jonathon Jongsma wrote:
> On Fri, 2015-11-27 at 17:23 -0200, Eduardo Lima (Etrunko) wrote:
>> The subject says it all, and you will find more details in each commit
>> message. Unfortunately I was not able to test some options on
>> remote-viewer, especially spice-controller and ovirt. I will be really
>> glad if someone can help with those.
>>
>> Also, the work has been pushed to the gapplication branch in my github
>> repository, in case you are interested in trying it easier, without the
>> need to apply the patches on your tree.
>>
>> http://github.com/etrunko/virt-viewer
>>
> 
> 
> FYI: I built your branch and when I run virt-viewer or remote-viewer, I get an
> empty window with the following warnings on the terminal:
> 
> 
> (virt-viewer:1605): Gtk-WARNING **: Attempting to add a widget with type 
> GtkVBox
> to a container of type GtkApplicationWindow, but the widget is already inside 
> a
> container of type GtkWindow, please remove the widget from its existing
> container first.
> 
> (virt-viewer:1605): Gtk-CRITICAL **: gtk_window_resize: assertion 'width > 0'
> failed
> 

This is because your installed virt-viewer.xml file is outdated. You'll
need to build and install the new one.

-- 
Eduardo de Barros Lima (Etrunko)
Software Engineer - RedHat
etru...@redhat.com

___
virt-tools-list mailing list
virt-tools-list@redhat.com
https://www.redhat.com/mailman/listinfo/virt-tools-list


Re: [virt-tools-list] [PATCH virt-viewer 0/4] Port virt-viewer to GtkApplication APIs

2015-11-30 Thread Jonathon Jongsma
On Mon, 2015-11-30 at 13:44 -0600, Jonathon Jongsma wrote:
> On Fri, 2015-11-27 at 17:23 -0200, Eduardo Lima (Etrunko) wrote:
> > The subject says it all, and you will find more details in each commit
> > message. Unfortunately I was not able to test some options on
> > remote-viewer, especially spice-controller and ovirt. I will be really
> > glad if someone can help with those.
> > 
> > Also, the work has been pushed to the gapplication branch in my github
> > repository, in case you are interested in trying it easier, without the
> > need to apply the patches on your tree.
> > 
> > http://github.com/etrunko/virt-viewer
> > 
> 
> 
> FYI: I built your branch and when I run virt-viewer or remote-viewer, I get an
> empty window with the following warnings on the terminal:
> 
> 
> (virt-viewer:1605): Gtk-WARNING **: Attempting to add a widget with type
> GtkVBox
> to a container of type GtkApplicationWindow, but the widget is already inside
> a
> container of type GtkWindow, please remove the widget from its existing
> container first.
> 
> (virt-viewer:1605): Gtk-CRITICAL **: gtk_window_resize: assertion 'width > 0'
> failed
> 


Those errors are avoided if I remove patch 4/4. But even then, I get the
following error when launching remote-viewer and specify an address where no
spice-server is listening:

$ remote-viewer spice://localhost:5909

(process:2355): GLib-GObject-WARNING **: invalid (NULL) pointer instance

(process:2355): GLib-GObject-CRITICAL **: g_signal_connect_data: assertion
'G_TYPE_CHECK_INSTANCE (instance)' failed


> 
> 
> > Regards, Eduardo.
> > 
> > Eduardo Lima (Etrunko) (3):
> >   Move variable declaration to the top of the function
> >   Port to GtkApplication API's
> >   Port to GtkApplicationWindow API's
> > 
> > Fabiano FidĂȘncio (1):
> >   Drop support to gtk2
> > 
> >  configure.ac  |  39 +
> >  src/remote-viewer-main.c  | 122 +-
> >  src/remote-viewer.c   | 144 
> >  src/remote-viewer.h   |   3 +-
> >  src/view/autoDrawer.c |  10 --
> >  src/view/ovBox.c  |  45 -
> >  src/virt-gtk-compat.h |  12 --
> >  src/virt-viewer-app.c | 220 +++-
> >  src/virt-viewer-app.h |  12 +-
> >  src/virt-viewer-display.c |  96 ---
> >  src/virt-viewer-main.c| 102 +---
> >  src/virt-viewer-window.c  |  67 
> >  src/virt-viewer.c | 105 +---
> >  src/virt-viewer.h |   8 +-
> >  src/virt-viewer.xml   | 416 +++
> > --
> > -
> >  virt-viewer.spec.in   |  23 ---
> >  16 files changed, 589 insertions(+), 835 deletions(-)
> > 
> 
> ___
> virt-tools-list mailing list
> virt-tools-list@redhat.com
> https://www.redhat.com/mailman/listinfo/virt-tools-list

___
virt-tools-list mailing list
virt-tools-list@redhat.com
https://www.redhat.com/mailman/listinfo/virt-tools-list

Re: [virt-tools-list] [PATCH virt-viewer 0/4] Port virt-viewer to GtkApplication APIs

2015-11-30 Thread Jonathon Jongsma
On Mon, 2015-11-30 at 18:13 -0200, Eduardo Lima (Etrunko) wrote:
> On 11/30/2015 05:44 PM, Jonathon Jongsma wrote:
> > On Fri, 2015-11-27 at 17:23 -0200, Eduardo Lima (Etrunko) wrote:
> > > The subject says it all, and you will find more details in each commit
> > > message. Unfortunately I was not able to test some options on
> > > remote-viewer, especially spice-controller and ovirt. I will be really
> > > glad if someone can help with those.
> > > 
> > > Also, the work has been pushed to the gapplication branch in my github
> > > repository, in case you are interested in trying it easier, without the
> > > need to apply the patches on your tree.
> > > 
> > > http://github.com/etrunko/virt-viewer
> > > 
> > 
> > 
> > FYI: I built your branch and when I run virt-viewer or remote-viewer, I get
> > an
> > empty window with the following warnings on the terminal:
> > 
> > 
> > (virt-viewer:1605): Gtk-WARNING **: Attempting to add a widget with type
> > GtkVBox
> > to a container of type GtkApplicationWindow, but the widget is already
> > inside a
> > container of type GtkWindow, please remove the widget from its existing
> > container first.
> > 
> > (virt-viewer:1605): Gtk-CRITICAL **: gtk_window_resize: assertion 'width >
> > 0'
> > failed
> > 
> 
> This is because your installed virt-viewer.xml file is outdated. You'll
> need to build and install the new one.
> 


Ah, ok. Sorry about that.


___
virt-tools-list mailing list
virt-tools-list@redhat.com
https://www.redhat.com/mailman/listinfo/virt-tools-list


[virt-tools-list] [PATCH virt-viewer 0/4] Port virt-viewer to GtkApplication APIs

2015-11-27 Thread Eduardo Lima (Etrunko)
The subject says it all, and you will find more details in each commit
message. Unfortunately I was not able to test some options on
remote-viewer, especially spice-controller and ovirt. I will be really
glad if someone can help with those.

Also, the work has been pushed to the gapplication branch in my github
repository, in case you are interested in trying it easier, without the
need to apply the patches on your tree.

http://github.com/etrunko/virt-viewer

Regards, Eduardo.

Eduardo Lima (Etrunko) (3):
  Move variable declaration to the top of the function
  Port to GtkApplication API's
  Port to GtkApplicationWindow API's

Fabiano FidĂȘncio (1):
  Drop support to gtk2

 configure.ac  |  39 +
 src/remote-viewer-main.c  | 122 +-
 src/remote-viewer.c   | 144 
 src/remote-viewer.h   |   3 +-
 src/view/autoDrawer.c |  10 --
 src/view/ovBox.c  |  45 -
 src/virt-gtk-compat.h |  12 --
 src/virt-viewer-app.c | 220 +++-
 src/virt-viewer-app.h |  12 +-
 src/virt-viewer-display.c |  96 ---
 src/virt-viewer-main.c| 102 +---
 src/virt-viewer-window.c  |  67 
 src/virt-viewer.c | 105 +---
 src/virt-viewer.h |   8 +-
 src/virt-viewer.xml   | 416 +++---
 virt-viewer.spec.in   |  23 ---
 16 files changed, 589 insertions(+), 835 deletions(-)

-- 
2.5.0

___
virt-tools-list mailing list
virt-tools-list@redhat.com
https://www.redhat.com/mailman/listinfo/virt-tools-list