玉兔远程控制 0.0.31
|
Public 槽 | |
virtual void | slotClipBoardChanged () override |
virtual void | mousePressEvent (QMouseEvent *event) override |
virtual void | mouseReleaseEvent (QMouseEvent *event) override |
virtual void | mouseMoveEvent (QMouseEvent *event) override |
virtual void | wheelEvent (QWheelEvent *event) override |
virtual void | keyPressEvent (QKeyEvent *event) override |
virtual void | keyReleaseEvent (QKeyEvent *event) override |
void | slotConnectProxyServer (QString szHost, quint16 nPort) |
[connect local socket server] | |
Public 槽 继承自 CConnectDesktop | |
virtual void | slotClipBoardChanged ()=0 |
当剪切板发生改变时调用 | |
virtual void | slotMousePressEvent (QMouseEvent *event, QPoint pos) |
virtual void | slotMouseReleaseEvent (QMouseEvent *event, QPoint pos) |
virtual void | slotMouseMoveEvent (QMouseEvent *event, QPoint pos) |
virtual void | slotWheelEvent (QWheelEvent *event, QPoint pos) |
virtual void | slotKeyPressEvent (QKeyEvent *event) |
virtual void | slotKeyReleaseEvent (QKeyEvent *event) |
Public 槽 继承自 CConnect | |
virtual int | Connect () |
开始连接。根据 OnInit() 返回值来决定是否开始定时器来支持非 qt 事件 | |
virtual int | Disconnect () |
断开 | |
Public 成员函数 | |
CConnectLibVNCServer (CConnecterLibVNCServer *pConnecter) | |
Public 成员函数 继承自 CConnectDesktop | |
CConnectDesktop (CConnecter *pConnecter, bool bDirectConnection=true) | |
virtual bool | event (QEvent *event) override |
Public 成员函数 继承自 CConnect | |
CConnect (CConnecter *pConnecter) | |
静态 Public 成员函数 | |
static rfbBool | cb_resize (rfbClient *client) |
static void | cb_update (rfbClient *client, int x, int y, int w, int h) |
static void | cb_kbd_leds (rfbClient *client, int value, int pad) |
static void | cb_bell (struct _rfbClient *client) |
static void | cb_text_chat (rfbClient *client, int value, char *text) |
static void | cb_got_selection (rfbClient *client, const char *text, int len) |
static rfbCredential * | cb_get_credential (rfbClient *cl, int credentialType) |
static char * | cb_get_password (rfbClient *client) |
static rfbBool | cb_cursor_pos (rfbClient *client, int x, int y) |
static void | cb_got_cursor_shape (rfbClient *client, int xhot, int yhot, int width, int height, int bytesPerPixel) |
Private 成员函数 | |
virtual OnInitReturnValue | OnInit () override |
具体的插件实现连接初始化 | |
virtual int | OnClean () override |
清理 | |
virtual int | OnProcess () override |
插件连接的具体操作处理。因为此插件是非Qt事件,所以在此函数中等待。 | |
virtual int | WakeUp () override |
唤醒连接线程(后台线程) | |
int | OnSize () |
Private 属性 | |
rfbClient * | m_pClient |
QImage | m_Image |
CParameterLibVNCServer * | m_pParameter |
QTcpSocket | m_tcpSocket |
QTcpServer | m_Server |
QTcpSocket * | m_pConnect |
Channel::CEvent | m_Event |
额外继承的成员函数 | |
信号 继承自 CConnectDesktop | |
void | sigSetDesktopSize (int width, int height) |
void | sigServerName (const QString &szName) |
void | sigUpdateRect (const QRect &r, const QImage &image) |
通知视图,图像更新 | |
void | sigUpdateRect (const QImage &image) |
Notify the CFrmView update image | |
void | sigUpdateCursor (const QCursor &cursor) |
void | sigUpdateCursorPosition (const QPoint &pos) |
void | sigUpdateLedState (unsigned int state) |
void | sigSetClipboard (QMimeData *data) |
信号 继承自 CConnect | |
void | sigConnected () |
当插件连接成功后触发。仅由插件触发 | |
void | sigDisconnect () |
通知用户断开连接。仅由插件触发。 当从插件中需要要断开连接时触发。例如:对端断开连接、重置连接或者连接出错。 | |
void | sigDisconnected () |
断开连接成功信号。仅由插件触发 | |
void | sigError (const int nError, const QString &szError=QString()) |
当有错误产生时触发 | |
void | sigInformation (const QString &szInfo) |
从后台线程中触发在主线程中显示信息,不阻塞后台线程 | |
void | sigShowMessageBox (const QString &szTitle, const QString &szMessage, const QMessageBox::Icon &icon=QMessageBox::Information) |
从后台线程中触发在主线程中显示消息对话框(QMessageBox),不阻塞后台线程 | |
void | sigBlockShowMessageBox (const QString &szTitle, const QString &szMessage, QMessageBox::StandardButtons buttons, QMessageBox::StandardButton &nRet, bool &checkBox, QString checkBoxContext=QString()) |
阻塞后台线程,并在前台线程中显示消息对话框(QMessageBox) | |
void | sigBlockInputDialog (const QString &szTitle, const QString &szLable, const QString &szMessage, QString &szText) |
阻塞后台线程,并在前台线程中显示输入对话框 (QInputDialog) | |
void | sigBlockShowWidget (const QString &className, int &nRet, void *pContext) |
阻塞后台线程,并在前台线程中显示窗口。 | |
Protected 类型 继承自 CConnect | |
enum class | OnInitReturnValue { Fail = -1 , Success = 0 , UseOnProcess = Success , NotUseOnProcess = 1 } |
Protected 槽 继承自 CConnect | |
virtual void | slotTimeOut () |
一个非 Qt 事件处理,它调用 OnProcess(),并根据其返回值开始新的定时器。 如果 CConnect 没有一个非 Qt 事件循环(就是普通的循环处理), 可以重载它,或者 OnInit() 返回值大于 0 | |
Protected 成员函数 继承自 CConnectDesktop | |
virtual void | mousePressEvent (QMouseEvent *event) |
virtual void | mouseReleaseEvent (QMouseEvent *event) |
virtual void | mouseMoveEvent (QMouseEvent *event) |
virtual void | wheelEvent (QWheelEvent *event) |
virtual void | keyPressEvent (QKeyEvent *event) |
virtual void | keyReleaseEvent (QKeyEvent *event) |
在文件 ConnectLibVNCServer.h 第 17 行定义.
|
explicit |
在文件 ConnectLibVNCServer.cpp 第 43 行定义.
|
overridevirtual |
在文件 ConnectLibVNCServer.cpp 第 59 行定义.
|
static |
在文件 ConnectLibVNCServer.cpp 第 425 行定义.
|
static |
在文件 ConnectLibVNCServer.cpp 第 505 行定义.
|
static |
在文件 ConnectLibVNCServer.cpp 第 435 行定义.
|
static |
在文件 ConnectLibVNCServer.cpp 第 462 行定义.
|
static |
在文件 ConnectLibVNCServer.cpp 第 513 行定义.
|
static |
在文件 ConnectLibVNCServer.cpp 第 410 行定义.
|
static |
在文件 ConnectLibVNCServer.cpp 第 420 行定义.
|
static |
在文件 ConnectLibVNCServer.cpp 第 391 行定义.
|
static |
在文件 ConnectLibVNCServer.cpp 第 430 行定义.
|
static |
在文件 ConnectLibVNCServer.cpp 第 399 行定义.
|
overridevirtualslot |
在文件 ConnectLibVNCServer.cpp 第 909 行定义.
|
overridevirtualslot |
在文件 ConnectLibVNCServer.cpp 第 920 行定义.
|
overridevirtualslot |
在文件 ConnectLibVNCServer.cpp 第 597 行定义.
|
overridevirtualslot |
在文件 ConnectLibVNCServer.cpp 第 571 行定义.
|
overridevirtualslot |
在文件 ConnectLibVNCServer.cpp 第 588 行定义.
|
overrideprivatevirtual |
|
overrideprivatevirtual |
具体的插件实现连接初始化
[Use SSH Tunnel]
[Use SSH Tunnel]
实现了 CConnect.
在文件 ConnectLibVNCServer.cpp 第 70 行定义.
|
overrideprivatevirtual |
插件连接的具体操作处理。因为此插件是非Qt事件,所以在此函数中等待。
重载 CConnect .
在文件 ConnectLibVNCServer.cpp 第 315 行定义.
|
private |
在文件 ConnectLibVNCServer.cpp 第 481 行定义.
|
overridevirtualslot |
在文件 ConnectLibVNCServer.cpp 第 377 行定义.
|
slot |
[connect local socket server]
在文件 ConnectLibVNCServer.cpp 第 932 行定义.
|
overrideprivatevirtual |
|
overridevirtualslot |
在文件 ConnectLibVNCServer.cpp 第 613 行定义.
|
private |
在文件 ConnectLibVNCServer.h 第 68 行定义.
|
private |
在文件 ConnectLibVNCServer.h 第 60 行定义.
|
private |
在文件 ConnectLibVNCServer.h 第 59 行定义.
|
private |
在文件 ConnectLibVNCServer.h 第 66 行定义.
|
private |
在文件 ConnectLibVNCServer.h 第 63 行定义.
|
private |
在文件 ConnectLibVNCServer.h 第 65 行定义.
|
private |
在文件 ConnectLibVNCServer.h 第 64 行定义.