increase local cursor size to 7x7px
[presencevnc] / src / vncview.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2007-2008 Urs Wolfer <uwolfer @ kde.org>
4 **
5 ** This file is part of KDE.
6 **
7 ** This program is free software; you can redistribute it and/or modify
8 ** it under the terms of the GNU General Public License as published by
9 ** the Free Software Foundation; either version 2 of the License, or
10 ** (at your option) any later version.
11 **
12 ** This program is distributed in the hope that it will be useful,
13 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ** GNU General Public License for more details.
16 **
17 ** You should have received a copy of the GNU General Public License
18 ** along with this program; see the file COPYING. If not, write to
19 ** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 ** Boston, MA 02110-1301, USA.
21 **
22 ****************************************************************************/
23
24 #include "vncview.h"
25
26 #include <QMessageBox>
27 #include <QInputDialog>
28 #define KMessageBox QMessageBox
29 #define error(parent, message, caption) \
30 critical(parent, caption, message)
31
32 #include <QApplication>
33 #include <QBitmap>
34 #include <QCheckBox>
35 #include <QDialog>
36 #include <QImage>
37 #include <QHBoxLayout>
38 #include <QVBoxLayout>
39 #include <QPainter>
40 #include <QMouseEvent>
41 #include <QPushButton>
42 #include <QEvent>
43 #include <QSettings>
44 #include <QTime>
45 #include <QTimer>
46
47
48 // Definition of key modifier mask constants
49 #define KMOD_Alt_R      0x01
50 #define KMOD_Alt_L      0x02
51 #define KMOD_Meta_L     0x04
52 #define KMOD_Control_L  0x08
53 #define KMOD_Shift_L    0x10
54
55 //local cursor width/height in px, should be an odd number
56 const int cursor_size = 7;
57
58 VncView::VncView(QWidget *parent, const KUrl &url, RemoteView::Quality quality)
59         : RemoteView(parent),
60         m_initDone(false),
61         m_buttonMask(0),
62         cursor_x(0),
63         cursor_y(0),
64         m_repaint(false),
65         m_quitFlag(false),
66         m_firstPasswordTry(true),
67         m_dontSendClipboard(false),
68         m_horizontalFactor(1.0),
69         m_verticalFactor(1.0),
70         m_forceLocalCursor(false),
71         force_full_repaint(false),
72         quality(quality)
73 {
74     m_url = url;
75     m_host = url.host();
76     m_port = url.port();
77
78     connect(&vncThread, SIGNAL(imageUpdated(int, int, int, int)), this, SLOT(updateImage(int, int, int, int)), Qt::BlockingQueuedConnection);
79     connect(&vncThread, SIGNAL(gotCut(const QString&)), this, SLOT(setCut(const QString&)), Qt::BlockingQueuedConnection);
80     connect(&vncThread, SIGNAL(passwordRequest()), this, SLOT(requestPassword()), Qt::BlockingQueuedConnection);
81     connect(&vncThread, SIGNAL(outputErrorMessage(QString)), this, SLOT(outputErrorMessage(QString)));
82
83     m_clipboard = QApplication::clipboard();
84     connect(m_clipboard, SIGNAL(selectionChanged()), this, SLOT(clipboardSelectionChanged()));
85     connect(m_clipboard, SIGNAL(dataChanged()), this, SLOT(clipboardDataChanged()));
86
87     reloadSettings();
88 }
89
90 VncView::~VncView()
91 {
92     unpressModifiers();
93
94     // Disconnect all signals so that we don't get any more callbacks from the client thread
95     vncThread.disconnect();
96
97     startQuitting();
98 }
99
100 void VncView::forceFullRepaint()
101 {
102         force_full_repaint = true;
103         repaint();
104 }
105
106 bool VncView::eventFilter(QObject *obj, QEvent *event)
107 {
108     if (m_viewOnly) {
109         if (event->type() == QEvent::KeyPress ||
110                 event->type() == QEvent::KeyRelease ||
111                 event->type() == QEvent::MouseButtonDblClick ||
112                 event->type() == QEvent::MouseButtonPress ||
113                 event->type() == QEvent::MouseButtonRelease ||
114                 event->type() == QEvent::Wheel ||
115                 event->type() == QEvent::MouseMove)
116             return true;
117     }
118     return RemoteView::eventFilter(obj, event);
119 }
120
121 QSize VncView::framebufferSize()
122 {
123     return m_frame.size();
124 }
125
126 QSize VncView::sizeHint() const
127 {
128     return size();
129 }
130
131 QSize VncView::minimumSizeHint() const
132 {
133     return size();
134 }
135
136 void VncView::scaleResize(int w, int h)
137 {
138     RemoteView::scaleResize(w, h);
139     
140     kDebug(5011) << "scaleResize(): " <<w << h;
141     if (m_scale) {
142         m_verticalFactor = (qreal) h / m_frame.height();
143         m_horizontalFactor = (qreal) w / m_frame.width();
144
145         m_verticalFactor = m_horizontalFactor = qMin(m_verticalFactor, m_horizontalFactor);
146
147         const qreal newW = m_frame.width() * m_horizontalFactor;
148         const qreal newH = m_frame.height() * m_verticalFactor;
149         /*
150         setMaximumSize(newW, newH); //This is a hack to force Qt to center the view in the scroll area
151         //also causes the widget's size to flicker
152         */
153         resize(newW, newH);
154     } 
155 }
156
157
158 void VncView::startQuitting()
159 {
160     kDebug(5011) << "about to quit";
161
162     const bool connected = status() == RemoteView::Connected;
163
164     setStatus(Disconnecting);
165
166     m_quitFlag = true;
167
168     if (connected) {
169         vncThread.stop();
170     }
171
172     vncThread.quit();
173
174     const bool quitSuccess = vncThread.wait(500);
175
176     kDebug(5011) << "startQuitting(): Quit VNC thread success:" << quitSuccess;
177
178     setStatus(Disconnected);
179 }
180
181 bool VncView::isQuitting()
182 {
183     return m_quitFlag;
184 }
185
186 bool VncView::start()
187 {
188     vncThread.setHost(m_host);
189     vncThread.setPort(m_port);
190
191     vncThread.setQuality(quality);
192
193     // set local cursor on by default because low quality mostly means slow internet connection
194     if (quality == RemoteView::Low) {
195         showDotCursor(RemoteView::CursorOn);
196     }
197
198     setStatus(Connecting);
199
200     vncThread.start();
201     return true;
202 }
203
204 bool VncView::supportsScaling() const
205 {
206     return true;
207 }
208
209 bool VncView::supportsLocalCursor() const
210 {
211     return true;
212 }
213
214 void VncView::requestPassword()
215 {
216     kDebug(5011) << "request password";
217
218     setStatus(Authenticating);
219
220     if (!m_url.password().isNull()) {
221         vncThread.setPassword(m_url.password());
222         return;
223     }
224
225         QSettings settings;
226         settings.beginGroup("hosts");
227         QString password = settings.value(QString("%1/password").arg(m_host), "").toString();
228         //check for saved password
229         if(m_firstPasswordTry and !password.isEmpty()) {
230                 kDebug(5011) << "Trying saved password";
231                 m_firstPasswordTry = false;
232                 vncThread.setPassword(password);
233                 return;
234         }
235         m_firstPasswordTry = false;
236
237         //build dialog
238         QDialog dialog(this);
239         dialog.setWindowTitle(tr("Password required"));
240
241         QLineEdit passwordbox;
242         passwordbox.setEchoMode(QLineEdit::Password);
243         passwordbox.setText(password);
244         QCheckBox save_password(tr("Save Password"));
245         save_password.setChecked(!password.isEmpty()); //offer to overwrite saved password
246         QPushButton ok_button(tr("Done"));
247         ok_button.setMaximumWidth(100);
248         connect(&ok_button, SIGNAL(clicked()),
249                 &dialog, SLOT(accept()));
250
251         QHBoxLayout layout1;
252         QVBoxLayout layout2;
253         layout2.addWidget(&passwordbox);
254         layout2.addWidget(&save_password);
255         layout1.addLayout(&layout2);
256         layout1.addWidget(&ok_button);
257         dialog.setLayout(&layout1);
258
259         if(dialog.exec()) { //dialog accepted
260                 password = passwordbox.text();
261
262                 if(save_password.isChecked()) {
263                         kDebug(5011) << "Saving password for host '" << m_host << "'";
264
265                         settings.setValue(QString("%1/password").arg(m_host), password);
266                         settings.sync();
267                 }
268
269                 vncThread.setPassword(password);
270         } else {
271                 startQuitting();
272         }
273 }
274
275 void VncView::outputErrorMessage(const QString &message)
276 {
277     kDebug(5011) << message;
278
279     if (message == "INTERNAL:APPLE_VNC_COMPATIBILTY") {
280         setCursor(localDotCursor());
281         m_forceLocalCursor = true;
282         return;
283     }
284
285     startQuitting();
286
287     emit errorMessage(i18n("VNC failure"), message);
288 }
289
290 void VncView::updateImage(int x, int y, int w, int h)
291 {
292         if(!QApplication::focusWidget()) { //no focus, we're probably minimized
293                 return;
294         }
295      //kDebug(5011) << "got update" << width() << height();
296
297      /*
298      static unsigned int frames = 0;
299      static unsigned int updates = 0;
300      static QTime time = QTime::currentTime();
301      updates++;
302      if(updates % 100 == 0)
303              kDebug(5011) << "u/s: " << updates/double(time.elapsed()) * 1000.0;
304 if(x == 0 and y == 0) {
305         frames++;
306      if(frames % 100 == 0)
307              kDebug(5011) << "f/s: " << frames/double(time.elapsed()) * 1000.0;
308 }
309 */
310
311     m_x = x;
312     m_y = y;
313     m_w = w;
314     m_h = h;
315
316     if (m_horizontalFactor != 1.0 || m_verticalFactor != 1.0) {
317         // If the view is scaled, grow the update rectangle to avoid artifacts
318         int x_extrapixels = 1.0/m_horizontalFactor+1;
319         int y_extrapixels = 1.0/m_verticalFactor+1;
320
321         m_x-=x_extrapixels;
322         m_y-=y_extrapixels;
323         m_w+=2*x_extrapixels;
324         m_h+=2*y_extrapixels;
325     }
326
327     m_frame = vncThread.image();
328
329     if (!m_initDone) {
330         setAttribute(Qt::WA_StaticContents);
331         setAttribute(Qt::WA_OpaquePaintEvent);
332         installEventFilter(this);
333
334         setCursor(((m_dotCursorState == CursorOn) || m_forceLocalCursor) ? localDotCursor() : Qt::BlankCursor);
335
336         setMouseTracking(true); // get mouse events even when there is no mousebutton pressed
337         setFocusPolicy(Qt::WheelFocus);
338         setStatus(Connected);
339 //         emit framebufferSizeChanged(m_frame.width(), m_frame.height());
340         emit connected();
341         
342         if (m_scale) {
343             if (parentWidget())
344                 scaleResize(parentWidget()->width(), parentWidget()->height());
345             else
346                 scaleResize(width(), height());
347         } 
348         
349         m_initDone = true;
350
351     }
352
353         static QSize old_frame_size = QSize();
354     if ((y == 0 && x == 0) && (m_frame.size() != old_frame_size)) {
355             old_frame_size = m_frame.size();
356         kDebug(5011) << "Updating framebuffer size";
357         if (m_scale) {
358             //setMaximumSize(QSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX));
359             if (parentWidget())
360                 scaleResize(parentWidget()->width(), parentWidget()->height());
361         } else {
362             kDebug(5011) << "Resizing: " << m_frame.width() << m_frame.height();
363             resize(m_frame.width(), m_frame.height());
364             //setMaximumSize(m_frame.width(), m_frame.height()); //This is a hack to force Qt to center the view in the scroll area
365             //setMinimumSize(m_frame.width(), m_frame.height());
366         }
367         emit framebufferSizeChanged(m_frame.width(), m_frame.height());
368     }
369
370     m_repaint = true;
371     repaint(qRound(m_x * m_horizontalFactor), qRound(m_y * m_verticalFactor), qRound(m_w * m_horizontalFactor), qRound(m_h * m_verticalFactor));
372     m_repaint = false;
373 }
374
375 void VncView::setViewOnly(bool viewOnly)
376 {
377     RemoteView::setViewOnly(viewOnly);
378
379     m_dontSendClipboard = viewOnly;
380
381     if (viewOnly)
382         setCursor(Qt::ArrowCursor);
383     else
384         setCursor(m_dotCursorState == CursorOn ? localDotCursor() : Qt::BlankCursor);
385 }
386
387 void VncView::showDotCursor(DotCursorState state)
388 {
389     RemoteView::showDotCursor(state);
390
391     setCursor(state == CursorOn ? localDotCursor() : Qt::BlankCursor);
392 }
393
394 void VncView::enableScaling(bool scale)
395 {
396     RemoteView::enableScaling(scale);
397
398     if (scale) {
399         //setMaximumSize(QSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX));
400         //setMinimumSize(1, 1);
401         if (parentWidget())
402             scaleResize(parentWidget()->width(), parentWidget()->height());
403             else
404                 scaleResize(width(), height());
405     } else {
406         m_verticalFactor = 1.0;
407         m_horizontalFactor = 1.0;
408
409         //setMaximumSize(m_frame.width(), m_frame.height()); //This is a hack to force Qt to center the view in the scroll area
410         //setMinimumSize(m_frame.width(), m_frame.height());
411         resize(m_frame.width(), m_frame.height());
412     }
413 }
414
415 void VncView::setCut(const QString &text)
416 {
417     m_dontSendClipboard = true;
418     m_clipboard->setText(text, QClipboard::Clipboard);
419     m_clipboard->setText(text, QClipboard::Selection);
420     m_dontSendClipboard = false;
421 }
422
423 void VncView::paintEvent(QPaintEvent *event)
424 {
425      //kDebug(5011) << "paint event: x: " << m_x << ", y: " << m_y << ", w: " << m_w << ", h: " << m_h;
426     if (m_frame.isNull() || m_frame.format() == QImage::Format_Invalid) {
427         kDebug(5011) << "no valid image to paint";
428         RemoteView::paintEvent(event);
429         return;
430     }
431
432     event->accept();
433
434     QPainter painter(this);
435
436     if (m_repaint and !force_full_repaint) {
437 //         kDebug(5011) << "normal repaint";
438         painter.drawImage(QRect(qRound(m_x*m_horizontalFactor), qRound(m_y*m_verticalFactor),
439                                 qRound(m_w*m_horizontalFactor), qRound(m_h*m_verticalFactor)), 
440                           m_frame.copy(m_x, m_y, m_w, m_h).scaled(qRound(m_w*m_horizontalFactor), 
441                                                                   qRound(m_h*m_verticalFactor),
442                                                                   Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
443     } else {
444          //kDebug(5011) << "resize repaint";
445         QRect rect = event->rect();
446         if (!force_full_repaint and (rect.width() != width() || rect.height() != height())) {
447           //   kDebug(5011) << "Partial repaint";
448             const int sx = rect.x()/m_horizontalFactor;
449             const int sy = rect.y()/m_verticalFactor;
450             const int sw = rect.width()/m_horizontalFactor;
451             const int sh = rect.height()/m_verticalFactor;
452             painter.drawImage(rect, 
453                               m_frame.copy(sx, sy, sw, sh).scaled(rect.width(), rect.height(),
454                                                                   Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
455         } else {
456              kDebug(5011) << "Full repaint" << width() << height() << m_frame.width() << m_frame.height();
457             painter.drawImage(QRect(0, 0, width(), height()), 
458                               m_frame.scaled(m_frame.width() * m_horizontalFactor, m_frame.height() * m_verticalFactor,
459                                              Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
460             force_full_repaint = false;
461         }
462     }
463
464         //draw local cursor ourselves, normal mouse pointer doesn't deal with scrolling
465         if((m_dotCursorState == CursorOn) || m_forceLocalCursor) {
466 #if QT_VERSION >= 0x040500
467                 painter.setCompositionMode(QPainter::RasterOp_SourceXorDestination);
468 #endif
469                 //rectangle size includes 1px pen width
470                 painter.drawRect(cursor_x*m_horizontalFactor - cursor_size/2, cursor_y*m_verticalFactor - cursor_size/2, cursor_size-1, cursor_size-1);
471         }
472
473     RemoteView::paintEvent(event);
474 }
475
476 void VncView::resizeEvent(QResizeEvent *event)
477 {
478     RemoteView::resizeEvent(event);
479     scaleResize(event->size().width(), event->size().height());
480     forceFullRepaint();
481 }
482
483 bool VncView::event(QEvent *event)
484 {
485     switch (event->type()) {
486     case QEvent::KeyPress:
487     case QEvent::KeyRelease:
488 //         kDebug(5011) << "keyEvent";
489         keyEventHandler(static_cast<QKeyEvent*>(event));
490         return true;
491         break;
492     case QEvent::MouseButtonDblClick:
493     case QEvent::MouseButtonPress:
494     case QEvent::MouseButtonRelease:
495     case QEvent::MouseMove:
496 //         kDebug(5011) << "mouseEvent";
497         mouseEventHandler(static_cast<QMouseEvent*>(event));
498         return true;
499         break;
500     case QEvent::Wheel:
501 //         kDebug(5011) << "wheelEvent";
502         wheelEventHandler(static_cast<QWheelEvent*>(event));
503         return true;
504         break;
505     case QEvent::WindowActivate: //input panel may have been closed, prevent IM from interfering with hardware keyboard
506         setAttribute(Qt::WA_InputMethodEnabled, false);
507         //fall through
508     default:
509         return RemoteView::event(event);
510     }
511 }
512
513 //call with e == 0 to flush held events
514 void VncView::mouseEventHandler(QMouseEvent *e)
515 {
516         static bool tap_detected = false;
517         static bool double_tap_detected = false;
518         static bool tap_drag_detected = false;
519         static QTime press_time;
520         static QTime up_time; //used for double clicks/tap&drag, for time after first tap
521
522         const int TAP_PRESS_TIME = 180;
523         const int DOUBLE_TAP_UP_TIME = 500;
524
525         if(!e) { //flush held taps
526                 if(tap_detected) {
527                         m_buttonMask |= 0x01;
528                         vncThread.mouseEvent(cursor_x, cursor_y, m_buttonMask);
529                         m_buttonMask &= 0xfe;
530                         vncThread.mouseEvent(cursor_x, cursor_y, m_buttonMask);
531                         tap_detected = false;
532                 } else if(double_tap_detected and press_time.elapsed() > TAP_PRESS_TIME) { //got tap + another press -> tap & drag
533                         m_buttonMask |= 0x01;
534                         vncThread.mouseEvent(cursor_x, cursor_y, m_buttonMask);
535                         double_tap_detected = false;
536                         tap_drag_detected = true;
537                 }
538                         
539                 return;
540         }
541
542         if(e->x() < 0 or e->y() < 0) { //QScrollArea tends to send invalid events sometimes...
543                 e->ignore();
544                 return;
545         }
546
547         cursor_x = qRound(e->x()/m_horizontalFactor);
548         cursor_y = qRound(e->y()/m_verticalFactor);
549         vncThread.mouseEvent(cursor_x, cursor_y, m_buttonMask); // plain move event
550
551         if(!disable_tapping and e->button() == Qt::LeftButton) { //implement touchpad-like input for left button
552                 if(e->type() == QEvent::MouseButtonPress or e->type() == QEvent::MouseButtonDblClick) {
553                         press_time.start();
554                         if(tap_detected and up_time.elapsed() < DOUBLE_TAP_UP_TIME) {
555                                 tap_detected = false;
556                                 double_tap_detected = true;
557
558                                 QTimer::singleShot(TAP_PRESS_TIME, this, SLOT(mouseEventHandler()));
559                         }
560                 } else if(e->type() == QEvent::MouseButtonRelease) {
561                         if(tap_drag_detected) {
562                                 m_buttonMask &= 0xfe;
563                                 vncThread.mouseEvent(cursor_x, cursor_y, m_buttonMask);
564                                 tap_drag_detected = false;
565                         } else if(double_tap_detected) { //double click
566                                 double_tap_detected = false;
567
568                                 m_buttonMask |= 0x01;
569                                 vncThread.mouseEvent(cursor_x, cursor_y, m_buttonMask);
570                                 m_buttonMask &= 0xfe;
571                                 vncThread.mouseEvent(cursor_x, cursor_y, m_buttonMask);
572                                 m_buttonMask |= 0x01;
573                                 vncThread.mouseEvent(cursor_x, cursor_y, m_buttonMask);
574                                 m_buttonMask &= 0xfe;
575                                 vncThread.mouseEvent(cursor_x, cursor_y, m_buttonMask);
576                         } else if(press_time.elapsed() < TAP_PRESS_TIME) { //tap
577                                 up_time.start();
578                                 tap_detected = true;
579                                 QTimer::singleShot(DOUBLE_TAP_UP_TIME, this, SLOT(mouseEventHandler()));
580                         }
581
582                 }
583         } else { //middle or right button, send directly
584                 if ((e->type() == QEvent::MouseButtonPress)) {
585                     if (e->button() & Qt::MidButton)
586                         m_buttonMask |= 0x02;
587                     if (e->button() & Qt::RightButton)
588                         m_buttonMask |= 0x04;
589                 } else if (e->type() == QEvent::MouseButtonRelease) {
590                     if (e->button() & Qt::MidButton)
591                         m_buttonMask &= 0xfd;
592                     if (e->button() & Qt::RightButton)
593                         m_buttonMask &= 0xfb;
594                 }
595                 vncThread.mouseEvent(cursor_x, cursor_y, m_buttonMask);
596         }
597
598         //prevent local cursor artifacts
599         static int old_cursor_x = cursor_x;
600         static int old_cursor_y = cursor_y;
601         if(((m_dotCursorState == CursorOn) || m_forceLocalCursor)
602         and (cursor_x != old_cursor_x or cursor_y != old_cursor_y)) {
603                 //clear last position
604                 repaint(old_cursor_x*m_horizontalFactor - cursor_size/2, old_cursor_y*m_verticalFactor - cursor_size/2, cursor_size, cursor_size);
605                 //and refresh new one
606                 repaint(cursor_x*m_horizontalFactor - cursor_size/2, cursor_y*m_verticalFactor - cursor_size/2, cursor_size, cursor_size);
607
608                 old_cursor_x = cursor_x; old_cursor_y = cursor_y;
609         }
610 }
611
612 void VncView::wheelEventHandler(QWheelEvent *event)
613 {
614     int eb = 0;
615     if (event->delta() < 0)
616         eb |= 0x10;
617     else
618         eb |= 0x8;
619
620     const int x = qRound(event->x() / m_horizontalFactor);
621     const int y = qRound(event->y() / m_verticalFactor);
622
623     vncThread.mouseEvent(x, y, eb | m_buttonMask);
624     vncThread.mouseEvent(x, y, m_buttonMask);
625 }
626
627 void VncView::keyEventHandler(QKeyEvent *e)
628 {
629     // strip away autorepeating KeyRelease; see bug #206598
630     if (e->isAutoRepeat() && (e->type() == QEvent::KeyRelease)) {
631         return;
632     }
633
634 // parts of this code are based on http://italc.sourcearchive.com/documentation/1.0.9.1/vncview_8cpp-source.html
635     rfbKeySym k = e->nativeVirtualKey();
636
637     // we do not handle Key_Backtab separately as the Shift-modifier
638     // is already enabled
639     if (e->key() == Qt::Key_Backtab) {
640         k = XK_Tab;
641     }
642
643     const bool pressed = (e->type() == QEvent::KeyPress);
644
645 #ifdef Q_WS_MAEMO_5
646     //don't send ISO_Level3_Shift (would break things like Win+0-9)
647     //also enable IM so symbol key works
648     if(k == 0xfe03) {
649             setAttribute(Qt::WA_InputMethodEnabled, pressed);
650             e->ignore();
651             return;
652     }
653 #endif
654
655     // handle modifiers
656     if (k == XK_Shift_L || k == XK_Control_L || k == XK_Meta_L || k == XK_Alt_L) {
657         if (pressed) {
658             m_mods[k] = true;
659         } else if (m_mods.contains(k)) {
660             m_mods.remove(k);
661         } else {
662             unpressModifiers();
663         }
664     }
665
666
667         int current_zoom = -1;
668         if(e->key() == Qt::Key_F8)
669                 current_zoom = left_zoom;
670         else if(e->key() == Qt::Key_F7)
671                 current_zoom = right_zoom;
672         else if (k) {
673         //      kDebug(5011) << "got '" << e->text() << "'.";
674                 vncThread.keyEvent(k, pressed);
675         } else {
676                 kDebug(5011) << "nativeVirtualKey() for '" << e->text() << "' failed.";
677                 return;
678         }       
679         
680         if(current_zoom == -1)
681                 return;
682
683         //handle zoom buttons
684         if(current_zoom == 0) { //left click
685                 if(pressed)
686                         m_buttonMask |= 0x01;
687                 else
688                         m_buttonMask &= 0xfe;
689                 vncThread.mouseEvent(cursor_x, cursor_y, m_buttonMask);
690         } else if(current_zoom == 1) { //right click
691                 if(pressed)
692                         m_buttonMask |= 0x04;
693                 else
694                         m_buttonMask &= 0xfb;
695                 vncThread.mouseEvent(cursor_x, cursor_y, m_buttonMask);
696         } else if(current_zoom == 2) { //middle click
697                 if(pressed)
698                         m_buttonMask |= 0x02;
699                 else
700                         m_buttonMask &= 0xfd;
701                 vncThread.mouseEvent(cursor_x, cursor_y, m_buttonMask);
702         } else if(current_zoom == 3 and pressed) { //wheel up
703                 int eb = 0x8;
704                 vncThread.mouseEvent(cursor_x, cursor_y, eb | m_buttonMask);
705                 vncThread.mouseEvent(cursor_x, cursor_y, m_buttonMask);
706         } else if(current_zoom == 4 and pressed) { //wheel down
707                 int eb = 0x10;
708                 vncThread.mouseEvent(cursor_x, cursor_y, eb | m_buttonMask);
709                 vncThread.mouseEvent(cursor_x, cursor_y, m_buttonMask);
710         } else if(current_zoom == 5) { //page up
711                 vncThread.keyEvent(0xff55, pressed);
712         } else if(current_zoom == 6) { //page down
713                 vncThread.keyEvent(0xff56, pressed);
714         }
715 }
716
717 void VncView::unpressModifiers()
718 {
719     const QList<unsigned int> keys = m_mods.keys();
720     QList<unsigned int>::const_iterator it = keys.constBegin();
721     while (it != keys.end()) {
722         vncThread.keyEvent(*it, false);
723         it++;
724     }
725     m_mods.clear();
726 }
727
728 void VncView::clipboardSelectionChanged()
729 {
730     if (m_status != Connected)
731         return;
732
733     if (m_clipboard->ownsSelection() || m_dontSendClipboard)
734         return;
735
736     const QString text = m_clipboard->text(QClipboard::Selection);
737
738     vncThread.clientCut(text);
739 }
740
741 void VncView::clipboardDataChanged()
742 {
743     if (m_status != Connected)
744         return;
745
746     if (m_clipboard->ownsClipboard() || m_dontSendClipboard)
747         return;
748
749     const QString text = m_clipboard->text(QClipboard::Clipboard);
750
751     vncThread.clientCut(text);
752 }
753
754 //fake key events
755 void VncView::sendKey(Qt::Key key)
756 {
757         //convert Qt::Key into x11 keysym
758         int k = 0;
759         switch(key) {
760         case Qt::Key_Escape:
761                 k = 0xff1b;
762                 break;
763         case Qt::Key_Tab:
764                 k = 0xff09;
765                 break;
766         case Qt::Key_PageUp:
767                 k = 0xff55;
768                 break;
769         case Qt::Key_PageDown:
770                 k = 0xff56;
771                 break;
772         case Qt::Key_Return:
773                 k = 0xff0d;
774                 break;
775         case Qt::Key_Insert:
776                 k = 0xff63;
777                 break;
778         case Qt::Key_Delete:
779                 k = 0xffff;
780                 break;
781         case Qt::Key_Home:
782                 k = 0xff50;
783                 break;
784         case Qt::Key_End:
785                 k = 0xff57;
786                 break;
787         case Qt::Key_Backspace:
788                 k = 0xff08;
789                 break;
790         case Qt::Key_F1:
791         case Qt::Key_F2:
792         case Qt::Key_F3:
793         case Qt::Key_F4:
794         case Qt::Key_F5:
795         case Qt::Key_F6:
796         case Qt::Key_F7:
797         case Qt::Key_F8:
798         case Qt::Key_F9:
799         case Qt::Key_F10:
800         case Qt::Key_F11:
801         case Qt::Key_F12:
802                 k = 0xffbe + int(key - Qt::Key_F1);
803                 break;
804         case Qt::Key_Pause:
805                 k = 0xff13;
806                 break;
807         case Qt::Key_Print:
808                 k = 0xff61;
809                 break;
810         case Qt::Key_Menu:
811                 k = 0xff67;
812                 break;
813         case Qt::Key_Meta:
814         case Qt::MetaModifier:
815                 k = XK_Super_L;
816                 break;
817         case Qt::Key_Alt:
818         case Qt::AltModifier:
819                 k = XK_Alt_L;
820                 break;
821         case Qt::Key_Control:
822         case Qt::ControlModifier:
823                 k = XK_Control_L;
824                 break;
825         default:
826                 kDebug(5011) << "sendKey(): Unhandled Qt::Key value " << key;
827                 return;
828         }
829
830         if (k == XK_Shift_L || k == XK_Control_L || k == XK_Meta_L || k == XK_Alt_L || k == XK_Super_L) {
831                 if (m_mods.contains(k)) { //release
832                         m_mods.remove(k);
833                         vncThread.keyEvent(k, false);
834                 } else { //press
835                         m_mods[k] = true;
836                         vncThread.keyEvent(k, true);
837                 }
838         } else { //normal key
839                 vncThread.keyEvent(k, true);
840                 vncThread.keyEvent(k, false);
841         }
842 }
843
844 void VncView::sendKeySequence(QKeySequence keys)
845 {
846         Q_ASSERT(keys.count() <= 1); //we can only handle a single combination
847
848         //to get at individual key presses, we split 'keys' into its components
849         QList<int> key_list;
850         for(int i = 0; ; i++) {
851                 QString k = keys.toString().section('+', i, i);
852                 if(k.isEmpty())
853                         break;
854                 //kDebug(5011) << "found key: " << k;
855                 if(k == "Alt") {
856                         key_list.append(Qt::Key_Alt);
857                 } else if(k == "Ctrl") {
858                         key_list.append(Qt::Key_Control);
859                 } else if(k == "Meta") {
860                         key_list.append(Qt::Key_Meta);
861                 } else {
862                         key_list.append(QKeySequence(k)[0]);
863                 }
864         }
865         
866         for(int i = 0; i < key_list.count(); i++)
867                 sendKey(Qt::Key(key_list.at(i)));
868
869         //release modifiers (everything before final key)
870         for(int i = key_list.count()-2; i >= 0; i--)
871                 sendKey(Qt::Key(key_list.at(i)));
872 }
873
874 void VncView::reloadSettings()
875 {
876         QSettings settings;
877         left_zoom = settings.value("left_zoom", 0).toInt();
878         right_zoom = settings.value("right_zoom", 1).toInt();
879         disable_tapping = settings.value("disable_tapping", false).toBool();
880
881         bool always_show_local_cursor = settings.value("always_show_local_cursor", false).toBool();
882         if(always_show_local_cursor)
883                 showDotCursor(CursorOn);
884 }
885
886 //convert commitString into keyevents
887 void VncView::inputMethodEvent(QInputMethodEvent *event)
888 {
889         //TODO handle replacements
890         //NOTE for the return key to work Qt needs to enable multiline input, which only works for Q(Plain)TextEdit
891
892         //kDebug(5011) << event->commitString() << "|" << event->preeditString() << "|" << event->replacementLength() << "|" << event->replacementStart();
893         QString letters = event->commitString();
894         for(int i = 0; i < letters.length(); i++) {
895                 char k = letters.at(i).toLatin1(); //works with all 'normal' keys, not umlauts.
896                 if(!k) {
897                         kDebug(5011) << "unhandled key";
898                         continue;
899                 }
900                 vncThread.keyEvent(k, true);
901                 vncThread.keyEvent(k, false);
902         }
903 }
904
905
906 #include "moc_vncview.cpp"