Ability to build a Qt-only version of the KRDC VNC backend.
[kdenetwork.git] / krdc / vnc / vncview.h
blobc438cb7bd00db0c94a19d0890866cd308bf28986
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.
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.
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.
22 ****************************************************************************/
24 #ifndef VNCVIEW_H
25 #define VNCVIEW_H
27 #include "remoteview.h"
28 #include "vncclientthread.h"
30 #ifndef QTONLY
31 #include "vnchostpreferences.h"
32 #endif
34 #include <QClipboard>
36 extern "C" {
37 #include <rfb/rfbclient.h>
40 class VncView: public RemoteView
42 Q_OBJECT
44 public:
45 explicit VncView(QWidget *parent = 0, const KUrl &url = KUrl());
46 ~VncView();
48 QSize framebufferSize();
49 QSize sizeHint() const;
50 QSize minimumSizeHint() const;
51 void startQuitting();
52 bool isQuitting();
53 bool start();
54 bool supportsLocalCursor() const;
55 void keyEvent(QKeyEvent *e);
57 protected:
58 void paintEvent(QPaintEvent *event);
59 void focusOutEvent(QFocusEvent *event);
60 void mouseMoveEvent(QMouseEvent *event);
61 void mousePressEvent(QMouseEvent *event);
62 void mouseDoubleClickEvent(QMouseEvent *event);
63 void mouseReleaseEvent(QMouseEvent *event);
64 void wheelEvent(QWheelEvent *event);
65 void keyPressEvent(QKeyEvent *event);
66 void keyReleaseEvent(QKeyEvent *event);
67 bool eventFilter(QObject *obj, QEvent *event);
69 private:
70 VncClientThread vncThread;
71 QClipboard *m_clipboard;
72 bool m_initDone;
73 int m_buttonMask;
74 int m_x, m_y, m_w, m_h;
75 bool m_repaint;
76 bool m_quitFlag;
77 bool m_firstPasswordTry;
78 bool m_dontSendClipboard;
79 #ifndef QTONLY
80 VncHostPreferences *m_hostPreferences;
81 #endif
82 QImage m_frame;
84 private slots:
85 void updateImage(int x, int y, int w, int h);
86 void setCut(const QString &text);
87 void requestPassword();
88 void outputErrorMessage(const QString &message);
89 void mouseEvent(QMouseEvent *event);
90 void clipboardSelectionChanged();
91 void clipboardDataChanged();
94 #endif