summaryrefslogtreecommitdiffstats
path: root/src/client/vnc/vncwindow.cpp
blob: 2f2b427cec075de81aaaf1ee2cabcc9bd8360f86 (plain) (blame)
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
/*
 # Copyright (c) 2009, 2010 - OpenSLX Project, Computer Center University of
 # Freiburg
 #
 # This program is free software distributed under the GPL version 2.
 # See http://openslx.org/COPYING
 #
 # If you have any feedback please consult http://openslx.org/feedback and
 # send your suggestions, praise, or complaints to feedback@openslx.org
 #
 # General information about OpenSLX can be found at http://openslx.org/
 # -----------------------------------------------------------------------------
 # clientVNCViewer.cpp
 #  - connetct to vnc server and show remote screen (window/full)
 # -----------------------------------------------------------------------------
 */

#include "vncwindow.h"
#include "vncthread.h"

VncWindow::VncWindow(QWidget *parent) :
	QDialog(parent), _vncWorker(NULL), _viewOnly(true), _buttonMask(0), _clientId(0), _redrawTimer(0)
{
	//
}

VncWindow::~VncWindow()
{
	//
}

////////////////////////////////////////////////////////////////////////////////
// Public

void VncWindow::open(const QString& host, int port, const QString& passwd, bool ro, bool fullscreen, const QString& caption, const int clientId)
{
	// start thread for vnc-updates
	this->onProjectionStopped();
	_clientId = clientId;
	_vncWorker = new VncThread(host, port, passwd, 1);
	connect(_vncWorker, SIGNAL(projectionStopped()), this, SLOT(onProjectionStopped()), Qt::QueuedConnection);
	connect(_vncWorker, SIGNAL(projectionStarted()), this, SLOT(onProjectionStarted()), Qt::QueuedConnection);

	_tcpTimeoutTimer = startTimer(4000);
	_vncWorker->start(QThread::LowPriority);
	//_rfbclient = _thread->getRfbClient();
	//installEventFilter(this);
	setMouseTracking(true); // get mouse events even when there is no mousebutton pressed
	setFocusPolicy(Qt::WheelFocus);  //needed?!?

	setWindowTitle(caption);

	setAttribute(Qt::WA_OpaquePaintEvent);

	if (fullscreen)
	{
		setWindowFlags(Qt::WindowStaysOnTopHint);
		showFullScreen();
		activateWindow();
		raise();
	}
	else
	{
		resize(800, 600);
		showNormal();
	}

	this->show();
	_vncWorker->setTargetSize(this->size());

	connect(_vncWorker, SIGNAL(imageUpdated(const int, const int, const int, const int)), this,
		 SLOT(onUpdateImage(const int, const int, const int, const int)),
	   Qt::QueuedConnection);
}

void VncWindow::closeEvent(QCloseEvent *e)
{
	e->ignore();
	qDebug("Closing VNC viewer window.");
	this->setVisible(false);
	this->onProjectionStopped();
	emit running(false, _clientId);
}

void VncWindow::onUpdateImage(const int x, const int y, const int w, const int h)
{
	this->repaint(x, y, w, h);
}

/**
 * VNC Thread successfully connected to remote end - projection will start
 */
void VncWindow::onProjectionStarted()
{
	emit running(true, _clientId);
	_redrawTimer = startTimer(5000);
}

void VncWindow::onProjectionStopped()
{
	if(_vncWorker == NULL)
		return;

 _vncWorker->blockSignals(true);
 _vncWorker->stop();
 _vncWorker = NULL;
 if(_redrawTimer != 0)
 {
	 killTimer(_redrawTimer);
	 _redrawTimer = 0;
 }
 this->close();

}

////////////////////////////////////////////////////////////////////////////////
// Protected
void VncWindow::close()
{
	if (this->isVisible())
		QDialog::close();
    else
        emit running(false, _clientId);

}
void VncWindow::timerEvent(QTimerEvent *event)
{
	if (event->timerId() == _redrawTimer)
	{
		if (this->isVisible())
			this->repaint();
	}
	else if (event->timerId() == _tcpTimeoutTimer)
	{
		killTimer(_tcpTimeoutTimer);
		if (_vncWorker != NULL && !_vncWorker->isConnected()){
			this->onProjectionStopped();
		}
	}
	else
		killTimer(event->timerId());
}

void VncWindow::paintEvent(QPaintEvent *event)
{
	const QRect &r = event->rect();
	this->draw(r.left(), r.top(), r.width(), r.height());
	event->accept();
}

