summaryrefslogtreecommitdiffstats
path: root/client/platform.h
Commit message (Collapse)AuthorAgeFilesLines
* client: add Platform::term_printfYaniv Kamay2010-01-101-0/+1
| | | | | | 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: move log file to spicec appdata dirYaniv Kamay2010-01-101-2/+2
|
* server,client: server authentication for secured channels. #527411 #549673.Yonit Halperin2010-01-061-0/+2
| | | | | | | | | 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
* spice: position mouse in primary monitor center after full screen toggleArnon Gilboa2010-01-031-0/+2
| | | | | | | -move _focused & _pointer_in_window from RedWindow to RedWindow_p's -move shadow focus & cursor handling to sync() -add reset_cursor_pos() to Platform -Monitor set_mode()/restore() use virtual do_set_mode()/do_restore()
* spice: add [pid:tid] to log linesArnon Gilboa2010-01-031-0/+2
|
* spice: on toggle_full_screen, generate on_key_down if shift is still pressedArnon Gilboa2010-01-031-1/+19
|
* spice client: remove timer interface from platform - use Application (via ↵Yonit Halperin2010-01-031-13/+0
| | | | ProcessLoop interface).
* spice client: cosmetic changesYonit Halperin2010-01-031-5/+4
|
* spice client: Transfer all channels run loop from EventsLoop class to ↵Yonit Halperin2010-01-031-5/+5
| | | | ProcessLoop class
* spice client: creating a general process loop.Yonit Halperin2010-01-031-12/+19
| | | | | | | | | | | 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.
* fresh startYaniv Kamay2009-10-141-0/+158