|
Rabbit Remote Control 0.1.0-bate14
|


Public Slots | |
| virtual void | slotConnected () |
| virtual void | slotDisConnected () |
| virtual void | slotReadyRead () |
| virtual void | slotClipBoardChanged () override |
| void | slotChannelError (int nErr, const QString &szErr) |
| Public Slots inherited from CBackendDesktop | |
| virtual void | slotClipBoardChanged ()=0 |
| Be called when the clip board change. | |
| 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) |
| virtual void | slotInputMethodEvent (QInputMethodEvent *event) |
Public Member Functions | |
| CBackendVnc (COperateDesktop *pOperate) | |
| 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 Member Functions inherited from CBackendDesktop | |
| CBackendDesktop (COperateDesktop *pOperate=nullptr) | |
| virtual bool | event (QEvent *event) override |
| Public Member Functions inherited from CBackend | |
| CBackend (COperate *pOperate=nullptr, bool bStopSignal=true) | |
| CBackend. | |
| virtual int | Start () |
| Start. | |
| virtual int | Stop () |
| Stop. | |
Protected Member Functions | |
| 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 void | InputMethodEvent (QInputMethodEvent *event) override |
| virtual OnInitReturnValue | OnInit () override |
| Initialization. | |
| virtual int | OnClean () override |
| Clean. | |
| virtual int | OnProcess () override |
| Specific operation processing of plug-in connection. | |
| virtual int | WakeUp () override |
| Wake up backend thread(background thread). | |
Private Member Functions | |
| quint32 | TranslateRfbKey (quint32 inkey, bool modifier) |
| CBackendVnc::TranslateRfbKey. | |
| QString | ConnectInformation () |
| int | SetPara () |
| void | autoSelectFormatAndEncoding () |
| void | updatePixelFormat () |
| int | SocketInit () |
| int | SetChannelConnect (QSharedPointer< CChannel > channel) |
| int | IceInit () |
| int | SSHInit () |
Private Attributes | |
| QSharedPointer< CChannel > | m_DataChannel |
| QSharedPointer< rdr::InStream > | m_InStream |
| QSharedPointer< rdr::OutStream > | m_OutStream |
| COperateDesktop * | m_pOperate |
| CParameterVnc * | m_pPara |
| CSecurityLevel::Levels | m_SecurityLevel |
Additional Inherited Members | |
| Signals inherited from CBackendDesktop | |
| void | sigSetDesktopSize (int width, int height) |
| void | sigServerName (const QString &szName) |
| void | sigUpdateRect (const QRect &r, const QImage &image) |
| Notify the CFrmView update 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) |
| Signals inherited from CBackend | |
| void | sigRunning () |
| Emitted when the plugin is successfully started. | |
| void | sigStop () |
| Notify the user to stop. | |
| void | sigFinished () |
| Successful stopped signal. | |
| void | sigError (const int nError, const QString &szError=QString()) |
| Triggered when an error is generated. | |
| void | sigInformation (const QString &szInfo) |
| Triggering from a background thread displays information in the main thread without blocking the background thread. | |
| void | sigShowMessageBox (const QString &szTitle, const QString &szMessage, const QMessageBox::Icon &icon=QMessageBox::Information) |
| Trigger the display of a message dialog (QMessageBox) in the main thread from a background thread without blocking the background thread. | |
| void | sigBlockShowMessageBox (const QString &szTitle, const QString &szMessage, QMessageBox::StandardButtons buttons, QMessageBox::StandardButton &nRet, bool &checkBox, QString checkBoxContext=QString()) |
| Block background threads and display message dialogs in foreground threads (QMessageBox). | |
| void | sigBlockInputDialog (const QString &szTitle, const QString &szLable, const QString &szMessage, QString &szText) |
| Block background threads and display input dialogs in foreground threads (QInputDialog). | |
| void | sigBlockShowWidget (const QString &className, int &nRet, void *pContext) |
| Blocks the background thread and displays the window in the foreground thread. | |
| void | sigSecurityLevel (CSecurityLevel::Levels level) |
| Triggered when the security level changes. | |
| Protected Types inherited from CBackend | |
| enum class | OnInitReturnValue { Fail = -1 , Success = 0 , UseOnProcess = Success , NotUseOnProcess = 1 } |
| Protected Slots inherited from CBackend | |
| virtual void | slotTimeOut () |
| a non-Qt event loop (that is, normal loop processing), It call OnProcess(), and start timer. | |
Definition at line 23 of file BackendVnc.h.
|
explicit |
Definition at line 98 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 128 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 1319 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 644 of file BackendVnc.cpp.
|
private |
Definition at line 964 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 678 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 767 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 757 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 691 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 712 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 1301 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 1309 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 1269 of file BackendVnc.cpp.
|
private |
Definition at line 220 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 602 of file BackendVnc.cpp.
|
overrideprotectedvirtual |
Implements CBackendDesktop.
Definition at line 960 of file BackendVnc.cpp.
|
overrideprotectedvirtual |
Implements CBackendDesktop.
Definition at line 924 of file BackendVnc.cpp.
|
overrideprotectedvirtual |
Implements CBackendDesktop.
Definition at line 942 of file BackendVnc.cpp.
|
overrideprotectedvirtual |
Implements CBackendDesktop.
Definition at line 851 of file BackendVnc.cpp.
|
overrideprotectedvirtual |
Implements CBackendDesktop.
Definition at line 809 of file BackendVnc.cpp.
|
overrideprotectedvirtual |
Implements CBackendDesktop.
Definition at line 836 of file BackendVnc.cpp.
|
overrideprotectedvirtual |
|
overrideprotectedvirtual |
Initialization.
Implements CBackend.
Definition at line 198 of file BackendVnc.cpp.
|
overrideprotectedvirtual |
Specific operation processing of plug-in connection.
Because of it is a non-Qt event loop, so wait in here.
Reimplemented from CBackend.
Definition at line 456 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 623 of file BackendVnc.cpp.
|
private |
Definition at line 405 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 639 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 656 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 672 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 649 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 745 of file BackendVnc.cpp.
|
private |
Definition at line 133 of file BackendVnc.cpp.
|
overridevirtual |
Definition at line 722 of file BackendVnc.cpp.
|
slot |
Definition at line 592 of file BackendVnc.cpp.
|
overridevirtualslot |
Definition at line 1260 of file BackendVnc.cpp.
|
virtualslot |
Definition at line 482 of file BackendVnc.cpp.
|
virtualslot |
Definition at line 519 of file BackendVnc.cpp.
|
virtualslot |
Definition at line 536 of file BackendVnc.cpp.
|
private |
Definition at line 265 of file BackendVnc.cpp.
|
private |
Definition at line 374 of file BackendVnc.cpp.
|
private |
|
private |
Definition at line 781 of file BackendVnc.cpp.
|
overrideprotectedvirtual |
Wake up backend thread(background thread).
When it is block(a non-Qt event loop)
Implements CBackend.
Definition at line 470 of file BackendVnc.cpp.
|
overrideprotectedvirtual |
Implements CBackendDesktop.
Definition at line 878 of file BackendVnc.cpp.
|
private |
Definition at line 87 of file BackendVnc.h.
|
private |
Definition at line 88 of file BackendVnc.h.
|
private |
Definition at line 89 of file BackendVnc.h.
|
private |
Definition at line 95 of file BackendVnc.h.
|
private |
Definition at line 96 of file BackendVnc.h.
|
private |
Definition at line 107 of file BackendVnc.h.