summaryrefslogtreecommitdiffstats
path: root/client/application.cpp
Commit message (Collapse)AuthorAgeFilesLines
* client: add command line support for ciphers, ca file, and host certificate ↵spice-client-0.4.2-2.el6Yonit Halperin2010-03-141-5/+91
| | | | subject #573371
* client: add Platform::term_printfYaniv Kamay2010-01-101-28/+39
| | | | | | Platform::term_printf is a variant of printf that on windows dynamically opens console in order to have visible output during command line processing.
* client: fix logger init mix-upYaniv Kamay2010-01-101-3/+3
| | | | | enable log rotate in case RED_DEBUG is not defined and disable log rotate in case RED_DEBUG is defined
* client: move log file to spicec appdata dirYaniv Kamay2010-01-101-5/+9
|
* server,client: server authentication for secured channels. #527411 #549673.Yonit Halperin2010-01-061-2/+8
| | | | | | | | | 3 available mechanisms: by public key, by host name, and by certificate subject name. In the former method, chain of trust verification is not performed. The CA certificate files are looked for under <spice-config-dir>/spice_truststore.pem windows <spice-config-dir>=%APPDATA%\spicec\ linux <spice-config-dir>=$HOME/.spicec
* client: restore gl_fbo and gl_pbuff canavas type optionsYaniv Kamay2010-01-031-0/+4
|
* spice: on_activate_screen generates on_key_down for any modifier pressedArnon Gilboa2010-01-031-15/+42
| | | | | | -call SetWindowsHookEx(WH_KEYBOARD_LL, LowLevelKeyboardProc...) only once, in RedWindow::init() -add Application::cleanup_globals() & RedWindow::cleanup() -cleanup LowLevelKeyboardProc()
* spice: on toggle_full_screen, generate on_key_down if shift is still pressedArnon Gilboa2010-01-031-0/+12
|
* spice: show splash screen on disconnect only on debugArnon Gilboa2010-01-031-2/+4
|
* spice client: sticky Alt activation when holding an Alt keyYonit Halperin2010-01-031-17/+216
| | | | | | | | | | | Additional changes that were required for the feature: 1) focusing on the pointed window in full screen mode 2) In X11 - handling events that occur during keyboard ungrabbing 3) In X11 - handling Leave/Enter Notify events that occur during keyboard grabbing/ungrabbing 4) In X11 - fix for focus events that are handled in the wrong order (happens when focus events occur during grabbing the keyboard) 5) In X11 - ignoring key release events during key holding 6) In Windows - synchronizing keyboard release events that occured during a modal loop
* spice client: creating a general process loop.Yonit Halperin2010-01-031-115/+20
| | | | | | | | | | | The process loop is responsible for: 1) waiting for events 2) timers 3) events queue for actions that should be performed in the context of the thread and are pushed from other threads. The benefits: 1) remove duplicity: till now, there was one implementaion of events loop for the channels and another one for the main thread. 2) timers can be executed on each thread and not only on the main thread. 3) events can be pushed to each thread and not only to the main thread. In this commit, only the main thread was modified to use the new process loop.
* remove ogl canvas option from command lineYaniv Kamay2009-10-251-4/+0
|
* fresh startYaniv Kamay2009-10-141-0/+1674