summaryrefslogtreecommitdiffstats
path: root/client/windows/platform.cpp
Commit message (Collapse)AuthorAgeFilesLines
* client: add Platform::term_printfYaniv Kamay2010-01-101-0/+64
| | | | | | 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-20/+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-2/+24
|
* spice: add missing breakArnon Gilboa2010-01-061-0/+1
|
* server,client: server authentication for secured channels. #527411 #549673.Yonit Halperin2010-01-061-0/+19
| | | | | | | | | 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-8/+25
| | | | | | | -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/+11
|
* spice: on toggle_full_screen, generate on_key_down if shift is still pressedArnon Gilboa2010-01-031-2/+19
|
* spice client: calling the timers during modal loop in WindowsYonit Halperin2010-01-031-0/+52
|
* spice client: remove timer interface from platform - use Application (via ↵Yonit Halperin2010-01-031-35/+0
| | | | ProcessLoop interface).
* spice client: cosmetic changesYonit Halperin2010-01-031-1/+1
|
* spice client: creating a general process loop.Yonit Halperin2010-01-031-179/+48
| | | | | | | | | | | 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/+786