玉兔远程控制 0.0.31
载入中...
搜索中...
未找到
Public 类型 | Public 槽 | 信号 | Public 成员函数 | Protected 成员函数 | 属性 | Private 成员函数 | Private 属性 | 所有成员列表
CFrmViewer类 参考

用于显示从 CConnectDesktop 输出的图像,和向 CConnectDesktop 发送键盘、鼠标事件。 更多...

#include <FrmViewer.h>

类 CFrmViewer 继承关系图:

Public 类型

enum class  ADAPT_WINDOWS {
  Disable = 0 , Auto = 1 , Original = 2 , OriginalCenter = 3 ,
  Zoom = 4 , ZoomToWindow = 5 , KeepAspectRationToWindow = 6
}
 窗口适配枚举常量 更多...
 
enum  LED_STATE { Unknown = -1 , ScrollLock = 1 , NumLock = 1 << 1 , CapsLock = 1 << 2 }
 

Public 槽

void slotSetAdaptWindows (CFrmViewer::ADAPT_WINDOWS aw=ADAPT_WINDOWS::Original)
 
int slotSetZoomFactor (double newZoomFactor)
 
void slotSetDesktopSize (int width, int height)
 Update desktop size
 
void slotSetName (const QString &szName)
 Update desktop name
 
void slotUpdateRect (const QRect &r, const QImage &image)
 Update image
 
void slotUpdateRect (const QImage &image)
 
void slotUpdateCursor (const QCursor &cursor)
 Update cursor
 
void slotUpdateCursorPosition (const QPoint &pos)
 Update cursor position
 
void slotUpdateLedState (unsigned int state)
 
void slotSystemCombination ()
 
void slotConnected ()
 
void slotRecordVideo (bool bRecord)
 

信号

void sigMousePressEvent (QMouseEvent *event, QPoint pos)
 
void sigMouseReleaseEvent (QMouseEvent *event, QPoint pos)
 
void sigMouseMoveEvent (QMouseEvent *event, QPoint pos)
 
void sigMouseMoveEvent (QMouseEvent *event)
 
void sigWheelEvent (QWheelEvent *event, QPoint pos)
 
void sigKeyPressEvent (QKeyEvent *event)
 
void sigKeyReleaseEvent (QKeyEvent *event)
 
void sigServerName (const QString &szName)
 
void sigRecordVideo (const QImage &img)
 

Public 成员函数

 CFrmViewer (QWidget *parent=nullptr)
 
ADAPT_WINDOWS GetAdaptWindows ()
 
double GetZoomFactor () const
 调整缩放系数。 调整完成后需要调用 SetAdaptWindows(FrmViewer::Zoom) 缩放窗口大小。
 
QSize GetDesktopSize ()
 
virtual QImage GrabImage (int x=0, int y=0, int w=-1, int h=-1)
 

Protected 成员函数

virtual void paintEvent (QPaintEvent *event) 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
 

属性

double ZoomFactor
 

Private 成员函数

int ReSize (int width, int height)
 
void paintDesktop ()
 
int TranslationMousePoint (QPointF inPos, QPointF &outPos)
 
QRectF GetAspectRationRect ()
 

Private 属性

QImage m_Desktop
 
QSize m_DesktopSize
 
ADAPT_WINDOWS m_AdaptWindows
 
double m_dbZoomFactor
 
bool m_bRecordVideo
 

详细描述

用于显示从 CConnectDesktop 输出的图像,和向 CConnectDesktop 发送键盘、鼠标事件。

参见
CConnecter CConnectDesktop

在文件 FrmViewer.h48 行定义.

成员枚举类型说明

◆ ADAPT_WINDOWS

enum class CFrmViewer::ADAPT_WINDOWS
strong

窗口适配枚举常量

枚举值
Disable 

禁用适配窗口

Original 

原始桌面大小,桌面的左上点与窗口的左上点对齐

OriginalCenter 

原始桌面大小,桌面中心点与窗口中心点对齐

Zoom 

缩放窗口大小等于桌面大小 * 系数

ZoomToWindow 

桌面缩放到窗口大小,窗口是固定的

KeepAspectRationToWindow 

保持长宽比缩放到窗口大小,窗口是固定的

在文件 FrmViewer.h61 行定义.

◆ LED_STATE

enum CFrmViewer::LED_STATE

在文件 FrmViewer.h90 行定义.

构造及析构函数说明

◆ ~CFrmViewer()

CFrmViewer::~CFrmViewer ( )
overridevirtual

在文件 FrmViewer.cpp50 行定义.

成员函数说明

◆ GetAdaptWindows()

CFrmViewer::ADAPT_WINDOWS CFrmViewer::GetAdaptWindows ( )

在文件 FrmViewer.cpp312 行定义.

◆ GetAspectRationRect()

QRectF CFrmViewer::GetAspectRationRect ( )
private

在文件 FrmViewer.cpp55 行定义.

◆ GetDesktopSize()

QSize CFrmViewer::GetDesktopSize ( )

在文件 FrmViewer.cpp265 行定义.

◆ GetZoomFactor()

double CFrmViewer::GetZoomFactor ( ) const

调整缩放系数。 调整完成后需要调用 SetAdaptWindows(FrmViewer::Zoom) 缩放窗口大小。

在文件 FrmViewer.cpp270 行定义.

