├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt ├── resources └── demo_usage.gif ├── setup.py ├── src └── qtgrab │ ├── __init__.py │ ├── coordinates_widget.py │ ├── sample.py │ └── shot_widget.py ├── tests-requirements.txt └── tests ├── test_coordinates_widget.py ├── test_sample.py └── test_shot_widget.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderBerx/QtGrab/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderBerx/QtGrab/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderBerx/QtGrab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderBerx/QtGrab/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PySide2 2 | -------------------------------------------------------------------------------- /resources/demo_usage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderBerx/QtGrab/HEAD/resources/demo_usage.gif -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderBerx/QtGrab/HEAD/setup.py -------------------------------------------------------------------------------- /src/qtgrab/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/qtgrab/coordinates_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderBerx/QtGrab/HEAD/src/qtgrab/coordinates_widget.py -------------------------------------------------------------------------------- /src/qtgrab/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderBerx/QtGrab/HEAD/src/qtgrab/sample.py -------------------------------------------------------------------------------- /src/qtgrab/shot_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderBerx/QtGrab/HEAD/src/qtgrab/shot_widget.py -------------------------------------------------------------------------------- /tests-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderBerx/QtGrab/HEAD/tests-requirements.txt -------------------------------------------------------------------------------- /tests/test_coordinates_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderBerx/QtGrab/HEAD/tests/test_coordinates_widget.py -------------------------------------------------------------------------------- /tests/test_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderBerx/QtGrab/HEAD/tests/test_sample.py -------------------------------------------------------------------------------- /tests/test_shot_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderBerx/QtGrab/HEAD/tests/test_shot_widget.py --------------------------------------------------------------------------------