summaryrefslogtreecommitdiffstats
path: root/src/client/vnc/vncthread.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Clean up and modernize codeSimon Rettberg2022-10-301-19/+21
| | | | | | | - 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
* [*] Convert old C-Style castsSimon Rettberg2018-07-261-4/+4
| | | | | Primitive types now use type(x) instead of (type)x, pointers should use appropriate long versions
* Update code style, fix compiler warningsSimon Rettberg2018-07-241-9/+14
| | | | | | - 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-102/+9Star
| | | | | | | | | | | 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] Rewrite thread sync between VNC worker and VNC windowSimon Rettberg2018-07-171-45/+37Star
|
* [client] Fix deletion of QThread while still runningSimon Rettberg2017-12-041-2/+0Star
|
* astyle.Christian Klinger2016-09-291-21/+11Star
|
* [client] Increase vnc client connect timeout to account for large pools of ↵Simon Rettberg2016-02-081-2/+4
| | | | clients
* [client] Retry VNC connection up to 5 timesSimon Rettberg2016-02-011-30/+45
|
* Now using qWidget instead of qDialog to avoid the need to handdle every dialogManuel Schneider2014-04-251-7/+7
| | | | event (reject, done, accept, finished). No more close override necessary.
* Doxygen comments, removed incomplete unused event handling for VNC RW ↵Simon Rettberg2014-04-231-35/+79
| | | | access, introduced terminateVnc method in VncWindow
* Made vnc thread stoppable from outside. Thread kills itself. If the vncManuel Schneider2014-04-231-42/+38Star
| | | | | connection cannot be established a timeout kills the thread after a short period of time.
* [CLIENT] Request full screen update from VNC server after the frame buffer ↵sr2013-02-061-0/+2
| | | | has been set up
* Initial commitsr2013-02-041-0/+314