]> source.dussan.org Git - tigervnc.git/log
tigervnc.git
10 years agoDisable input methods when the viewport is focused
Pierre Ossman [Tue, 19 Aug 2014 12:08:04 +0000 (14:08 +0200)]
Disable input methods when the viewport is focused

Input methods are way too complex for us to map them to the VNC
protocol in any sane manner. Best just to disable them and rely
on simple keyboard behaviour when the viewport is active.

10 years agoIgnore FLTK events when we have low level hooks
Pierre Ossman [Tue, 19 Aug 2014 12:06:53 +0000 (14:06 +0200)]
Ignore FLTK events when we have low level hooks

Some events can sneak through, e.g. from some virtual keyboards.
We need to ignore these to avoid confusion.

10 years agoAdd OS X keyboard handler
Pierre Ossman [Mon, 21 Jul 2014 14:48:43 +0000 (16:48 +0200)]
Add OS X keyboard handler

10 years agoAdd Windows keyboard handler
Pierre Ossman [Mon, 21 Jul 2014 14:46:22 +0000 (16:46 +0200)]
Add Windows keyboard handler

10 years agoAdd X11 keyboard handler
Pierre Ossman [Mon, 21 Jul 2014 14:42:12 +0000 (16:42 +0200)]
Add X11 keyboard handler

10 years agoAdd xhandler hook
Pierre Ossman [Fri, 22 Aug 2014 13:10:22 +0000 (15:10 +0200)]
Add xhandler hook

Boiler plate code to intercept system events from FLTK so that
we can generate proper keyboard messages.

10 years agoAdd helper to get combining codepoint from a spacing character
Pierre Ossman [Mon, 21 Jul 2014 14:36:50 +0000 (16:36 +0200)]
Add helper to get combining codepoint from a spacing character

10 years agoBetter codepoint for combining ypogegrammeni (dead iota)
Pierre Ossman [Mon, 21 Jul 2014 14:35:51 +0000 (16:35 +0200)]
Better codepoint for combining ypogegrammeni (dead iota)

10 years agoAttempt to handle Ctrl+key
Pierre Ossman [Fri, 22 Aug 2014 13:09:54 +0000 (15:09 +0200)]
Attempt to handle Ctrl+key

Hacky attempt to try to figure out the actual key pressed when
FLTK is giving us control codes.

10 years agoRemove simple keyboard model
Pierre Ossman [Mon, 21 Jul 2014 14:30:08 +0000 (16:30 +0200)]
Remove simple keyboard model

Remove the FLTK simple keyboard system and reorganise things in
preparation for a more direct approach.

10 years agoShip FLTK patches instead of referring a URI
Pierre Ossman [Fri, 22 Aug 2014 12:43:33 +0000 (14:43 +0200)]
Ship FLTK patches instead of referring a URI

It makes things more self contained (although you still need to
download FLTK itself), avoids the confusion of STR:s in varying
states, and allows us to refer to patches that aren't available
on an STR.

10 years agoUpdate FLTK requirement
Pierre Ossman [Fri, 22 Aug 2014 12:41:03 +0000 (14:41 +0200)]
Update FLTK requirement

We actually require FLTK 1.3.2 as we reference FL_SOCKET.

10 years agoWindows debug builds of vncviewer should have a console
Pierre Ossman [Mon, 21 Jul 2014 14:22:43 +0000 (16:22 +0200)]
Windows debug builds of vncviewer should have a console

Makes it easier to debug it by having convenient access to the
log output.

10 years agoUse NoSymbol as the error code
Pierre Ossman [Mon, 21 Jul 2014 14:17:23 +0000 (16:17 +0200)]
Use NoSymbol as the error code

This is how the X11 API does things, so it's clearer if we use
the same principle.

10 years agoMake keysymtab static and const
Pierre Ossman [Mon, 21 Jul 2014 14:12:00 +0000 (16:12 +0200)]
Make keysymtab static and const

Static to avoid namespace polution, and const so that it can be
shared among instances.

10 years agoUse printf constructor safely
Pierre Ossman [Mon, 21 Jul 2014 14:10:03 +0000 (16:10 +0200)]
Use printf constructor safely

The input string might contain formatting marks, so make sure those
are ignored.

10 years agoMerge branch 'encodemanager' of https://github.com/CendioOssman/tigervnc
Pierre Ossman [Mon, 14 Jul 2014 14:22:05 +0000 (16:22 +0200)]
Merge branch 'encodemanager' of https://github.com/CendioOssman/tigervnc