◆ GrabImage()

QImage CFrmViewer::GrabImage ( int  x = 0,
int  y = 0,
int  w = -1,
int  h = -1 
)
virtual

在文件 FrmViewer.cpp522 行定义.

◆ keyPressEvent()

void CFrmViewer::keyPressEvent ( QKeyEvent *  event)
overrideprotectedvirtual

在文件 FrmViewer.cpp240 行定义.

◆ keyReleaseEvent()

void CFrmViewer::keyReleaseEvent ( QKeyEvent *  event)
overrideprotectedvirtual

在文件 FrmViewer.cpp247 行定义.

◆ mouseMoveEvent()

void CFrmViewer::mouseMoveEvent ( QMouseEvent *  event)
overrideprotectedvirtual

在文件 FrmViewer.cpp207 行定义.

◆ mousePressEvent()

void CFrmViewer::mousePressEvent ( QMouseEvent *  event)
overrideprotectedvirtual

在文件 FrmViewer.cpp172 行定义.

◆ mouseReleaseEvent()

void CFrmViewer::mouseReleaseEvent ( QMouseEvent *  event)
overrideprotectedvirtual

在文件 FrmViewer.cpp190 行定义.

◆ paintDesktop()

void CFrmViewer::paintDesktop ( )
private

在文件 FrmViewer.cpp83 行定义.

◆ paintEvent()

void CFrmViewer::paintEvent ( QPaintEvent *  event)
overrideprotectedvirtual

在文件 FrmViewer.cpp127 行定义.

◆ ReSize()

int CFrmViewer::ReSize ( int  width,
int  height 
)
private

在文件 FrmViewer.cpp284 行定义.

◆ slotConnected

void CFrmViewer::slotConnected ( )
slot

在文件 FrmViewer.cpp330 行定义.

◆ slotRecordVideo

void CFrmViewer::slotRecordVideo ( bool  bRecord)
slot

在文件 FrmViewer.cpp532 行定义.

◆ slotSetAdaptWindows

void CFrmViewer::slotSetAdaptWindows ( CFrmViewer::ADAPT_WINDOWS  aw = ADAPT_WINDOWS::Original)
slot

在文件 FrmViewer.cpp292 行定义.

◆ slotSetDesktopSize

void CFrmViewer::slotSetDesktopSize ( int  width,
int  height 
)
slot

Update desktop size

参数
width
height
注解
The plugin is use CConnectDesktop::sigSetDesktopSize

在文件 FrmViewer.cpp317 行定义.

◆ slotSetName

void CFrmViewer::slotSetName ( const QString &  szName)
slot

Update desktop name

参数
szName

在文件 FrmViewer.cpp335 行定义.

◆ slotSetZoomFactor

int CFrmViewer::slotSetZoomFactor ( double  newZoomFactor)
slot

在文件 FrmViewer.cpp275 行定义.

◆ slotSystemCombination

void CFrmViewer::slotSystemCombination ( )
slot

在文件 FrmViewer.cpp254 行定义.

◆ slotUpdateCursor

void CFrmViewer::slotUpdateCursor ( const QCursor &  cursor)
slot

Update cursor

参数
cursor

在文件 FrmViewer.cpp380 行定义.

◆ slotUpdateCursorPosition

void CFrmViewer::slotUpdateCursorPosition ( const QPoint &  pos)
slot

Update cursor position

参数
pos

在文件 FrmViewer.cpp385 行定义.

◆ slotUpdateLedState

void CFrmViewer::slotUpdateLedState ( unsigned int  state)
slot

在文件 FrmViewer.cpp437 行定义.

◆ slotUpdateRect [1/2]

void CFrmViewer::slotUpdateRect ( const QImage &  image)
slot

在文件 FrmViewer.cpp341 行定义.

◆ slotUpdateRect [2/2]

void CFrmViewer::slotUpdateRect ( const QRect &  r,
const QImage &  image 
)
slot

Update image

参数
rimage rect
imageimage

在文件 FrmViewer.cpp353 行定义.

◆ TranslationMousePoint()

int CFrmViewer::TranslationMousePoint ( QPointF  inPos,
QPointF &  outPos 
)
private

在文件 FrmViewer.cpp135 行定义.

◆ wheelEvent()

void CFrmViewer::wheelEvent ( QWheelEvent *  event)
overrideprotectedvirtual

在文件 FrmViewer.cpp225 行定义.

类成员变量说明

◆ m_AdaptWindows

ADAPT_WINDOWS CFrmViewer::m_AdaptWindows
private

在文件 FrmViewer.h163 行定义.

◆ m_bRecordVideo

bool CFrmViewer::m_bRecordVideo
private

在文件 FrmViewer.h179 行定义.

◆ m_dbZoomFactor

double CFrmViewer::m_dbZoomFactor
private

在文件 FrmViewer.h164 行定义.

◆ m_Desktop

QImage CFrmViewer::m_Desktop
private

在文件 FrmViewer.h160 行定义.

◆ m_DesktopSize

QSize CFrmViewer::m_DesktopSize
private

在文件 FrmViewer.h161 行定义.

属性说明

◆ ZoomFactor

double CFrmViewer::ZoomFactor
readwrite

在文件 FrmViewer.h51 行定义.


该类的文档由以下文件生成: