mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
5d2481792c
test qqtmouselocker, support windows now.
24 lines
420 B
C++
24 lines
420 B
C++
#include "qqtmouselocker_other.h"
|
|
|
|
#include <QEvent>
|
|
#include <QMouseEvent>
|
|
#include <QFocusEvent>
|
|
#include <qqtcore.h>
|
|
|
|
QQtMouseLockerImpl::QQtMouseLockerImpl() {}
|
|
|
|
void QQtMouseLockerImpl::focusInEvent ( QFocusEvent* event, QWidget* target )
|
|
{
|
|
|
|
}
|
|
|
|
void QQtMouseLockerImpl::focusOutEvent ( QFocusEvent* event, QWidget* target )
|
|
{
|
|
|
|
}
|
|
|
|
void QQtMouseLockerImpl::mouseMoveEvent ( QMouseEvent* event, QWidget* target )
|
|
{
|
|
|
|
}
|