mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
273 lines
6.3 KiB
C++
273 lines
6.3 KiB
C++
#ifndef HOTKEYWRAPPER_H
|
|
#define HOTKEYWRAPPER_H
|
|
|
|
#include <QtGui>
|
|
|
|
#ifdef HAVE_X11
|
|
|
|
#include <set>
|
|
|
|
#include <X11/Xlib.h>
|
|
#include <X11/extensions/record.h>
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(6,0,0))
|
|
#include <QGuiApplication>
|
|
#else
|
|
#include <QX11Info>
|
|
#endif
|
|
#include <X11/Xlibint.h>
|
|
|
|
#undef Bool
|
|
#undef min
|
|
#undef max
|
|
|
|
#endif
|
|
|
|
#ifdef Q_OS_MAC
|
|
#define __SECURITYHI__
|
|
#include <Carbon/Carbon.h>
|
|
#endif
|
|
|
|
#include "ex.hh"
|
|
#include "qtsingleapplication.h"
|
|
#include "utils.hh"
|
|
#include "config.hh"
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
struct HotkeyStruct
|
|
{
|
|
HotkeyStruct() {}
|
|
HotkeyStruct( quint32 key, quint32 key2, quint32 modifier, int handle, int id );
|
|
|
|
quint32 key, key2;
|
|
quint32 modifier;
|
|
int handle;
|
|
int id;
|
|
#ifdef Q_OS_MAC
|
|
EventHotKeyRef hkRef, hkRef2;
|
|
#endif
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(Q_WS_QWS)
|
|
class HotkeyWrapper : public QThread // Thread is actually only used on X11
|
|
{
|
|
Q_OBJECT
|
|
|
|
friend class QHotkeyApplication;
|
|
|
|
public:
|
|
|
|
DEF_EX( exInit, "Hotkey wrapper failed to init", std::exception )
|
|
|
|
HotkeyWrapper(QObject *parent);
|
|
virtual ~HotkeyWrapper();
|
|
|
|
/// The handle is passed back in hotkeyActivated() to inform which hotkey
|
|
/// was activated.
|
|
bool setGlobalKey( int key, int key2, Qt::KeyboardModifiers modifier,
|
|
int handle );
|
|
|
|
bool setGlobalKey( QKeySequence const & , int );
|
|
|
|
/// Unregisters everything
|
|
void unregister();
|
|
|
|
signals:
|
|
|
|
void hotkeyActivated( int );
|
|
|
|
protected slots:
|
|
|
|
void waitKey2();
|
|
|
|
#ifndef Q_OS_MAC
|
|
private slots:
|
|
|
|
bool checkState( quint32 vk, quint32 mod );
|
|
#endif
|
|
|
|
private:
|
|
|
|
void init();
|
|
quint32 nativeKey(int key);
|
|
|
|
QList<HotkeyStruct> hotkeys;
|
|
|
|
bool state2;
|
|
HotkeyStruct state2waiter;
|
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
#if( QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 ) )
|
|
virtual bool winEvent ( MSG * message, long * result );
|
|
#else
|
|
virtual bool winEvent ( MSG * message, qintptr * result );
|
|
#endif
|
|
HWND hwnd;
|
|
|
|
#elif defined(Q_OS_MAC)
|
|
|
|
public:
|
|
void activated( int hkId );
|
|
private:
|
|
void sendCmdC();
|
|
|
|
static EventHandlerUPP hotKeyFunction;
|
|
quint32 keyC;
|
|
EventHandlerRef handlerRef;
|
|
|
|
#else
|
|
|
|
static void recordEventCallback( XPointer, XRecordInterceptData * );
|
|
|
|
/// Called by recordEventCallback()
|
|
void handleRecordEvent( XRecordInterceptData * );
|
|
|
|
void run(); // QThread
|
|
|
|
// We do one-time init of those, translating keysyms to keycodes
|
|
KeyCode lShiftCode, rShiftCode, lCtrlCode, rCtrlCode, lAltCode, rAltCode,
|
|
cCode, insertCode, kpInsertCode, lMetaCode, rMetaCode;
|
|
|
|
quint32 currentModifiers;
|
|
|
|
Display * dataDisplay;
|
|
XRecordRange * recordRange;
|
|
XRecordContext recordContext;
|
|
XRecordClientSpec recordClientSpec;
|
|
|
|
/// Holds all the keys currently grabbed.
|
|
/// The first value is keycode, the second is modifiers
|
|
typedef std::set< std::pair< quint32, quint32 > > GrabbedKeys;
|
|
GrabbedKeys grabbedKeys;
|
|
|
|
GrabbedKeys::iterator keyToUngrab; // Used for second stage grabs
|
|
|
|
/// Returns true if the given key is usually used to copy from clipboard,
|
|
/// false otherwise.
|
|
bool isCopyToClipboardKey( quint32 keyCode, quint32 modifiers ) const;
|
|
/// Returns true if the given key is grabbed, false otherwise
|
|
bool isKeyGrabbed( quint32 keyCode, quint32 modifiers ) const;
|
|
/// Grabs the given key, recording the fact in grabbedKeys. If the key's
|
|
/// already grabbed, does nothing.
|
|
/// Returns the key's iterator in grabbedKeys.
|
|
GrabbedKeys::iterator grabKey( quint32 keyCode, quint32 modifiers );
|
|
/// Ungrabs the given key. erasing it from grabbedKeys. The key's provided
|
|
/// as an interator inside the grabbedKeys set.
|
|
void ungrabKey( GrabbedKeys::iterator );
|
|
|
|
signals:
|
|
|
|
/// Emitted from the thread
|
|
void keyRecorded( quint32 vk, quint32 mod );
|
|
|
|
#endif
|
|
};
|
|
#else
|
|
|
|
class HotkeyWrapper : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
friend class QHotkeyApplication;
|
|
|
|
public:
|
|
|
|
DEF_EX( exInit, "Hotkey wrapper failed to init", std::exception )
|
|
|
|
HotkeyWrapper(QObject *parent): QObject( parent )
|
|
{}
|
|
|
|
bool setGlobalKey( int key, int key2, Qt::KeyboardModifiers modifier,
|
|
int handle )
|
|
{ return true; }
|
|
|
|
bool setGlobalKey( QKeySequence const &, int ) { return true; }
|
|
|
|
void unregister()
|
|
{}
|
|
|
|
signals:
|
|
|
|
void hotkeyActivated( int );
|
|
};
|
|
#endif
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
class DataCommitter
|
|
{
|
|
public:
|
|
|
|
virtual void commitData( QSessionManager & )=0;
|
|
virtual ~DataCommitter()
|
|
{}
|
|
};
|
|
|
|
// Intermediate class to avoid misunderstanding of #ifdef's
|
|
// by Qt meta-object compiler
|
|
|
|
class QIntermediateApplication : public QtSingleApplication
|
|
#if defined( Q_OS_WIN )
|
|
, public QAbstractNativeEventFilter
|
|
#endif
|
|
{
|
|
public:
|
|
QIntermediateApplication( int & argc, char ** argv ) :
|
|
QtSingleApplication( argc, argv )
|
|
{}
|
|
|
|
QIntermediateApplication( QString const & id, int & argc, char ** argv ) :
|
|
QtSingleApplication( id, argc, argv )
|
|
{}
|
|
};
|
|
|
|
class QHotkeyApplication : public QIntermediateApplication
|
|
{
|
|
Q_OBJECT
|
|
|
|
friend class HotkeyWrapper;
|
|
|
|
QList< DataCommitter * > dataCommitters;
|
|
|
|
public:
|
|
QHotkeyApplication( int & argc, char ** argv );
|
|
QHotkeyApplication( QString const & id, int & argc, char ** argv );
|
|
|
|
void addDataCommiter( DataCommitter & );
|
|
void removeDataCommiter( DataCommitter & );
|
|
|
|
private slots:
|
|
/// This calls all data committers.
|
|
void hotkeyAppCommitData( QSessionManager & );
|
|
|
|
void hotkeyAppSaveState( QSessionManager & );
|
|
|
|
protected:
|
|
void registerWrapper(HotkeyWrapper *wrapper);
|
|
void unregisterWrapper(HotkeyWrapper *wrapper);
|
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
#if( QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 ) )
|
|
virtual bool nativeEventFilter( const QByteArray & eventType, void * message, long * result );
|
|
#else
|
|
virtual bool nativeEventFilter( const QByteArray & eventType, void * message, qintptr * result );
|
|
#endif
|
|
|
|
|
|
QWidget * mainWindow;
|
|
public:
|
|
void setMainWindow( QWidget * widget )
|
|
{ mainWindow = widget; }
|
|
protected:
|
|
#endif // Q_OS_WIN32
|
|
QList<HotkeyWrapper*> hotkeyWrappers;
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#endif // HOTKEYWRAPPER_H
|