10 years agoMerge branch 'nopixeltrans' of https://github.com/CendioOssman/tigervnc
Pierre Ossman [Mon, 14 Jul 2014 14:17:46 +0000 (16:17 +0200)]
Merge branch 'nopixeltrans' of https://github.com/CendioOssman/tigervnc

10 years agoMerge branch 'nocolourmap' of https://github.com/CendioOssman/tigervnc
Pierre Ossman [Mon, 14 Jul 2014 14:15:16 +0000 (16:15 +0200)]
Merge branch 'nocolourmap' of https://github.com/CendioOssman/tigervnc

10 years agoString literals are constant 11/head
Pierre Ossman [Wed, 9 Jul 2014 15:02:27 +0000 (17:02 +0200)]
String literals are constant

10 years agoRemove PixelTransformer and TransImageGetter 10/head
Pierre Ossman [Wed, 9 Jul 2014 14:49:16 +0000 (16:49 +0200)]
Remove PixelTransformer and TransImageGetter

There is nothing using these classes anymore, so remove the clutter.

10 years agoMove image encoding logic into a central EncodeManager class
Pierre Ossman [Fri, 14 Mar 2014 14:59:46 +0000 (15:59 +0100)]
Move image encoding logic into a central EncodeManager class

This allows us to apply a lot more server logic
independently of which encoder is in use.

Most of this class are things moved over from the
Tight encoder.

10 years agoUse PixelBuffer objects as the interface for encoders and decoders
Pierre Ossman [Wed, 9 Jul 2014 14:44:11 +0000 (16:44 +0200)]
Use PixelBuffer objects as the interface for encoders and decoders

This avoid a lot of unnecessary middle men. This also pushes the
responsibility for pixel format conversion into the encoders and
decoders. The new bufferFromBuffer() is used for direct conversion,
rather than PixelTransformer/TransImageGetter.

10 years agoStore the mouse cursor in the ConnParams object
Pierre Ossman [Thu, 13 Feb 2014 13:40:25 +0000 (14:40 +0100)]
Store the mouse cursor in the ConnParams object

Like we do for everything else. This also gets rid
of the callback, which is a bit out of place
compared to everything else.

10 years agoAllow PixelBuffers to be const
Pierre Ossman [Thu, 13 Feb 2014 13:37:25 +0000 (14:37 +0100)]
Allow PixelBuffers to be const

10 years agoAdd helper class for a rendered cursor
Pierre Ossman [Wed, 12 Feb 2014 15:33:43 +0000 (16:33 +0100)]
Add helper class for a rendered cursor

Add a magical cursor framebuffer class for handling when you
want to render the cursor on the server side. Keeps the cursor
specific magic in one contained place.

10 years agoAdd convenience variant of getImage()
Pierre Ossman [Wed, 12 Feb 2014 12:24:15 +0000 (13:24 +0100)]
Add convenience variant of getImage()

10 years agoMerge branch 'inputreset' of https://github.com/CendioOssman/tigervnc
Pierre Ossman [Mon, 14 Jul 2014 13:03:05 +0000 (15:03 +0200)]
Merge branch 'inputreset' of https://github.com/CendioOssman/tigervnc

10 years agoHandle closing of input devices 6/head
Pierre Ossman [Mon, 14 Jul 2014 11:46:48 +0000 (13:46 +0200)]
Handle closing of input devices

The core can decide to close an input device (e.g. during a
server reset). Make sure we respect this by forgetting about
the device and recreating it again later.

10 years agoRemove private storage from InputDevice
Pierre Ossman [Mon, 14 Jul 2014 11:44:46 +0000 (13:44 +0200)]
Remove private storage from InputDevice

We don't need this anymore as we now only have a single
InputDevice object and can easily refer to it directly.

10 years agoMake InputDevice into a singleton
Pierre Ossman [Mon, 14 Jul 2014 11:41:36 +0000 (13:41 +0200)]
Make InputDevice into a singleton

Xorg input devices are global so it doesn't make sense that we
have one InputDevice object per XserverDesktop.

10 years agoMove all functions that InputDevice uses into the class
Pierre Ossman [Mon, 14 Jul 2014 11:39:57 +0000 (13:39 +0200)]
Move all functions that InputDevice uses into the class

