5 Star 6 Fork 8

kuny/Multi-machine-Fusion

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
global_shortcut.h 721 Bytes
一键复制 编辑 原始数据 按行查看 历史
kunyang 提交于 2018-02-10 23:10 . First commit
#ifndef GLOBAL_SHORTCUT_H
#define GLOBAL_SHORTCUT_H
#include <QEvent>
#include <QKeySequence>
#include <QAbstractEventDispatcher>
class global_shortcut_p;
class global_shortcut : public QObject
{
Q_OBJECT
public:
global_shortcut(QObject *parent = 0);
explicit global_shortcut(const QKeySequence& shortcut, QObject* parent = 0);
~global_shortcut();
QKeySequence shortcut() const;
bool setShortcut(const QKeySequence& shortcut);
bool isEnabled() const;
public Q_SLOTS:
void setEnabled(bool enabled = true);
void setDisabled(bool disabled = true);
Q_SIGNALS:
void activated();
private:
global_shortcut_p *d;
};
#endif // GLOBAL_SHORTCUT_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/kunyang_yt/Multi-machine-Fusion.git
git@gitee.com:kunyang_yt/Multi-machine-Fusion.git
kunyang_yt
Multi-machine-Fusion
Multi-machine-Fusion
master

搜索帮助