mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
64 lines
1.4 KiB
C++
64 lines
1.4 KiB
C++
#ifndef __MACMOUSEOVER_HH_INCLUDED__
|
|
#define __MACMOUSEOVER_HH_INCLUDED__
|
|
|
|
#include <QObject>
|
|
#include <QTimer>
|
|
#include <ApplicationServices/ApplicationServices.h>
|
|
#include "config.hh"
|
|
#include "keyboardstate.hh"
|
|
#include "mutex.hh"
|
|
|
|
/// This is a mouseover feature interface, where you can point your mouse at
|
|
/// any word in any window and wait a little, and it would provide that word
|
|
/// for the translation.
|
|
|
|
class MacMouseOver: public QObject, public KeyboardState
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
/// The class is a singleton.
|
|
static MacMouseOver & instance();
|
|
|
|
/// Enables mouseover. The mouseover is initially disabled.
|
|
void enableMouseOver();
|
|
/// Disables mouseover.
|
|
void disableMouseOver();
|
|
|
|
/// Set pointer to program configuration
|
|
void setPreferencesPtr( Config::Preferences const *ppref ) { pPref = ppref; };
|
|
|
|
/// Called from event loop callback
|
|
void mouseMoved();
|
|
|
|
signals:
|
|
|
|
/// Emitted when there was some text under cursor which was hovered over.
|
|
void hovered( QString const &, bool forcePopup );
|
|
|
|
private slots:
|
|
void timerShot();
|
|
|
|
private:
|
|
|
|
MacMouseOver();
|
|
~MacMouseOver();
|
|
void handlePosition();
|
|
QString CFStringRefToQString( CFStringRef str );
|
|
void handleRetrievedString( QString & wordSeq, int wordSeqPos );
|
|
|
|
Config::Preferences const *pPref;
|
|
QTimer mouseTimer;
|
|
CFMachPortRef tapRef;
|
|
CFRunLoopSourceRef loop;
|
|
Mutex mouseMutex;
|
|
AXUIElementRef elementSystemWide;
|
|
|
|
bool mouseOverEnabled;
|
|
|
|
};
|
|
|
|
#endif
|
|
|