玉兔远程控制 0.0.31
|
Public 槽 | |
virtual void | slotConnected () |
virtual void | slotDisConnected () |
virtual void | slotReadyRead () |
virtual void | slotClipBoardChanged () override |
void | slotChannelError (int nErr, const QString &szErr) |
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 成员函数 | |
CConnectVnc (CConnecterThread *pConnecter) | |
virtual void | initDone () override |
virtual void | authSuccess () override |
virtual void | resizeFramebuffer () override |
virtual void | getUserPasswd (bool secure, std::string *user, std::string *password) override |
virtual int | getX509File (std::string *ca, std::string *crl) override |
virtual bool | showMsgBox (rfb::MsgBoxFlags flags, const char *title, const char *text) override |
virtual void | setName (const char *name) override |
virtual void | framebufferUpdateStart () override |
virtual void | framebufferUpdateEnd () override |
virtual void | setColourMapEntries (int firstColour, int nColours, uint16_t *rgbs) override |
virtual void | bell () override |
virtual void | setLEDState (unsigned int state) override |
virtual void | setCursor (int width, int height, const rfb::Point &hotspot, const uint8_t *data) override |
virtual void | setCursorPos (const rfb::Point &pos) override |
virtual void | fence (uint32_t flags, unsigned int len, const uint8_t data[]) override |
virtual void | handleClipboardRequest () override |
virtual void | handleClipboardAnnounce (bool available) override |
virtual void | handleClipboardData (const char *data) override |
Public 成员函数 继承自 CConnectDesktop | |
CConnectDesktop (CConnecter *pConnecter, bool bDirectConnection=true) | |
virtual bool | event (QEvent *event) override |
Public 成员函数 继承自 CConnect | |
CConnect (CConnecter *pConnecter) | |
Protected 成员函数 | |
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 |
virtual OnInitReturnValue | OnInit () override |
具体的插件实现连接初始化 | |
virtual int | OnClean () override |
清理 | |
virtual int | OnProcess () override |
插件连接的具体操作处理。因为此插件是非Qt事件,所以在此函数中等待。 | |
virtual int | WakeUp () override |
唤醒连接线程(后台线程) | |
Private 成员函数 | |
quint32 | TranslateRfbKey (quint32 inkey, bool modifier) |
CConnectVnc::TranslateRfbKey | |
QString | ConnectInformation () |
int | SetPara () |
void | autoSelectFormatAndEncoding () |
void | updatePixelFormat () |
int | SocketInit () |
int | SetChannelConnect (QSharedPointer< CChannel > channel) |
int | IceInit () |
int | SSHInit () |
Private 属性 | |
QSharedPointer< CChannel > | m_DataChannel |
QSharedPointer< rdr::InStream > | m_InStream |
QSharedPointer< rdr::OutStream > | m_OutStream |
CParameterVnc * | m_pPara |
额外继承的成员函数 | |
信号 继承自 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 | |
在文件 ConnectVnc.h 第 23 行定义.
|
explicit |
在文件 ConnectVnc.cpp 第 93 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 121 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 1297 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 635 行定义.
|
private |
在文件 ConnectVnc.cpp 第 942 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 669 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 755 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 745 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 682 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 700 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 1279 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 1287 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 1247 行定义.
|
private |
在文件 ConnectVnc.cpp 第 213 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 594 行定义.
|
overrideprotectedvirtual |
重载 CConnectDesktop .
在文件 ConnectVnc.cpp 第 906 行定义.
|
overrideprotectedvirtual |
重载 CConnectDesktop .
在文件 ConnectVnc.cpp 第 924 行定义.
|
overrideprotectedvirtual |
重载 CConnectDesktop .
在文件 ConnectVnc.cpp 第 840 行定义.
|
overrideprotectedvirtual |
重载 CConnectDesktop .
在文件 ConnectVnc.cpp 第 797 行定义.
|
overrideprotectedvirtual |
重载 CConnectDesktop .
在文件 ConnectVnc.cpp 第 823 行定义.
|
overrideprotectedvirtual |
|
overrideprotectedvirtual |
具体的插件实现连接初始化
实现了 CConnect.
在文件 ConnectVnc.cpp 第 191 行定义.
|
overrideprotectedvirtual |
插件连接的具体操作处理。因为此插件是非Qt事件,所以在此函数中等待。
重载 CConnect .
在文件 ConnectVnc.cpp 第 448 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 614 行定义.
|
private |
在文件 ConnectVnc.cpp 第 406 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 630 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 647 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 663 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 640 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 733 行定义.
|
private |
在文件 ConnectVnc.cpp 第 126 行定义.
|
overridevirtual |
在文件 ConnectVnc.cpp 第 710 行定义.
|
slot |
在文件 ConnectVnc.cpp 第 584 行定义.
|
overridevirtualslot |
在文件 ConnectVnc.cpp 第 1238 行定义.
|
virtualslot |
在文件 ConnectVnc.cpp 第 474 行定义.
|
virtualslot |
在文件 ConnectVnc.cpp 第 511 行定义.
|
virtualslot |
在文件 ConnectVnc.cpp 第 528 行定义.
|
private |
在文件 ConnectVnc.cpp 第 258 行定义.
|
private |
在文件 ConnectVnc.cpp 第 349 行定义.
|
private |
|
private |
在文件 ConnectVnc.cpp 第 769 行定义.
|
overrideprotectedvirtual |
|
overrideprotectedvirtual |
重载 CConnectDesktop .
在文件 ConnectVnc.cpp 第 864 行定义.
|
private |
在文件 ConnectVnc.h 第 86 行定义.
|
private |
在文件 ConnectVnc.h 第 87 行定义.
|
private |
在文件 ConnectVnc.h 第 88 行定义.
|
private |
在文件 ConnectVnc.h 第 94 行定义.