void VncWindow::resizeEvent(QResizeEvent* event)
{
	_vncWorker->setTargetSize(event->size());
}

void VncWindow::draw(const int x, const int y, const int w, const int h)
{
	if (_vncWorker == NULL)
		return;
	QPainter painter(this);
	painter.drawImage(x, y, _vncWorker->getImage(), x, y, w, h);
	//painter.drawRect(x,y,w,h); // for debugging updated area
}

//returns true if event was processed
/*bool VncWindow::event(QEvent *event)
 {
 switch (event->type()) {
 case QEvent::KeyPress:
 case QEvent::KeyRelease:

 keyEventHandler(static_cast<QKeyEvent*>(event));
 return true;
 break;
 case QEvent::MouseButtonDblClick:
 case QEvent::MouseButtonPress:
 case QEvent::MouseButtonRelease:
 case QEvent::MouseMove:
 mouseEventHandler(static_cast<QMouseEvent*>(event));
 return true;
 break;
 case QEvent::Wheel:
 wheelEventHandler(static_cast<QWheelEvent*>(event));
 return true;
 break;
 default:
 return false;
 }
 }*/

//handles mouseevents
void VncWindow::mouseEventHandler(QMouseEvent *e)
{
	if (e->type() != QEvent::MouseMove)
	{
		if ((e->type() == QEvent::MouseButtonPress) || (e->type() == QEvent::MouseButtonDblClick))
		{
			if (e->button() & Qt::LeftButton)
				_buttonMask |= 0x01;
			if (e->button() & Qt::MidButton)
				_buttonMask |= 0x02;
			if (e->button() & Qt::RightButton)
				_buttonMask |= 0x04;
		}
		else if (e->type() == QEvent::MouseButtonRelease)
		{
			if (e->button() & Qt::LeftButton)
				_buttonMask &= 0xfe;
			if (e->button() & Qt::MidButton)
				_buttonMask &= 0xfd;
			if (e->button() & Qt::RightButton)
				_buttonMask &= 0xfb;
		}
	}
	_vncWorker->mouseEvent(e->x(), e->y(), _buttonMask);
}

//handles mousewheel
void VncWindow::wheelEventHandler(QWheelEvent *event)
{
	int eb = 0;
	if (event->delta() < 0)
		eb |= 0x10;
	else
		eb |= 0x8;

	const int x = event->x();
	const int y = event->y();

	_vncWorker->mouseEvent(x, y, eb | _buttonMask);
	_vncWorker->mouseEvent(x, y, _buttonMask);
}

//Handles keypress
void VncWindow::keyEventHandler(QKeyEvent *e)
{
	rfbKeySym k = e->nativeVirtualKey();

	// do not handle Key_Backtab separately because the Shift-modifier
	// is already enabled
	if (e->key() == Qt::Key_Backtab)
	{
		k = XK_Tab;
	}

	const bool pressed = (e->type() == QEvent::KeyPress);

	// handle modifiers
	if (k == XK_Shift_L || k == XK_Control_L || k == XK_Meta_L || k == XK_Alt_L)
	{
		if (pressed)
		{
			_modkeys[k] = true;
		}
		else if (_modkeys.contains(k))
		{
			_modkeys.remove(k);
		}
		else
		{
			unpressModifiers();
		}
	}

	if (k)
	{
		_vncWorker->keyEvent(k, pressed);
	}
}

void VncWindow::keyPressEvent(QKeyEvent* event)
{
	if (event->key() == Qt::Key_Escape)
	{
		_clientId = 0;
		this->close();
	}
}

//removes modifier keys which have been pressed
void VncWindow::unpressModifiers()
{
	const QList<unsigned int> keys = _modkeys.keys();
	QList<unsigned int>::const_iterator it = keys.constBegin();
	while (it != keys.end())
	{
		_vncWorker->keyEvent(*it, false);
		it++;
	}
	_modkeys.clear();
}

//(QT Function) Filters events, if _viewOnly is set, true is returned and the event is ignored
//TODO use this function when implementing viewonly switch
bool VncWindow::eventFilter(QObject *obj, QEvent *event)
{
	if (_viewOnly)
	{
		if (event->type() == QEvent::KeyPress || event->type() == QEvent::KeyRelease
		   || event->type() == QEvent::MouseButtonDblClick || event->type() == QEvent::MouseButtonPress
		   || event->type() == QEvent::MouseButtonRelease || event->type() == QEvent::Wheel
		   || event->type() == QEvent::MouseMove)
			return true;
	}

	return false;
	//return RemoteView::eventFilter(obj, event);
}