10 years agoLet XserverDesktop handle syncing cursor position
Pierre Ossman [Mon, 14 Jul 2014 11:36:47 +0000 (13:36 +0200)]
Let XserverDesktop handle syncing cursor position

This makes InputDevice cleaner and just a glue layer for Xorg
input devices.

10 years agoRe-init VNC extension on server reset
Pierre Ossman [Mon, 14 Jul 2014 11:20:24 +0000 (13:20 +0200)]
Re-init VNC extension on server reset

fc23895 blocked out a bit too much code when trying to make
libvnc handle server resets. Even though configuration should
only be handled once, the underlying VNC extension needs to
be reinitilised as the X core has removed all extensions on
reset.

10 years agoWe need to set a label on all pointer buttons
Pierre Ossman [Fri, 11 Jul 2014 12:03:44 +0000 (14:03 +0200)]
We need to set a label on all pointer buttons

10 years agoAdd convenience functions to ModifiablePixelBuffer
Pierre Ossman [Thu, 13 Feb 2014 09:38:48 +0000 (10:38 +0100)]
Add convenience functions to ModifiablePixelBuffer

Allows you to modify the buffer with data in a
different pixel format.

10 years agoTest results comparing PixelTransformer and bufferFromBuffer()
Pierre Ossman [Wed, 9 Jul 2014 14:28:55 +0000 (16:28 +0200)]
Test results comparing PixelTransformer and bufferFromBuffer()

10 years agoAdd optimised buffer conversion
Pierre Ossman [Thu, 30 Jan 2014 09:47:07 +0000 (10:47 +0100)]
Add optimised buffer conversion

Handles the common cases when the target or source are in
the preferred 888 format.

If one of the buffers is not 888, then it must also be properly
aligned (which is commonly the case). Performance is now in many
cases on par with PixelTransformer.

10 years agoAdd ability to directly convert between two pixel formats
Pierre Ossman [Wed, 29 Jan 2014 16:00:36 +0000 (17:00 +0100)]
Add ability to directly convert between two pixel formats

This is a lot easier and cheaper than having to set up a complete
PixelTransformer object.

10 years agoUse lookup tables for pixel upconversion
Pierre Ossman [Tue, 8 Jul 2014 13:06:25 +0000 (15:06 +0200)]
Use lookup tables for pixel upconversion

You have to loop many times when converting e.g. 2 bits to 8,
so have a couple of lookup tables to speed things up. We still
use bit replication to get from 8 bits to 16 bits though.

10 years agoPut some space between the groups of tests
Pierre Ossman [Wed, 9 Jul 2014 12:12:39 +0000 (14:12 +0200)]
Put some space between the groups of tests

10 years agoAdd more 8 bpp conversion tests
Pierre Ossman [Wed, 9 Jul 2014 12:12:12 +0000 (14:12 +0200)]
Add more 8 bpp conversion tests

10 years agoOnly grab the regions we actually need
Pierre Ossman [Thu, 13 Feb 2014 08:42:48 +0000 (09:42 +0100)]
Only grab the regions we actually need

Allows pixel buffers that do damage tracking to get
proper information.

10 years agoProvide a better R/W base PixelBuffer class
Pierre Ossman [Thu, 6 Feb 2014 15:31:10 +0000 (16:31 +0100)]
Provide a better R/W base PixelBuffer class

Clearly separates the read API from the write API
and also from actual implementation.

10 years agoGet rid of getStride() 9/head
Pierre Ossman [Thu, 30 Jan 2014 16:57:27 +0000 (17:57 +0100)]
Get rid of getStride()

It was confusing and not properly used everywhere.
Callers should use the stride they get when they get
the buffer pointer.

10 years agoGet rid of the direct access abuse of FullFramePixelBuffer's data
Pierre Ossman [Thu, 30 Jan 2014 16:47:31 +0000 (17:47 +0100)]
Get rid of the direct access abuse of FullFramePixelBuffer's data

10 years agoWe don't need a fillRect() that is this optimised
Pierre Ossman [Thu, 30 Jan 2014 15:59:14 +0000 (16:59 +0100)]
We don't need a fillRect() that is this optimised

Keep things simple instead and allows us to remove the extra setPF()
methods.

10 years agoAvoid having virtual methods where not needed
Pierre Ossman [Tue, 28 Jan 2014 12:47:18 +0000 (13:47 +0100)]
Avoid having virtual methods where not needed

10 years agogetImage() doesn't need to be overloadable, keep it simple
Pierre Ossman [Wed, 12 Feb 2014 12:23:30 +0000 (13:23 +0100)]
getImage() doesn't need to be overloadable, keep it simple

