├── .github └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── README.md ├── lib └── libunicows.a ├── res ├── application.manifest ├── cppshot32.ico └── resources.rc.in └── src ├── Utils.cpp ├── Utils.h ├── images ├── CompositeScreenshot.cpp ├── CompositeScreenshot.h ├── Screenshot.cpp └── Screenshot.h ├── main.cpp ├── managers ├── Application.cpp └── Application.h ├── resources.h ├── ui ├── Button.cpp ├── Button.h ├── Node.cpp └── Node.h ├── version.h.in └── windows ├── BackdropWindow.cpp ├── BackdropWindow.h ├── MainWindow.cpp ├── MainWindow.h ├── Window.cpp └── Window.h /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/README.md -------------------------------------------------------------------------------- /lib/libunicows.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/lib/libunicows.a -------------------------------------------------------------------------------- /res/application.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/res/application.manifest -------------------------------------------------------------------------------- /res/cppshot32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/res/cppshot32.ico -------------------------------------------------------------------------------- /res/resources.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/res/resources.rc.in -------------------------------------------------------------------------------- /src/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/Utils.cpp -------------------------------------------------------------------------------- /src/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/Utils.h -------------------------------------------------------------------------------- /src/images/CompositeScreenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/images/CompositeScreenshot.cpp -------------------------------------------------------------------------------- /src/images/CompositeScreenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/images/CompositeScreenshot.h -------------------------------------------------------------------------------- /src/images/Screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/images/Screenshot.cpp -------------------------------------------------------------------------------- /src/images/Screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/images/Screenshot.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/managers/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/managers/Application.cpp -------------------------------------------------------------------------------- /src/managers/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/managers/Application.h -------------------------------------------------------------------------------- /src/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/resources.h -------------------------------------------------------------------------------- /src/ui/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/ui/Button.cpp -------------------------------------------------------------------------------- /src/ui/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/ui/Button.h -------------------------------------------------------------------------------- /src/ui/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/ui/Node.cpp -------------------------------------------------------------------------------- /src/ui/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/ui/Node.h -------------------------------------------------------------------------------- /src/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/version.h.in -------------------------------------------------------------------------------- /src/windows/BackdropWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/windows/BackdropWindow.cpp -------------------------------------------------------------------------------- /src/windows/BackdropWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/windows/BackdropWindow.h -------------------------------------------------------------------------------- /src/windows/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/windows/MainWindow.cpp -------------------------------------------------------------------------------- /src/windows/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/windows/MainWindow.h -------------------------------------------------------------------------------- /src/windows/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/windows/Window.cpp -------------------------------------------------------------------------------- /src/windows/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cvolton/CppShot/HEAD/src/windows/Window.h --------------------------------------------------------------------------------