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
|
/****************************************************************************
**
** Copyright (C) 2007-2008 Urs Wolfer <uwolfer @ kde.org>
** Copyright (C) 2009 Andrey Rijov <ANDron142@yandex.ru>
**
** This file is part of KDE, QtEMU, AQEMU.
**
** 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.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; see the file COPYING. If not, write to
** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
** Boston, MA 02110-1301, USA.
**
****************************************************************************/
#ifndef VNC_CLIENT_THREAD_H
#define VNC_CLIENT_THREAD_H
#include "Remote_View.h"
#include <QQueue>
#include <QThread>
#include <QImage>
#include <QMutex>
extern "C" {
#include <rfb/rfbclient.h>
}
class ClientEvent
{
public:
virtual ~ClientEvent();
virtual void fire(rfbClient*) = 0;
};
class KeyClientEvent : public ClientEvent
{
public:
KeyClientEvent(int key, int pressed)
: m_key(key), m_pressed(pressed) {}
void fire(rfbClient*);
private:
int m_key;
int m_pressed;
};
class PointerClientEvent : public ClientEvent
{
public:
PointerClientEvent(int x, int y, int buttonMask)
: m_x(x), m_y(y), m_buttonMask(buttonMask) {}
void fire(rfbClient*);
private:
int m_x;
int m_y;
int m_buttonMask;
};
class ClientCutEvent : public ClientEvent
{
public:
ClientCutEvent(char *text)
: text(text) {}
void fire(rfbClient*);
private:
char *text;
};
class VncClientThread: public QThread
{
Q_OBJECT
public:
explicit VncClientThread(QObject *parent = 0);
~VncClientThread();
const QImage image(int x = 0, int y = 0, int w = 0, int h = 0);
void setImage(const QImage &img);
void emitUpdated(int x, int y, int w, int h);
void emitGotCut(const QString &text);
void stop();
void setHost(const QString &host);
void setPort(int port);
void setQuality(RemoteView::Quality quality);
void setPassword(const QString &password) {
m_password = password;
}
const QString password() const {
return m_password;
}
RemoteView::Quality quality() const;
uint8_t *frameBuffer;
signals:
void imageUpdated(int x, int y, int w, int h);
void gotCut(const QString &text);
void passwordRequest();
void outputErrorMessage(const QString &message);
public slots:
void mouseEvent(int x, int y, int buttonMask);
void keyEvent(int key, bool pressed);
void clientCut(const QString &text);
protected:
void run();
private:
static rfbBool newclient(rfbClient *cl);
static void updatefb(rfbClient *cl, int x, int y, int w, int h);
static void cuttext(rfbClient *cl, const char *text, int textlen);
static char* passwdHandler(rfbClient *cl);
static void outputHandler(const char *format, ...);
QImage m_image;
rfbClient *cl;
QString m_host;
QString m_password;
int m_port;
QMutex mutex;
RemoteView::Quality m_quality;
QQueue<ClientEvent* > m_eventQueue;
volatile bool m_stopped;
volatile bool m_passwordError;
private slots:
void checkOutputErrorMessage();
};
#endif
|