1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/***************************************************************************
kvncview.h - widget that shows the vnc client
-------------------
begin : Thu Dec 20 15:11:42 CET 2001
copyright : (C) 2001-2003 by Tim Jansen
email : tim@tjansen.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef KVNCVIEW_H
#define KVNCVIEW_H
#include "kremoteview.h"
#include <qcursor.h>
#include <qmap.h>
#include "pointerlatencyometer.h"
#include "hostpreferences.h"
#include "vnctypes.h"
#include "threads.h"
class QClipBoard;
class KVncView : public KRemoteView
{
Q_OBJECT
private:
ControllerThread m_cthread;
WriterThread m_wthread;
volatile bool m_quitFlag; // if set: all threads should die ASAP
QMutex m_framebufferLock;
bool m_enableFramebufferLocking;
bool m_enableClientCursor;
QSize m_framebufferSize;
bool m_scaling;
bool m_remoteMouseTracking;
bool m_viewOnly;
int m_buttonMask;
QMap<unsigned int,bool> m_mods;
QString m_host;
int m_port;
QClipboard *m_cb;
bool m_dontSendCb;
QCursor m_cursor;
DotCursorState m_cursorState;
PointerLatencyOMeter m_plom;
void mouseEvent(QMouseEvent*);
unsigned long toKeySym(QKeyEvent *k);
bool checkLocalKRfb();
void paintMessage(const QString &msg);
void showDotCursorInternal();
void unpressModifiers();
protected:
void paintEvent(QPaintEvent*);
void customEvent(QCustomEvent*);
void mousePressEvent(QMouseEvent*);
void mouseDoubleClickEvent(QMouseEvent*);
void mouseReleaseEvent(QMouseEvent*);
void mouseMoveEvent(QMouseEvent*);
void wheelEvent(QWheelEvent *);
void focusOutEvent(QFocusEvent *);
bool x11Event(XEvent*);
public:
KVncView(QWidget* parent=0, const char *name=0,
const QString &host = QString(""), int port = 5900,
const QString &password = QString::null,
Quality quality = QUALITY_UNKNOWN,
DotCursorState dotCursorState = DOT_CURSOR_AUTO,
const QString &encodings = QString::null);
~KVncView();
QSize sizeHint();
void drawRegion(int x, int y, int w, int h);
void lockFramebuffer();
void unlockFramebuffer();
void enableClientCursor(bool enable);
virtual bool scaling() const;
virtual bool supportsScaling() const;
virtual bool supportsLocalCursor() const;
virtual QSize framebufferSize();
void setRemoteMouseTracking(bool s);
bool remoteMouseTracking();
void configureApp(Quality q, const QString specialEncodings = QString::null);
void showDotCursor(DotCursorState state);
DotCursorState dotCursorState() const;
virtual void startQuitting();
virtual bool isQuitting();
virtual QString host();
virtual int port();
virtual bool start();
virtual bool viewOnly();
virtual bool startFullscreen();
static bool editPreferences( HostPrefPtr );
public slots:
virtual void enableScaling(bool s);
virtual void setViewOnly(bool s);
virtual void pressKey(XEvent *k);
private slots:
void clipboardChanged();
void selectionChanged();
};
#endif
|