summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Re-added GtkBuilder XML files to POTFILES.inDaniel P. Berrange2012-02-082-1/+5
| | | | | Adapt syntax-check rule to allow XML files in POTFILES.in and re-add the GtkBuilder XML files
* Implement SPICE desktop resizing that takes account of zoom levelDaniel P. Berrange2012-02-087-5/+110
| | | | | | | | | | | | | The standard SPICE widget guest resize implementation does not take into account the zoom level settings in virt-viewer, because it has no knowledge of this functionality. The guest resize can, however, be done by calling spice_main_set_display() directly. This allows virt-viewer to resize the guest taking into account zoom levels. ie, if virt-viewer is run with --zoom 50 and the window is resized to 400x300, then the guest agent should be told to set its resolution to 800x600
* Revert support for resizing guest desktopDaniel P. Berrange2012-02-073-24/+3
| | | | | | | The SpiceDisplay widget has built-in support for resizing the guest desktop, but this does not know that virt-viewer has a zoom level setting. This makes the virt-viewer zoom completely inoperable. Revert use of the 'resize-guest' property.
* Add spice-xpi-client-remote-viewer alternativeMarc-André Lureau2012-02-063-0/+23
|
* man: add remote-viewer man pageMarc-André Lureau2012-02-065-4/+92
|
* Import GNULIB rules for syntax checking codeDaniel P. Berrange2012-02-068-0/+2123
|
* Add config.h to every source fileDaniel P. Berrange2012-02-069-0/+15
|
* Use exit() constantsDaniel P. Berrange2012-02-063-3/+3
|
* copyright fixDaniel P. Berrange2012-02-061-1/+1
|
* End of file whitespace cleanupDaniel P. Berrange2012-02-063-3/+1
|
* Update POTFILES.inDaniel P. Berrange2012-02-061-11/+0
|
* Replace @FOO@ with $(FOO) in all Makefile.amDaniel P. Berrange2012-02-064-28/+28
|
* Update copyright headersDaniel P. Berrange2012-02-0634-57/+57
|
* Remove useless if() before free()Daniel P. Berrange2012-02-062-10/+6
|
* Update AUTHORS fileDaniel P. Berrange2012-02-062-9/+53
|
* Simplify no-op debug macro & fix plugin headerDaniel P. Berrange2012-02-061-2/+2
|
* Fix makefile.am subsitutions for pluginDaniel P. Berrange2012-02-061-6/+4
|
* Convert TABS to spaces & reindent everywhereDaniel P. Berrange2012-02-0638-4474/+4500
|
* Only make the USB device selection sensitive when the vm is USB capableHans de Goede2012-02-067-0/+62
|
* Add a menu entry for USB device selectionHans de Goede2012-02-0610-8/+87
|
* Grab the focus when showing the displayMarc-André Lureau2012-02-062-0/+12
| | | | | | | Override the grab_focus() method in the display class. Since both VNC and Spice displays are the direct child, let's just grab the child. It can be that this behaviour need to be overriden if Spice or VNC display become more complex (using sub-childs or different objects)
* Ignore more generated filesDaniel P. Berrange2012-01-311-0/+2
|
* Disconnect virt-viewer when receiving signal session-cancelledGuannan Ren2012-01-311-1/+16
|
* Register a new signal session-cancelledGuannan Ren2012-01-313-2/+11
|
* Tune the first argument in calls to g_type_class_add_private()Guannan Ren2012-01-319-11/+9
|
* Support for virDomainOpenGraphics APIDaniel P. Berrange2012-01-315-6/+121
| | | | | | Add a new flag --attach, which instructs virt-viewer to attach to the target display using virDomainOpenGraphics, instead of initiating a VNC/SPICE connection directly.
* Make VNC support opening connections based on URIDaniel P. Berrange2012-01-311-0/+26
|
* Adapt remote-viewer so that it builds without SPICEDaniel P. Berrange2012-01-313-6/+43
|
* Add virt-viewer.nsisMarc-André Lureau2012-01-314-22/+304
| | | | | Use ${DESTDIR} variable and @prefix@ to look for files. Can't easily be generated, it has too much customization.
* Enable spice auto-usbredirMarc-André Lureau2012-01-313-7/+89
|
* Remove usage of deprecated propertyMarc-André Lureau2012-01-314-4/+8
|
* Add error dialog for USB redirection failureMarc-André Lureau2012-01-314-18/+61
|
* Resize guest desktop with SPICEMarc-André Lureau2012-01-313-3/+24
| | | | | This is the method we prefer, even though we can't keep aspect ratio. We could eventually support aspect ration in spice-gtk.
* build: make libvirt optionnalMarc-André Lureau2012-01-314-3/+29
|
* Use a first letter capital in helpMarc-André Lureau2012-01-311-7/+7
| | | | | The GLib/GNOME convention seems to have first letter as capital for option description strings.
* Add spice_get_option_group()Marc-André Lureau2012-01-314-4/+15
|
* Add spice controller support in remote-viewerMarc-André Lureau2012-01-314-29/+372
| | | | Usage is simply "remote-viewer --spice-controller"
* Add remote-viewer programMarc-André Lureau2012-01-318-43/+423
| | | | | This program is meant for direct URI connections. ex: remote-viewer vnc://uri
* Add a few property getters, used by controllerMarc-André Lureau2012-01-305-2/+63
| | | | | | - virt_viewer_app_get_windows() - virt_viewer_window_get_builder() - "VirtViewerSessionSpice:spice-session" property
* build: use AM_GLIB_GNU_GETTEXTMarc-André Lureau2012-01-301-0/+1
| | | | | | | | | | | | | | | | Using intltool macro only causes build issues on exotic platforms, such as MinGW. As long as this bug isn't fixed, we should use AM_GLIB_GNU_GETTEXT https://bugs.launchpad.net/intltool/+bug/398571 NB this partially reverts 3473c4bb49adc0caca58dc1a8b6ce81c6870558a The difference is the ordering of the rules. With AM_GLIB_GNU_GETTEXT appearing after IT_PROG_INTLTOOL, the --disable-nls arg to configure is broken. Thus AM_GLIB_GNU_GETTEXT is called first in this change.
* Make virt_viewer_activate() a vfuncMarc-André Lureau2012-01-302-18/+32
| | | | since other equivalent methods are already overridable.
* Add window-added & window-removed signalsMarc-André Lureau2012-01-302-1/+48
|
* Use graphical URI for connectionMarc-André Lureau2012-01-303-5/+37
| | | | If specified, use URI for connection details
* Add virt_viewer_session_open_uriMarc-André Lureau2012-01-303-0/+30
|
* build: replace deprecated functionsMarc-André Lureau2012-01-303-6/+6
|
* Add support for --system arg to autogen.shDaniel P. Berrange2012-01-301-5/+18
|
* Prep for 0.4.2 releasev0.4.2Daniel P. Berrange2011-11-092-1/+20
|
* Automatically generate changelog from GIT history during make distDaniel P. Berrange2011-11-073-974/+204
|
* Update POTFILES.in, fix make distcheckMarc-André Lureau2011-11-071-10/+17
|
* Ignore some more generated filesDaniel P. Berrange2011-11-071-0/+4
|