10 years agoCreate a proper interface base class for the viewport's framebuffer
Pierre Ossman [Fri, 7 Feb 2014 13:46:26 +0000 (14:46 +0100)]
Create a proper interface base class for the viewport's framebuffer

This allows us to gracefully fall back to the FLTK code in case the
platform specific code cannot be used.

10 years agoEncoders/decoders should track the connection object
Pierre Ossman [Fri, 31 Jan 2014 11:37:32 +0000 (12:37 +0100)]
Encoders/decoders should track the connection object

The connection object is a much more appropriate object for the
decoders and encoders to keep track of. Besides the streams, it also
contains state like connection parameters.

10 years agoPush encoder and decoder handling down into the connection objects
Pierre Ossman [Fri, 31 Jan 2014 12:12:18 +0000 (13:12 +0100)]
Push encoder and decoder handling down into the connection objects

This keeps the reader and writer objects clean and simple protocol
decoders/encoders.

10 years agoRemove full support for colour maps
Pierre Ossman [Mon, 20 Jan 2014 14:05:21 +0000 (15:05 +0100)]
Remove full support for colour maps

Gets rid of a loooot of code and complexity.

Colour map clients are still supported through an
automatically generated map, but we lose the ability to
develop a client or server that uses colour maps
internally.

10 years agoGet rid of unnecessary macros as they are only ever set to a single thing
Pierre Ossman [Wed, 12 Feb 2014 12:16:43 +0000 (13:16 +0100)]
Get rid of unnecessary macros as they are only ever set to a single thing

10 years agoPush encoding specific formats into the encoders and decoders
Pierre Ossman [Mon, 17 Mar 2014 13:35:51 +0000 (14:35 +0100)]
Push encoding specific formats into the encoders and decoders

Keep the generic stream classes clean and general.

10 years agoConsolidate the different palette handler implementations
Pierre Ossman [Fri, 7 Mar 2014 12:48:29 +0000 (13:48 +0100)]
Consolidate the different palette handler implementations

10 years agoHandle CopyRect like any other encoding
Pierre Ossman [Fri, 31 Jan 2014 10:21:51 +0000 (11:21 +0100)]
Handle CopyRect like any other encoding

Avoids having to special case things. Keeps the code simpler.

10 years agoAvoid reader/writer duplication in every encoder/decoder
Pierre Ossman [Wed, 29 Jan 2014 15:42:48 +0000 (16:42 +0100)]
Avoid reader/writer duplication in every encoder/decoder

10 years agoRemove partial update functionality
Pierre Ossman [Tue, 21 Jan 2014 13:45:10 +0000 (14:45 +0100)]
Remove partial update functionality

Get rid of the ability of encoders to only send part of the
rectangle they are given as we don't want partial updates
anyway.

10 years agoMove serialisation of pseudorects into separate functions
Pierre Ossman [Thu, 16 Jan 2014 12:39:05 +0000 (13:39 +0100)]
Move serialisation of pseudorects into separate functions

Keeps the code clearer.

10 years agoMerge the "V3" message classes into the normal ones
Pierre Ossman [Thu, 16 Jan 2014 12:12:40 +0000 (13:12 +0100)]
Merge the "V3" message classes into the normal ones

We have no need for this abstraction so let's keep things simple.

10 years agoMerge branch 'pixeltest' of https://github.com/CendioOssman/tigervnc
Pierre Ossman [Mon, 7 Jul 2014 12:36:35 +0000 (14:36 +0200)]
Merge branch 'pixeltest' of https://github.com/CendioOssman/tigervnc

10 years agoMerge branch 'cleanup' of https://github.com/CendioOssman/tigervnc
Pierre Ossman [Mon, 7 Jul 2014 12:27:04 +0000 (14:27 +0200)]
Merge branch 'cleanup' of https://github.com/CendioOssman/tigervnc

10 years agoRemove a lot of platform compatibilty stuff 3/head
Pierre Ossman [Mon, 7 Jul 2014 12:13:46 +0000 (14:13 +0200)]
Remove a lot of platform compatibilty stuff

It's either not used, or no longer relevant.

10 years agoRemove remnants of Windows only client
Pierre Ossman [Mon, 7 Jul 2014 11:44:03 +0000 (13:44 +0200)]
Remove remnants of Windows only client

