Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Remove useless if() before free() | Daniel P. Berrange | 2012-02-06 | 1 | -8/+4 | |
| | ||||||
* | Convert TABS to spaces & reindent everywhere | Daniel P. Berrange | 2012-02-06 | 1 | -452/+451 | |
| | ||||||
* | Support for virDomainOpenGraphics API | Daniel P. Berrange | 2012-01-31 | 1 | -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 connection | Marc-André Lureau | 2012-01-30 | 1 | -1/+1 | |
| | | | | If specified, use URI for connection details | |||||
* | Always use canonical URI from libvirt connection | Daniel P. Berrange | 2011-11-07 | 1 | -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 --wait | Daniel P. Berrange | 2011-10-11 | 1 | -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 sockets | Daniel P. Berrange | 2011-09-28 | 1 | -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 address | Daniel P. Berrange | 2011-09-19 | 1 | -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 name | Daniel P. Berrange | 2011-09-16 | 1 | -3/+1 | |
| | ||||||
* | Show status on all open windows | Marc-André Lureau | 2011-07-26 | 1 | -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() argument | Marc-André Lureau | 2011-07-26 | 1 | -3/+3 | |
| | ||||||
* | Status messages can be translated | Marc-André Lureau | 2011-07-26 | 1 | -6/+6 | |
| | ||||||
* | Split VirtViewerApp window into VirtViewerWindow | Marc-André Lureau | 2011-07-26 | 1 | -1/+1 | |
| | ||||||
* | Inherit from VirtViewerApp for VirtViewer | Marc-André Lureau | 2011-07-22 | 1 | -1469/+151 | |
| | | | | | | Make it a real GObject. The parts specific to virt should go in virt-viewer.c | |||||
* | Turn VirtViewer into a VirtViewerApp object | Marc-André Lureau | 2011-07-22 | 1 | -532/+645 | |
| | ||||||
* | Split virt_viewer_start() and virt_viewer_new() | Marc-André Lureau | 2011-07-22 | 1 | -41/+54 | |
| | ||||||
* | Split virt_viewer_activate() and virt_viewer_set_domain() | Marc-André Lureau | 2011-07-22 | 1 | -11/+21 | |
| | ||||||
* | Split virt_viewer_create_session() out of virt_viewer_extract_connect_info() | Marc-André Lureau | 2011-07-22 | 1 | -16/+27 | |
| | | | | For future reusability | |||||
* | Reorder _VirtViewer to make it easier to split with RemoteViewer | Marc-André Lureau | 2011-07-22 | 1 | -24/+17 | |
| | ||||||
* | Extract scheme in virt_viewer_extract_host() | Marc-André Lureau | 2011-07-22 | 1 | -2/+11 | |
| | | | | Needed for remote-viewer. | |||||
* | Annotate unused variables | Daniel P. Berrange | 2011-07-12 | 1 | -2/+2 | |
| | ||||||
* | Fix leak of graphics type attribute from XML | Daniel P. Berrange | 2011-07-12 | 1 | -2/+3 | |
| | ||||||
* | Split pull part of VirtViewerDisplay out into VirtViewerSession | Daniel P. Berrange | 2011-07-11 | 1 | -58/+91 | |
| | | | | | | To facilitate introduction of multi-head support, pull some of the VirtViewerDisplay class out into a new VirtViewerSession class. | |||||
* | Avoid (null) in titlebar | Daniel P. Berrange | 2011-07-11 | 1 | -7/+9 | |
| | ||||||
* | Fix colour of status label to show up on black background | Daniel P. Berrange | 2011-07-11 | 1 | -0/+2 | |
| | ||||||
* | Fill space on the display alignment with black | Marc-André Lureau | 2011-07-11 | 1 | -1/+3 | |
| | ||||||
* | Add support for --fullscreen option | Marc-André Lureau | 2011-07-11 | 1 | -0/+21 | |
| | ||||||
* | Remove circular dependancy between VirtViewerDisplay and VirtViewer | Daniel P. Berrange | 2011-07-11 | 1 | -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 widget | Daniel P. Berrange | 2011-07-11 | 1 | -54/+46 | |
| | | | | | Turn VirtViewerDisplay into a Gtk widget instead of just a GObject, by merging the functionality from VirtViewerAlign | |||||
* | Update to optionally build with GTK3 | Daniel P. Berrange | 2011-07-11 | 1 | -1/+30 | |
| | ||||||
* | Replace use of GtkAlignment with a custom align widget | Daniel P. Berrange | 2011-07-01 | 1 | -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 & methods | Daniel P. Berrange | 2011-07-01 | 1 | -0/+1496 | |
All source files must be named virt-viewer-XXXX All methods named virt_viewer_XXX |