新增全局热键示例

This commit is contained in:
feiyangqingyun
2021-10-13 14:16:13 +08:00
parent 64240782cd
commit 508876dd18
39 changed files with 4192 additions and 59 deletions

26
hotkey/frmhotkey.h Normal file
View File

@@ -0,0 +1,26 @@
#ifndef FRMHOTKEY_H
#define FRMHOTKEY_H
#include <QWidget>
namespace Ui {
class frmHotKey;
}
class frmHotKey : public QWidget
{
Q_OBJECT
public:
explicit frmHotKey(QWidget *parent = 0);
~frmHotKey();
private:
Ui::frmHotKey *ui;
private slots:
void initForm();
void shortcut();
};
#endif // FRMHOTKEY_H