10 years agoFix some offenders that poke around in the PixelFormat internals
Pierre Ossman [Wed, 12 Feb 2014 12:12:31 +0000 (13:12 +0100)]
Fix some offenders that poke around in the PixelFormat internals

10 years agoAvoid code duplication for the linear pixel format conversion methods
Pierre Ossman [Thu, 30 Jan 2014 08:51:39 +0000 (09:51 +0100)]
Avoid code duplication for the linear pixel format conversion methods

10 years agoConsistent use of stride vs pitch
Pierre Ossman [Wed, 22 Jan 2014 10:28:05 +0000 (11:28 +0100)]
Consistent use of stride vs pitch

Consistently use the term stride rather than pitch. Also
consistently represent the stride in number of pixels rather
than number of bytes. There is so much code that assumes
proper alignment already that we do not need the extra resolution.

10 years agoFix possible information leakage
Pierre Ossman [Mon, 20 Jan 2014 16:11:19 +0000 (17:11 +0100)]
Fix possible information leakage

Zero the padding byte used when converting 24-bit RGB to 32-bit.

10 years agoUse the same algorithm for conversions
Pierre Ossman [Mon, 20 Jan 2014 15:40:10 +0000 (16:40 +0100)]
Use the same algorithm for conversions

Make sure that the routines that convert between buffer
and rgb representations follow the same algorithm so it's
easier to compare them.

10 years agoOptimise the RGB to pixel conversion to simple shifts
Pierre Ossman [Mon, 20 Jan 2014 16:23:51 +0000 (17:23 +0100)]
Optimise the RGB to pixel conversion to simple shifts

Might as well make it inline at this point as well as it is used
heavily in other routines that convert entire blocks of pixels.

10 years agoRemove magic JPEG variables from ConnParams
Pierre Ossman [Mon, 17 Mar 2014 13:42:10 +0000 (14:42 +0100)]
Remove magic JPEG variables from ConnParams

Custom compression level and JPEG on/off are not inherent parts of
the protocol negotiation so they do not belong in ConnParams. Let the
UI frontend handle such things instead.

10 years agoClean up the encoding parser in ConnParams
Pierre Ossman [Wed, 15 Jan 2014 12:44:04 +0000 (13:44 +0100)]
Clean up the encoding parser in ConnParams

10 years agoMake the subsampling setting follow the common style
Pierre Ossman [Wed, 15 Jan 2014 12:23:43 +0000 (13:23 +0100)]
Make the subsampling setting follow the common style

10 years agoRemove some premature optimisation
Pierre Ossman [Mon, 27 Jan 2014 15:52:35 +0000 (16:52 +0100)]
Remove some premature optimisation

Reduces header dependencies.

10 years agoAdd some missing whitespace
Pierre Ossman [Mon, 27 Jan 2014 15:17:21 +0000 (16:17 +0100)]
Add some missing whitespace

10 years agoStop storing a copy of the encodings as we don't use it for anything
Pierre Ossman [Wed, 15 Jan 2014 12:51:53 +0000 (13:51 +0100)]
Stop storing a copy of the encodings as we don't use it for anything

10 years agoGet rid of the register mechanism for encoders and decoders
Pierre Ossman [Wed, 15 Jan 2014 11:40:20 +0000 (12:40 +0100)]
Get rid of the register mechanism for encoders and decoders

We have no use for it, so let's keep things simple.

10 years agoBe more consistent in referring to pixel byte streams as buffers
Pierre Ossman [Tue, 28 Jan 2014 13:13:12 +0000 (14:13 +0100)]
Be more consistent in referring to pixel byte streams as buffers

10 years agoDocument the different pixel representations that we deal with
Pierre Ossman [Mon, 20 Jan 2014 15:55:19 +0000 (16:55 +0100)]
Document the different pixel representations that we deal with

10 years agoGet rid of unused things in the ZRLE encoder
Pierre Ossman [Thu, 13 Mar 2014 14:08:36 +0000 (15:08 +0100)]
Get rid of unused things in the ZRLE encoder

Get rid of unused shared MemOutStream and variable max length
functionality in the ZRLE encoder.

10 years agoRemove unused method prototype
Pierre Ossman [Fri, 7 Feb 2014 13:51:44 +0000 (14:51 +0100)]
Remove unused method prototype

10 years agoRemove all unused TX widgets
Pierre Ossman [Thu, 30 Jan 2014 16:15:55 +0000 (17:15 +0100)]
Remove all unused TX widgets

