mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
67 lines
1.5 KiB
C++
67 lines
1.5 KiB
C++
#ifndef __MOUSEOVER_HH_INCLUDED__
|
|
#define __MOUSEOVER_HH_INCLUDED__
|
|
|
|
#include <QObject>
|
|
#include "config.hh"
|
|
#include "keyboardstate.hh"
|
|
|
|
#ifdef Q_OS_WIN32
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
/// 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.
|
|
/// This interface always exists, even on platforms that don't support that
|
|
/// feature -- it just remains dormant on them.
|
|
///
|
|
/// The Windows platform is the only one supported; it works with the help of
|
|
/// two external .dll files,
|
|
class MouseOver: public QObject, public KeyboardState
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
/// The class is a singleton.
|
|
static MouseOver & 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; };
|
|
|
|
signals:
|
|
|
|
/// Emitted when there was some text under cursor which was hovered over.
|
|
void hovered( QString const & );
|
|
|
|
private:
|
|
|
|
MouseOver();
|
|
~MouseOver();
|
|
|
|
Config::Preferences const *pPref;
|
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
static LRESULT CALLBACK eventHandler( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam );
|
|
|
|
typedef void ( *ActivateSpyFn )( bool );
|
|
ActivateSpyFn activateSpyFn;
|
|
HINSTANCE spyDll;
|
|
bool mouseOverEnabled;
|
|
|
|
/// Create mask for scan methods
|
|
LRESULT makeScanBitMask();
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
#endif
|
|
|