summaryrefslogtreecommitdiffstats
path: root/src/virt-viewer-file.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix 'seperate' typo in man page/commentsChristophe Fergeau2014-10-091-2/+2
|
* Add ovirt-specific properties to VirtViewerFileChristophe Fergeau2014-08-181-0/+108
| | | | | They will be useful to implement foreign menu support through oVirt REST API
* Add 'group' argument to VirtViewerFile helpersChristophe Fergeau2014-08-181-69/+84
| | | | | | For foreign menu support, we'll need a way to pass oVirt-specific information in the .vv file. This will be done through an additional [ovirt] section, this commit is in preparation for that.
* Fix 'title' leak in virt_viewer_file_fill_app()Christophe Fergeau2014-06-101-3/+5
| | | | virt_viewer_file_get_title() returns a newly allocated string.
* Improve window title when connected to newer spice-serverJonathon Jongsma2014-02-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Recent spice servers send the guest vm name and uuid to the client. We can use these values to display the proper vm name in the window title if a title is not specified on the commandline. We can also be smarter about the title in virt-viewer as well. If a title is specified on the comamndline (-t/--title=foo), we use that. If not, we fall back to the vm name. If that is empty, we fall back to the uri of the connection. Comparison between old behavior and new behavior Using new spice-server Command Old title New title ------- --------- --------- remote-viewer -t xyz spice://host:port xyz xyz remote-viewer spice://host:port spice://host:port <vmname> virt-viewer <vmname> <vmname> <vmname> virt-viewer <uuid> <uuid> <vmname> Using old spice-server Command Old title New title ------- --------- --------- remote-viewer -t xyz spice://host:port xyz xyz remote-viewer spice://host:port spice://host:port spice://host:port virt-viewer <vmname> <vmname> <vmname> virt-viewer <uuid> <uuid> <vmname>
* Fix rebuild of accelerators menu when loading from fileMarc-André Lureau2014-01-071-1/+2
| | | | | | | | | It's not enough to set the property to notify of its change. Add a virt_viewer_app_set_enable_accel() helper, and call it after the changes to accelerators are made when loading from file. I verified the menu is correctly built when connection from controller or command line too.
* Unify configured hotkey behaviourMarc-André Lureau2013-11-071-4/+6
| | | | | | | | | | | Whether the hotkeys are set through command line, controller or file, we should get the same keybinding result (clear unspecified, and enable global bindings) However, when started from command line arguments, without --hotkey argument, it will have basic non-global default bindings. https://bugzilla.redhat.com/show_bug.cgi?id=1023447
* file: learn to set secure-attention hotkeyMarc-André Lureau2013-11-071-0/+26
|
* Rename internal toggle-fullscreen menu accel nameMarc-André Lureau2013-11-071-1/+1
| | | | This avoid confusion with other fullscreen state property
* file: factor a bit setting accelerators codeMarc-André Lureau2013-11-071-22/+20
|
* file: add missing field commentMarc-André Lureau2013-07-301-0/+1
|
* file: add delete-this-file optionMarc-André Lureau2013-04-301-0/+32
| | | | | | | In case the virt-viewer setting file is meant to temporary, you may use the delete-this-file=1 option to ask the client to remove it, once it has been read. This is useful for example in ovirt context, where connection settings file are generated and can't be reused.
* spice: forward secure-channelsMarc-André Lureau2013-04-151-0/+26
| | | | This needs spice-gtk >= 0.19.7 and will warn with lower version
* file: add version field, raise an error if incompatibilyMarc-André Lureau2013-03-081-4/+51
| | | | | | The virt-viewer connection file can now have a version=0.5 field. If the virt-viewer version opening the connection doesn't provide at least that version, an error is raised with the version required.
* spice: add proxy configuration to connection fileMarc-André Lureau2013-01-291-1/+25
|
* file: add username supportMarc-André Lureau2013-01-181-0/+25
|
* Sanitize syntax-checkMichal Privoznik2012-12-051-0/+1
| | | | | | | | make syntax-check is producing some errors about empty line at EOF and missing #include <config.h> in src/virt-viewer-file.c * src/virt-viewer-file.c: add #include <config.h> * data/virt-viewer-debug.nsis.in: remove empty line at EOF
* Add VirtViewerFileMarc-André Lureau2012-11-271-0/+797
v2: - use !! for boolean values setter - switch from bytearray/base64 to plain string for CA (PEM) - add file format comment