mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
19 lines
464 B
C
19 lines
464 B
C
|
#ifndef QQTMOUSELOCKER_MAC_H
|
|||
|
#define QQTMOUSELOCKER_MAC_H
|
|||
|
|
|||
|
#include <QMouseEvent>
|
|||
|
#include <QWidget>
|
|||
|
|
|||
|
class QQtMouseLockerImpl
|
|||
|
{
|
|||
|
public:
|
|||
|
explicit QQtMouseLockerImpl();
|
|||
|
|
|||
|
public:
|
|||
|
virtual void focusInEvent ( QFocusEvent* event, QWidget* target = 0 );
|
|||
|
virtual void focusOutEvent ( QFocusEvent* event, QWidget* target = 0 );
|
|||
|
virtual void mouseMoveEvent ( QMouseEvent* event, QWidget* target = 0 );
|
|||
|
};
|
|||
|
|
|||
|
#endif //QQTMOUSELOCKER_MAC_H
|