summaryrefslogtreecommitdiffstats
path: root/src/virt-viewer.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove useless if() before free()Daniel P. Berrange2012-02-061-8/+4
|
* Convert TABS to spaces & reindent everywhereDaniel P. Berrange2012-02-061-452/+451
|
* Support for virDomainOpenGraphics APIDaniel P. Berrange2012-01-311-1/+60
| | | | | | 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.
* Use graphical URI for connectionMarc-André Lureau2012-01-301-1/+1
| | | | If specified, use URI for connection details
* Always use canonical URI from libvirt connectionDaniel P. Berrange2011-11-071-1/+4
| | | | | The URI we feed into libvirt may be an alias, so always query the actual URI used internally
* Fix setting of window title with --waitDaniel P. Berrange2011-10-111-2/+6
| | | | | | When waiting for a VM to appear or start, set the initial window title to the command line arg. When the VM actually appears then update it to the real VM name
* Fix crash from previous commit when using UNIX socketsDaniel P. Berrange2011-09-281-4/+6
| | | | | Code in the previous commit would use 'ghost' even when it was NULL, as with UNIX domain socket based connections.
* Fix hostname when XML gives a wildcard addressDaniel P. Berrange2011-09-191-0/+13
| | | | | | When the guest XML contains a wildcard address like 0.0.0.0 or ::, we can't directly use connect() on it. Instead we have to use the hostname/IP from the libvirt URI.
* Fix setting of window title with domain nameDaniel P. Berrange2011-09-161-3/+1
|
* Show status on all open windowsMarc-André Lureau2011-07-261-8/+7
| | | | | | The split virt_viewer_notebook_show_status() to virt_viewer_notebook_show_status_va() is unnecessary in the end, but it's more future-proof.
* Use app fullscreen property instead of app.start() argumentMarc-André Lureau2011-07-261-3/+3
|
* Status messages can be translatedMarc-André Lureau2011-07-261-6/+6
|
* Split VirtViewerApp window into VirtViewerWindowMarc-André Lureau2011-07-261-1/+1
|
* Inherit from VirtViewerApp for VirtViewerMarc-André Lureau2011-07-221-1469/+151
| | | | | | Make it a real GObject. The parts specific to virt should go in virt-viewer.c
* Turn VirtViewer into a VirtViewerApp objectMarc-André Lureau2011-07-221-532/+645
|
* Split virt_viewer_start() and virt_viewer_new()Marc-André Lureau2011-07-221-41/+54
|
* Split virt_viewer_activate() and virt_viewer_set_domain()Marc-André Lureau2011-07-221-11/+21
|
* Split virt_viewer_create_session() out of virt_viewer_extract_connect_info()Marc-André Lureau2011-07-221-16/+27
| | | | For future reusability
* Reorder _VirtViewer to make it easier to split with RemoteViewerMarc-André Lureau2011-07-221-24/+17
|
* Extract scheme in virt_viewer_extract_host()Marc-André Lureau2011-07-221-2/+11
| | | | Needed for remote-viewer.
* Annotate unused variablesDaniel P. Berrange2011-07-121-2/+2
|
* Fix leak of graphics type attribute from XMLDaniel P. Berrange2011-07-121-2/+3
|
* Split pull part of VirtViewerDisplay out into VirtViewerSessionDaniel P. Berrange2011-07-111-58/+91
| | | | | | To facilitate introduction of multi-head support, pull some of the VirtViewerDisplay class out into a new VirtViewerSession class.
* Avoid (null) in titlebarDaniel P. Berrange2011-07-111-7/+9
|
* Fix colour of status label to show up on black backgroundDaniel P. Berrange2011-07-111-0/+2
|
* Fill space on the display alignment with blackMarc-André Lureau2011-07-111-1/+3
|
* Add support for --fullscreen optionMarc-André Lureau2011-07-111-0/+21
|
* Remove circular dependancy between VirtViewerDisplay and VirtViewerDaniel P. Berrange2011-07-111-28/+248
| | | | | | | Add many signals to VirtViewerDisplay which are emitted when various events occur. This lets us remove all the code in the VirtViewerDisplay subclasses which call back into VirtViewer methods. Instead VirtViewer can simply connect signals to the display
* Turn VirtViewerDisplay into a proper Gtk widgetDaniel P. Berrange2011-07-111-54/+46
| | | | | Turn VirtViewerDisplay into a Gtk widget instead of just a GObject, by merging the functionality from VirtViewerAlign
* Update to optionally build with GTK3Daniel P. Berrange2011-07-111-1/+30
|
* Replace use of GtkAlignment with a custom align widgetDaniel P. Berrange2011-07-011-87/+12
| | | | | | | | | | To use the GtkAlignment we have to play evil tricks overriding its size request, to make it reallocate the child to the preferred size we desire based on the virtual desktop size + zoom level. By replacing the GtkAlignment with a custom widget we can directly implement the layout/sizing semantics we want without playing stupid games
* Introduce standard naming convention to files & methodsDaniel P. Berrange2011-07-011-0/+1496
All source files must be named virt-viewer-XXXX All methods named virt_viewer_XXX