├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml └── workflows │ └── release.yml ├── .gitignore ├── Changelog.md ├── Event ├── Event.py ├── UniversalEvents.py ├── WindowsEvents.py └── __init__.py ├── Internationalizing.pro ├── KeymouseGo.py ├── LICENSE ├── Mondrian.ico ├── Mondrian.png ├── Plugin ├── Interface.py └── Manager.py ├── Preview.png ├── README.md ├── README_en-US.md ├── Recorder ├── UniversalRecorder.py ├── WindowsRecorder.py ├── __init__.py └── globals.py ├── UIFileDialogFunc.py ├── UIFileDialogView.py ├── UIFileDialogView.ui ├── UIFunc.py ├── UIView.py ├── UIView.ui ├── Util ├── ClickedLabel.py ├── Global.py ├── Parser.py └── RunScriptClass.py ├── _config.yml ├── archived ├── Frame1.py ├── config.py ├── donate.png ├── i18n │ ├── lang.en.yml │ └── lang.zh-cn.yml ├── note.md ├── sample.jpg └── scale.png ├── assets.qrc ├── assets ├── i18n │ ├── en.qm │ ├── en.ts │ ├── zh-cn.qm │ ├── zh-cn.ts │ ├── zh-tw.qm │ └── zh-tw.ts └── sounds │ ├── end.mp3 │ ├── end.wav │ ├── start.mp3 │ └── start.wav ├── assets_rc.py ├── jetbrains-variant-2.png ├── requirements-universal.txt └── requirements-windows.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/.gitignore -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Changelog.md -------------------------------------------------------------------------------- /Event/Event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Event/Event.py -------------------------------------------------------------------------------- /Event/UniversalEvents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Event/UniversalEvents.py -------------------------------------------------------------------------------- /Event/WindowsEvents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Event/WindowsEvents.py -------------------------------------------------------------------------------- /Event/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Event/__init__.py -------------------------------------------------------------------------------- /Internationalizing.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Internationalizing.pro -------------------------------------------------------------------------------- /KeymouseGo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/KeymouseGo.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/LICENSE -------------------------------------------------------------------------------- /Mondrian.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Mondrian.ico -------------------------------------------------------------------------------- /Mondrian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Mondrian.png -------------------------------------------------------------------------------- /Plugin/Interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Plugin/Interface.py -------------------------------------------------------------------------------- /Plugin/Manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Plugin/Manager.py -------------------------------------------------------------------------------- /Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Preview.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/README.md -------------------------------------------------------------------------------- /README_en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/README_en-US.md -------------------------------------------------------------------------------- /Recorder/UniversalRecorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Recorder/UniversalRecorder.py -------------------------------------------------------------------------------- /Recorder/WindowsRecorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Recorder/WindowsRecorder.py -------------------------------------------------------------------------------- /Recorder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Recorder/__init__.py -------------------------------------------------------------------------------- /Recorder/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Recorder/globals.py -------------------------------------------------------------------------------- /UIFileDialogFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/UIFileDialogFunc.py -------------------------------------------------------------------------------- /UIFileDialogView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/UIFileDialogView.py -------------------------------------------------------------------------------- /UIFileDialogView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/UIFileDialogView.ui -------------------------------------------------------------------------------- /UIFunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/UIFunc.py -------------------------------------------------------------------------------- /UIView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/UIView.py -------------------------------------------------------------------------------- /UIView.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/UIView.ui -------------------------------------------------------------------------------- /Util/ClickedLabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Util/ClickedLabel.py -------------------------------------------------------------------------------- /Util/Global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Util/Global.py -------------------------------------------------------------------------------- /Util/Parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Util/Parser.py -------------------------------------------------------------------------------- /Util/RunScriptClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/Util/RunScriptClass.py -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/_config.yml -------------------------------------------------------------------------------- /archived/Frame1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/archived/Frame1.py -------------------------------------------------------------------------------- /archived/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/archived/config.py -------------------------------------------------------------------------------- /archived/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/archived/donate.png -------------------------------------------------------------------------------- /archived/i18n/lang.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/archived/i18n/lang.en.yml -------------------------------------------------------------------------------- /archived/i18n/lang.zh-cn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/archived/i18n/lang.zh-cn.yml -------------------------------------------------------------------------------- /archived/note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/archived/note.md -------------------------------------------------------------------------------- /archived/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/archived/sample.jpg -------------------------------------------------------------------------------- /archived/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/archived/scale.png -------------------------------------------------------------------------------- /assets.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/assets.qrc -------------------------------------------------------------------------------- /assets/i18n/en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/assets/i18n/en.qm -------------------------------------------------------------------------------- /assets/i18n/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/assets/i18n/en.ts -------------------------------------------------------------------------------- /assets/i18n/zh-cn.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/assets/i18n/zh-cn.qm -------------------------------------------------------------------------------- /assets/i18n/zh-cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/assets/i18n/zh-cn.ts -------------------------------------------------------------------------------- /assets/i18n/zh-tw.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/assets/i18n/zh-tw.qm -------------------------------------------------------------------------------- /assets/i18n/zh-tw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/assets/i18n/zh-tw.ts -------------------------------------------------------------------------------- /assets/sounds/end.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/assets/sounds/end.mp3 -------------------------------------------------------------------------------- /assets/sounds/end.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/assets/sounds/end.wav -------------------------------------------------------------------------------- /assets/sounds/start.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/assets/sounds/start.mp3 -------------------------------------------------------------------------------- /assets/sounds/start.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/assets/sounds/start.wav -------------------------------------------------------------------------------- /assets_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/assets_rc.py -------------------------------------------------------------------------------- /jetbrains-variant-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/jetbrains-variant-2.png -------------------------------------------------------------------------------- /requirements-universal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/requirements-universal.txt -------------------------------------------------------------------------------- /requirements-windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taojy123/KeymouseGo/HEAD/requirements-windows.txt --------------------------------------------------------------------------------