├── .github └── workflows │ └── windows.yml ├── .gitignore ├── ColorItem.cpp ├── ColorItem.h ├── LICENSE ├── LinePaint.cpp ├── LinePaint.h ├── PointSizeWidget.cpp ├── PointSizeWidget.h ├── README.md ├── RectPaint.cpp ├── RectPaint.h ├── TextPaint.cpp ├── TextPaint.h ├── doc ├── f1.gif ├── f2.gif ├── f3.gif ├── f4.gif ├── f5.gif ├── main.png ├── main1.png └── main2.png ├── image ├── BROOK.ico ├── LUFFY.ico ├── ScreenShot20181209_203102.jpg ├── ZORO.ico ├── add.ico ├── add.png ├── brush.png ├── comp.ico ├── copy.png ├── drawellipse.png ├── drawline.png ├── drawrect.png ├── drawtext.png ├── file.png ├── folder.png ├── mail.ico ├── main.ico ├── remove.ico ├── remove.png ├── save.png ├── steam.ico ├── title.ico └── title.png ├── imageview.cpp ├── imageview.h ├── main.cpp ├── qtt.pri ├── qtt.pro ├── qtt.qrc ├── qtt.rc ├── qxtglobal.h ├── qxtglobalshortcut.cpp ├── qxtglobalshortcut.h ├── qxtglobalshortcut_p.h ├── qxtglobalshortcut_win.cpp ├── screenview.cpp ├── screenview.h ├── snappit.cpp ├── snappit.h ├── snappit.ui ├── struct.h ├── third party └── glog │ ├── include │ ├── glog │ │ ├── log_severity.h │ │ └── vlog_is_on.h │ ├── logging.h │ ├── raw_logging.h │ └── stl_logging.h │ └── lib │ └── win32 │ ├── glog.lib │ └── glogd.lib └── translation ├── qtt_en.qm ├── qtt_en.ts ├── qtt_zh.qm └── qtt_zh.ts /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/.gitignore -------------------------------------------------------------------------------- /ColorItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/ColorItem.cpp -------------------------------------------------------------------------------- /ColorItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/ColorItem.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/LICENSE -------------------------------------------------------------------------------- /LinePaint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/LinePaint.cpp -------------------------------------------------------------------------------- /LinePaint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/LinePaint.h -------------------------------------------------------------------------------- /PointSizeWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/PointSizeWidget.cpp -------------------------------------------------------------------------------- /PointSizeWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/PointSizeWidget.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/README.md -------------------------------------------------------------------------------- /RectPaint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/RectPaint.cpp -------------------------------------------------------------------------------- /RectPaint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/RectPaint.h -------------------------------------------------------------------------------- /TextPaint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/TextPaint.cpp -------------------------------------------------------------------------------- /TextPaint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/TextPaint.h -------------------------------------------------------------------------------- /doc/f1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/doc/f1.gif -------------------------------------------------------------------------------- /doc/f2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/doc/f2.gif -------------------------------------------------------------------------------- /doc/f3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/doc/f3.gif -------------------------------------------------------------------------------- /doc/f4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/doc/f4.gif -------------------------------------------------------------------------------- /doc/f5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/doc/f5.gif -------------------------------------------------------------------------------- /doc/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/doc/main.png -------------------------------------------------------------------------------- /doc/main1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/doc/main1.png -------------------------------------------------------------------------------- /doc/main2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/doc/main2.png -------------------------------------------------------------------------------- /image/BROOK.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/BROOK.ico -------------------------------------------------------------------------------- /image/LUFFY.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/LUFFY.ico -------------------------------------------------------------------------------- /image/ScreenShot20181209_203102.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/ScreenShot20181209_203102.jpg -------------------------------------------------------------------------------- /image/ZORO.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/ZORO.ico -------------------------------------------------------------------------------- /image/add.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/add.ico -------------------------------------------------------------------------------- /image/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/add.png -------------------------------------------------------------------------------- /image/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/brush.png -------------------------------------------------------------------------------- /image/comp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/comp.ico -------------------------------------------------------------------------------- /image/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/copy.png -------------------------------------------------------------------------------- /image/drawellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/drawellipse.png -------------------------------------------------------------------------------- /image/drawline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/drawline.png -------------------------------------------------------------------------------- /image/drawrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/drawrect.png -------------------------------------------------------------------------------- /image/drawtext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/drawtext.png -------------------------------------------------------------------------------- /image/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/file.png -------------------------------------------------------------------------------- /image/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/folder.png -------------------------------------------------------------------------------- /image/mail.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/mail.ico -------------------------------------------------------------------------------- /image/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/main.ico -------------------------------------------------------------------------------- /image/remove.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/remove.ico -------------------------------------------------------------------------------- /image/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/remove.png -------------------------------------------------------------------------------- /image/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/save.png -------------------------------------------------------------------------------- /image/steam.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/steam.ico -------------------------------------------------------------------------------- /image/title.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/title.ico -------------------------------------------------------------------------------- /image/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/image/title.png -------------------------------------------------------------------------------- /imageview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/imageview.cpp -------------------------------------------------------------------------------- /imageview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/imageview.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/main.cpp -------------------------------------------------------------------------------- /qtt.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/qtt.pri -------------------------------------------------------------------------------- /qtt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/qtt.pro -------------------------------------------------------------------------------- /qtt.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/qtt.qrc -------------------------------------------------------------------------------- /qtt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/qtt.rc -------------------------------------------------------------------------------- /qxtglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/qxtglobal.h -------------------------------------------------------------------------------- /qxtglobalshortcut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/qxtglobalshortcut.cpp -------------------------------------------------------------------------------- /qxtglobalshortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/qxtglobalshortcut.h -------------------------------------------------------------------------------- /qxtglobalshortcut_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/qxtglobalshortcut_p.h -------------------------------------------------------------------------------- /qxtglobalshortcut_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/qxtglobalshortcut_win.cpp -------------------------------------------------------------------------------- /screenview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/screenview.cpp -------------------------------------------------------------------------------- /screenview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/screenview.h -------------------------------------------------------------------------------- /snappit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/snappit.cpp -------------------------------------------------------------------------------- /snappit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/snappit.h -------------------------------------------------------------------------------- /snappit.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/snappit.ui -------------------------------------------------------------------------------- /struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/struct.h -------------------------------------------------------------------------------- /third party/glog/include/glog/log_severity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/third party/glog/include/glog/log_severity.h -------------------------------------------------------------------------------- /third party/glog/include/glog/vlog_is_on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/third party/glog/include/glog/vlog_is_on.h -------------------------------------------------------------------------------- /third party/glog/include/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/third party/glog/include/logging.h -------------------------------------------------------------------------------- /third party/glog/include/raw_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/third party/glog/include/raw_logging.h -------------------------------------------------------------------------------- /third party/glog/include/stl_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/third party/glog/include/stl_logging.h -------------------------------------------------------------------------------- /third party/glog/lib/win32/glog.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/third party/glog/lib/win32/glog.lib -------------------------------------------------------------------------------- /third party/glog/lib/win32/glogd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/third party/glog/lib/win32/glogd.lib -------------------------------------------------------------------------------- /translation/qtt_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/translation/qtt_en.qm -------------------------------------------------------------------------------- /translation/qtt_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/translation/qtt_en.ts -------------------------------------------------------------------------------- /translation/qtt_zh.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/translation/qtt_zh.qm -------------------------------------------------------------------------------- /translation/qtt_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZypherChan/ScreenShot/HEAD/translation/qtt_zh.ts --------------------------------------------------------------------------------