| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
| |
There has been some confusion if fillRect() should accept a buffer
or a pixel. This can cause misrendering if your data is not in the
native endian order. A buffer makes more sense here though, and
is what most of the callers are already assuming, so change the
API to follow that.
|
|
|
|
|
| |
It doesn't really make sense anymore given that settings might come
from the GUI or configuration and not only the command line.
|
|
|
|
|
|
|
| |
It was actually a feature to translate the about string multiple
times as we may need different character encodings for it. We
still want a better approach that allows the compiler to analyse
the format string though so it isn't just a simple revert.
|
| |
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The TcpListener constructor now takes a 'struct sockaddr*' instead of
a string, and the createTcpListeners function creates TcpListener
instances for an address based on the results from getaddrinfo().
The XserverDesktop class now takes a list of TcpListener instances for
each of the RFB and HTTP sockets.
The TcpListener::closeFd member variable is not used and has been
removed.
|
|\ \
| |/
|/|
| |
| |
| | |
Conflicts:
contrib/packages/rpm/el5/SPECS/tigervnc.spec
vncviewer/Viewport.cxx
|
| |
| |
| |
| |
| |
| | |
This workaround is no longer effective with the new system handler
method of handling keyboard events. The bug has also been fixed
in upstream FLTK, further making it pointless.
|
| |
| |
| |
| | |
This means that we can remove a lot of conditionals and fallback code.
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
The constants used here are unsigned so it makes more sense that
the parameters are as well.
|
| |
| |
| |
| |
| | |
Either by casting, or switching to a more appropriate type
for the variable.
|
| | |
|
| | |
|
|\ \
| | |
| | |
| | | |
https://github.com/twaugh/tigervnc
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
We don't want it automatically creating submenus when least
expected.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This reverts commit e95412569bd45ec3da43e1b9a244856e0408f6ab
and commit 52a18150a7a8f2802000136c35005bc83b5b0855.
The copy() method unfortunately has its own problems so it was not
a good replacement.
|
| | | |
|
|/ / |
|
| |
| |
| |
| | |
Less risk for bugs this way.
|
| | |
|
| |
| |
| |
| | |
It has less surprises in terms of magical characters.
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
A lot of X11 keyboard layouts send Meta for Shift-Alt so it's not
really a good idea to assume this is the Windows key.
|
|/
|
|
|
|
|
|
| |
In earlier Visual Studio and MinGW editions, BSD socket errno:s were
left undefined. This is no longer the case. This may cause build or
runtime errors. To avoid this, we are using a common header file which
corrects all definitions. This header will also be used with other
projects such as sercd, unfs3, PulseAudio etc.
|
| |
|
|
|
|
|
| |
There is no need for these to be global symbols as they are only
used in that file.
|
|
|
|
| |
They were not very end user friendly so redo more or less all of them.
|
| |
|
| |
|
| |
|
|
|
|
| |
We had already fixed the others, but this one was overlooked.
|
|
|
|
|
|
| |
The local window manager might give us a window of a different size
than the one we request. Make sure that the remote resize setting
gets respected even in this case.
|
|\ |
|
| |
| |
| |
| |
| | |
We use both frameworks directly from vncviewer so we should
make sure they get pulled in.
|
| |
| |
| |
| | |
It is rdr and network that needs it, not vncviewer.
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When run from within 'ssh -X' or 'ssh -Y', MIT-SHM will appear to be
available even though it won't work: the shared memory will be on the
machine running vncviewer, not on the machine running the X server it
displays to. Depending on what shm segments are available on the
machine running the X server, the failure may not be apparent when
checking that MIT-SHM works.
Avoid this by not using MIT-SHM when XDisplayName() indicates we may
not be running locally.
Original bug report:
https://bugzilla.redhat.com/show_bug.cgi?id=1072733
|
|
|
|
|
|
|
| |
Although these are rare, they are still not indicative of bugs so
an exception (which ends up in the log and might also be shown to
the user) is more appropriate than an assert. Asserts should only
be used to catch blatant API misuse and similar.
|