summaryrefslogtreecommitdiffstats
path: root/src/client/vnc/vncwindow.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Clean up and modernize codeSimon Rettberg2022-10-301-26/+19Star
| | | | | | | - static "new-style" signal->slot connections - Fix a lot of things Clang-Tidy complained about - Move includes to .cpp files and use forward decls in .h - Don't use <QtWidgets> and <QtCore>, but specific includes instead
* [client] Stop projection on any key pressSteffen Ritter2018-10-041-1/+1
| | | | | | But only if the client is connected to a local PVS-Mgr e.g. in hybrid mode. Closes #3424
* Update code style, fix compiler warningsSimon Rettberg2018-07-241-10/+10
| | | | | | - Use nullptr instead of NULL for better warnings in case of mistakes - Get rid of VLAs which are not in C++11 actually - Fix implicit signed <-> unsigned mismatches by adding checks and casts
* [client] Rewrite thread sync for VNC yet againSimon Rettberg2018-07-201-25/+100
| | | | | | | | | | | Move processing of image (scaling) to GUI thread. Get rid of second (scaled) image buffer. Instead, whenever we redraw parts of the VNC viewer, the according image parts will be copied and scaled from the buffer the vncclient thread is using. The buffer is wrapped in a QImage and handed over using a QSharedPointer, so reinitializing the buffer on the fly should yield no problems.
* [client] Don't activateWindow VNC viewer on open in multiscreen modeSimon Rettberg2018-07-201-4/+6
|
* [client] Rewrite thread sync between VNC worker and VNC windowSimon Rettberg2018-07-171-12/+16
|
* [client] Show vnc window on rightmost screenSimon Rettberg2018-07-161-7/+22
| | | | | | In Multiscreen setups, we most likely show the VM on the primary (=leftmost) screen.
* [client] Fix deletion of QThread while still runningSimon Rettberg2017-12-041-1/+11
|
* [client] Periodically bring vnc and lock window to topSimon Rettberg2017-02-101-1/+13
|
* Increase compiler warnings, fix a lot of those instancesSimon Rettberg2016-11-151-2/+2
| | | | | | - Add explicit casts - Comment out unused params - Remove ignored const return types
* [client] Allow ESC key to cancel projection in hybrid modeSimon Rettberg2016-10-281-1/+17
|
* astyle.Christian Klinger2016-09-291-33/+16Star
|
* [*] Use thumbnail on vnc viewer window until connection is upSimon Rettberg2016-02-081-4/+32
|
* [client] Increase vnc client connect timeout to account for large pools of ↵Simon Rettberg2016-02-081-1/+5
| | | | clients
* [client] Retry VNC connection up to 5 timesSimon Rettberg2016-02-011-1/+1
|
* Now using qWidget instead of qDialog to avoid the need to handdle every dialogManuel Schneider2014-04-251-23/+5Star
| | | | event (reject, done, accept, finished). No more close override necessary.
* Doxygen comments, removed incomplete unused event handling for VNC RW ↵Simon Rettberg2014-04-231-189/+144Star
| | | | access, introduced terminateVnc method in VncWindow
* Merge branch 'master' of git.openslx.org:pvs2Björn Hagemeister2014-04-231-27/+31
|\
| * Made vnc thread stoppable from outside. Thread kills itself. If the vncManuel Schneider2014-04-231-27/+31
| | | | | | | | | | connection cannot be established a timeout kills the thread after a short period of time.
* | Fix status icon updating not workingBjörn Hagemeister2014-04-231-0/+7
|/
* [CLIENT] Request full screen update from VNC server after the frame buffer ↵sr2013-02-061-5/+12
| | | | has been set up
* [SERVER] Get "stop projection" rightsr2013-02-061-2/+2
| | | | [CLIENT] Redraw whole screen on projection start
* [SERVER] Add "stop projection" buttonsr2013-02-061-1/+14
| | | | | [SERVER] Don't show error message when VNC server stops as expected [SERVER/CLIENT] Implement connection timeout of 15 seconds
* Initial commitsr2013-02-041-0/+277