├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── build.yml ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── clip-config.cmake.in ├── clip.cpp ├── clip.h ├── clip_common.h ├── clip_lock_impl.h ├── clip_none.cpp ├── clip_osx.h ├── clip_osx.mm ├── clip_win.cpp ├── clip_win.h ├── clip_win_bmp.cpp ├── clip_win_bmp.h ├── clip_win_hglobal.h ├── clip_win_wic.cpp ├── clip_win_wic.h ├── clip_x11.cpp ├── clip_x11_png.h ├── examples ├── CMakeLists.txt ├── copy.cpp ├── hello_world.cpp ├── int_format.cpp ├── list_clip_formats.cpp ├── paste.cpp ├── put_image.cpp ├── random.h └── show_image.cpp ├── image.cpp └── tests ├── CMakeLists.txt ├── image_tests.cpp ├── test.h ├── text_tests.cpp └── user_format_tests.cpp /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/README.md -------------------------------------------------------------------------------- /clip-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/clip-config.cmake.in -------------------------------------------------------------------------------- /clip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/clip.cpp -------------------------------------------------------------------------------- /clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/clip.h -------------------------------------------------------------------------------- /clip_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/clip_common.h -------------------------------------------------------------------------------- /clip_lock_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/clip_lock_impl.h -------------------------------------------------------------------------------- /clip_none.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/clip_none.cpp -------------------------------------------------------------------------------- /clip_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/clip_osx.h -------------------------------------------------------------------------------- /clip_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/clip_osx.mm -------------------------------------------------------------------------------- /clip_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/clip_win.cpp -------------------------------------------------------------------------------- /clip_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/clip_win.h -------------------------------------------------------------------------------- /clip_win_bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/clip_win_bmp.cpp -------------------------------------------------------------------------------- /clip_win_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/clip_win_bmp.h -------------------------------------------------------------------------------- /clip_win_hglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/clip_win_hglobal.h -------------------------------------------------------------------------------- /clip_win_wic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/clip_win_wic.cpp -------------------------------------------------------------------------------- /clip_win_wic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/clip_win_wic.h -------------------------------------------------------------------------------- /clip_x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/clip_x11.cpp -------------------------------------------------------------------------------- /clip_x11_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/clip_x11_png.h -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/examples/copy.cpp -------------------------------------------------------------------------------- /examples/hello_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/examples/hello_world.cpp -------------------------------------------------------------------------------- /examples/int_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/examples/int_format.cpp -------------------------------------------------------------------------------- /examples/list_clip_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/examples/list_clip_formats.cpp -------------------------------------------------------------------------------- /examples/paste.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/examples/paste.cpp -------------------------------------------------------------------------------- /examples/put_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/examples/put_image.cpp -------------------------------------------------------------------------------- /examples/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/examples/random.h -------------------------------------------------------------------------------- /examples/show_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/examples/show_image.cpp -------------------------------------------------------------------------------- /image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/image.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/image_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/tests/image_tests.cpp -------------------------------------------------------------------------------- /tests/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/tests/test.h -------------------------------------------------------------------------------- /tests/text_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/tests/text_tests.cpp -------------------------------------------------------------------------------- /tests/user_format_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aseprite/clip/HEAD/tests/user_format_tests.cpp --------------------------------------------------------------------------------