├── .gitignore ├── LICENSE ├── README.en.md ├── README.md ├── assets ├── icon.ico ├── image-20200808220817456.png ├── params_visualizing.png └── sponsor.jpg ├── requirements.txt └── src ├── QuickHand.py ├── QuickHand_Win64_pyinstaller.7z ├── backgrounds └── letter.png ├── database.db ├── fonts ├── 品如手写体.ttf ├── 手书体.ttf ├── 新叶念体.otf ├── 杨任东竹石体-Regular.ttf ├── 沐瑶软笔手写体.ttf ├── 沐瑶随心手写体.ttf ├── 清松手写体1.ttf ├── 清松手写体2.ttf ├── 胡晓波骚包体.otf ├── 贤二体.ttf ├── 阿朱泡泡体.ttf └── 鸿雷板书简体-Regular.ttf ├── icon.ico ├── misc ├── README_zh.html ├── icon.afphoto ├── icon.png ├── 排版关系参考图.afphoto ├── 视频封面 - 视频教程.afphoto └── 视频封面 - 视频教程.png ├── moduels ├── ColorLabel.py ├── ConfigTab.py ├── ConsolePrintBox.py ├── ConsoleWindow.py ├── GenerateImagesThread.py ├── HandRightTab.py ├── HelpTab.py ├── SponsorDialog.py └── SystemTray.py ├── pyinstaller打包.bat ├── requirements.txt ├── sponsor.jpg └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/LICENSE -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/README.md -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /assets/image-20200808220817456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/assets/image-20200808220817456.png -------------------------------------------------------------------------------- /assets/params_visualizing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/assets/params_visualizing.png -------------------------------------------------------------------------------- /assets/sponsor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/assets/sponsor.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/QuickHand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/QuickHand.py -------------------------------------------------------------------------------- /src/QuickHand_Win64_pyinstaller.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/QuickHand_Win64_pyinstaller.7z -------------------------------------------------------------------------------- /src/backgrounds/letter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/backgrounds/letter.png -------------------------------------------------------------------------------- /src/database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/database.db -------------------------------------------------------------------------------- /src/fonts/品如手写体.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/fonts/品如手写体.ttf -------------------------------------------------------------------------------- /src/fonts/手书体.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/fonts/手书体.ttf -------------------------------------------------------------------------------- /src/fonts/新叶念体.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/fonts/新叶念体.otf -------------------------------------------------------------------------------- /src/fonts/杨任东竹石体-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/fonts/杨任东竹石体-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/沐瑶软笔手写体.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/fonts/沐瑶软笔手写体.ttf -------------------------------------------------------------------------------- /src/fonts/沐瑶随心手写体.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/fonts/沐瑶随心手写体.ttf -------------------------------------------------------------------------------- /src/fonts/清松手写体1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/fonts/清松手写体1.ttf -------------------------------------------------------------------------------- /src/fonts/清松手写体2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/fonts/清松手写体2.ttf -------------------------------------------------------------------------------- /src/fonts/胡晓波骚包体.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/fonts/胡晓波骚包体.otf -------------------------------------------------------------------------------- /src/fonts/贤二体.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/fonts/贤二体.ttf -------------------------------------------------------------------------------- /src/fonts/阿朱泡泡体.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/fonts/阿朱泡泡体.ttf -------------------------------------------------------------------------------- /src/fonts/鸿雷板书简体-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/fonts/鸿雷板书简体-Regular.ttf -------------------------------------------------------------------------------- /src/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/icon.ico -------------------------------------------------------------------------------- /src/misc/README_zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/misc/README_zh.html -------------------------------------------------------------------------------- /src/misc/icon.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/misc/icon.afphoto -------------------------------------------------------------------------------- /src/misc/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/misc/icon.png -------------------------------------------------------------------------------- /src/misc/排版关系参考图.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/misc/排版关系参考图.afphoto -------------------------------------------------------------------------------- /src/misc/视频封面 - 视频教程.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/misc/视频封面 - 视频教程.afphoto -------------------------------------------------------------------------------- /src/misc/视频封面 - 视频教程.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/misc/视频封面 - 视频教程.png -------------------------------------------------------------------------------- /src/moduels/ColorLabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/moduels/ColorLabel.py -------------------------------------------------------------------------------- /src/moduels/ConfigTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/moduels/ConfigTab.py -------------------------------------------------------------------------------- /src/moduels/ConsolePrintBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/moduels/ConsolePrintBox.py -------------------------------------------------------------------------------- /src/moduels/ConsoleWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/moduels/ConsoleWindow.py -------------------------------------------------------------------------------- /src/moduels/GenerateImagesThread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/moduels/GenerateImagesThread.py -------------------------------------------------------------------------------- /src/moduels/HandRightTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/moduels/HandRightTab.py -------------------------------------------------------------------------------- /src/moduels/HelpTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/moduels/HelpTab.py -------------------------------------------------------------------------------- /src/moduels/SponsorDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/moduels/SponsorDialog.py -------------------------------------------------------------------------------- /src/moduels/SystemTray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/moduels/SystemTray.py -------------------------------------------------------------------------------- /src/pyinstaller打包.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/pyinstaller打包.bat -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/requirements.txt -------------------------------------------------------------------------------- /src/sponsor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaujetZhao/QuickHand/HEAD/src/sponsor.jpg -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------