~ubuntu-branches/debian/jessie/italc/jessie

« back to all changes in this revision

Viewing changes to lib/include/ivs_connection.h

  • Committer: Bazaar Package Importer
  • Author(s): Patrick Winnertz
  • Date: 2011-02-11 14:50:22 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20110211145022-sn173siax6lywjus
Tags: upstream-1.0.13
ImportĀ upstreamĀ versionĀ 1.0.13

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
#include <QtCore/QReadWriteLock>
34
34
#include <QtGui/QImage>
35
 
#include <QtGui/QRegion>
36
35
 
37
36
 
38
37
#ifdef HAVE_LIBZ
49
48
}
50
49
#endif
51
50
 
 
51
#include "qt_user_events.h"
52
52
#include "isd_connection.h"
53
53
#include "rfb/rfbproto.h"
54
54
#include "fast_qimage.h"
55
55
 
56
56
 
 
57
 
57
58
class demoServerClient;
58
59
 
59
60
 
152
153
                                                Q_UINT16 _w, Q_UINT16 _h,
153
154
                                                bool _incremental );
154
155
 
155
 
        void postRegionChangedEvent( const QRegion & _rgn );
 
156
        void postRegionChangedEvent( const RectList &rgn );
156
157
 
157
158
        bool handleCursorPos( const Q_UINT16 _x, const Q_UINT16 _y );
158
159
        bool handleCursorShape( const Q_UINT16 _xhot, const Q_UINT16 _yhot,
250
251
 
251
252
signals:
252
253
        void cursorShapeChanged( void );
253
 
        void regionUpdated( const QRegion & );
 
254
        void regionUpdated( const RectList & );
254
255
 
255
256
} ;
256
257