10 years agoRemove the scaled pixel buffer classes as they are not used.
Pierre Ossman [Wed, 29 Jan 2014 16:10:27 +0000 (17:10 +0100)]
Remove the scaled pixel buffer classes as they are not used.

There were also reports of them being broken last time we still
made use of them.

10 years agoRemove unused (and commented out) PixelBuffer::getPixel()
Pierre Ossman [Tue, 28 Jan 2014 15:43:22 +0000 (16:43 +0100)]
Remove unused (and commented out) PixelBuffer::getPixel()

10 years agoRemove unused alternative code path from the ZRLE and Hextile decoders
Pierre Ossman [Tue, 28 Jan 2014 15:41:29 +0000 (16:41 +0100)]
Remove unused alternative code path from the ZRLE and Hextile decoders

10 years agoRemove unused pixel conversion method
Pierre Ossman [Mon, 20 Jan 2014 15:55:04 +0000 (16:55 +0100)]
Remove unused pixel conversion method

10 years agoRemove unsused, commented out code
Pierre Ossman [Thu, 16 Jan 2014 12:23:47 +0000 (13:23 +0100)]
Remove unsused, commented out code

10 years agoClean up header dependencies in the vncviewer directory
Pierre Ossman [Mon, 20 Jan 2014 13:43:52 +0000 (14:43 +0100)]
Clean up header dependencies in the vncviewer directory

10 years agoReduce dependencies on TransImageGetter.h
Pierre Ossman [Wed, 15 Jan 2014 12:22:03 +0000 (13:22 +0100)]
Reduce dependencies on TransImageGetter.h

10 years agoSupport keeping libjpeg's default compression setting
Pierre Ossman [Fri, 21 Mar 2014 11:38:59 +0000 (12:38 +0100)]
Support keeping libjpeg's default compression setting

10 years agoCheck that we have a cursor to restore
Pierre Ossman [Mon, 17 Mar 2014 13:29:49 +0000 (14:29 +0100)]
Check that we have a cursor to restore

Forgot to check that we actually have a cursor from the server
before trying to switch back to it after dismissing the context menu.

10 years agoConverting to RGB might involve a precision increase
Pierre Ossman [Fri, 28 Feb 2014 10:54:34 +0000 (11:54 +0100)]
Converting to RGB might involve a precision increase

Need to do more than a simple shift to get the appropriate
new value. This isn't quite as exact as a proper multiplication
and division, but the error is so small it's not worth the
extra cycles.

10 years agoAdd pixel conversion speed test 4/head
Pierre Ossman [Fri, 4 Jul 2014 12:12:49 +0000 (14:12 +0200)]
Add pixel conversion speed test

Add a tests directory where we can put tests programs that can
be useful during testing. Start with a speed test for the pixel
conversion routines.

10 years agolibrfb needs librdr so make sure it always gets pulled in
Pierre Ossman [Fri, 4 Jul 2014 09:34:02 +0000 (11:34 +0200)]
librfb needs librdr so make sure it always gets pulled in

10 years agoMake sure we check that PixelFormats we get are actually valid.
Pierre Ossman [Mon, 20 Jan 2014 13:50:19 +0000 (14:50 +0100)]
Make sure we check that PixelFormats we get are actually valid.

10 years agoEmbedded applet should not show server dialog
Brian P. Hinz [Fri, 27 Jun 2014 01:35:48 +0000 (21:35 -0400)]
Embedded applet should not show server dialog

10 years agoAccidentally removed some code in the previous commit.
Pierre Ossman [Fri, 13 Jun 2014 11:26:21 +0000 (11:26 +0000)]
Accidentally removed some code in the previous commit.

git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5186 3789f03b-4d11-0410-bbf8-ca57d06f2519

10 years agoAdd XDAMAGE support to x0vncserver. Makes it more efficient
Pierre Ossman [Fri, 13 Jun 2014 10:56:59 +0000 (10:56 +0000)]
Add XDAMAGE support to x0vncserver. Makes it more efficient
and more responsive to changes.

git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5185 3789f03b-4d11-0410-bbf8-ca57d06f2519

10 years agoAdd a global event handler so that we can intercept custom events
Pierre Ossman [Fri, 13 Jun 2014 10:52:11 +0000 (10:52 +0000)]
Add a global event handler so that we can intercept custom events
that aren't for a specific window.

git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5184 3789f03b-4d11-0410-bbf8-ca57d06f2519