├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build.yml │ ├── build_appimage.yml │ ├── flake8.yml │ ├── pytest.yml │ └── update_website.yml ├── .gitignore ├── BeeRef.spec ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── README.rst ├── beeref.desktop ├── beeref ├── __init__.py ├── __main__.py ├── actions │ ├── __init__.py │ ├── actions.py │ ├── menu_structure.py │ └── mixin.py ├── assets │ ├── __init__.py │ ├── cursor_flip_h.png │ ├── cursor_flip_h.svg │ ├── cursor_flip_v.png │ ├── cursor_flip_v.svg │ ├── cursor_rotate.png │ ├── cursor_rotate.svg │ ├── logo.icns │ ├── logo.ico │ ├── logo.png │ └── logo.svg ├── commands.py ├── config │ ├── __init__.py │ ├── controls.py │ └── settings.py ├── constants.py ├── documentation │ ├── __init__.py │ └── controls.html ├── fileio │ ├── __init__.py │ ├── errors.py │ ├── export.py │ ├── image.py │ ├── schema.py │ └── sql.py ├── items.py ├── logging.py ├── main_controls.py ├── scene.py ├── selection.py ├── utils.py ├── view.py └── widgets │ ├── __init__.py │ ├── color_gamut.py │ ├── controls │ ├── __init__.py │ ├── common.py │ ├── keyboard.py │ ├── mouse.py │ └── mousewheel.py │ ├── settings.py │ └── welcome_overlay.py ├── codecov.yml ├── images ├── python_version_badge.svg └── screenshot.png ├── org.beeref.BeeRef.appdata.xml ├── pyproject.toml ├── requirements ├── build.txt ├── dev.txt └── test.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── actions │ ├── __init__.py │ ├── test_actions.py │ └── test_mixin.py ├── assets │ ├── test1item.bee │ ├── test3x3.jpg │ ├── test3x3.png │ ├── test3x3_orientation1.jpg │ ├── test3x3_orientation2.jpg │ ├── test3x3_orientation3.jpg │ ├── test3x3_orientation4.jpg │ ├── test3x3_orientation5.jpg │ ├── test3x3_orientation6.jpg │ ├── test3x3_orientation7.jpg │ └── test3x3_orientation8.jpg ├── config │ ├── __init__.py │ ├── test_controls.py │ └── test_settings.py ├── conftest.py ├── fileio │ ├── __init__.py │ ├── test_export.py │ ├── test_export_images_to_directory.py │ ├── test_export_scene_to_pixmap.py │ ├── test_export_scene_to_svg.py │ ├── test_image.py │ ├── test_init.py │ └── test_sql.py ├── items │ ├── test_erroritem.py │ ├── test_items.py │ ├── test_pixmapitem.py │ └── test_textitem.py ├── selection │ ├── test_base_item_mixin.py │ ├── test_multi_select_item.py │ ├── test_rubberband_item.py │ └── test_selectable_mixin.py ├── test_assets.py ├── test_commands.py ├── test_logging.py ├── test_main.py ├── test_scene.py ├── test_utils.py ├── test_view.py ├── utils.py └── widgets │ ├── __init__.py │ ├── controls │ ├── test_controls.py │ ├── test_keyboard.py │ ├── test_mouse.py │ └── test_mousewheel.py │ ├── test_color_gamut.py │ ├── test_settings.py │ ├── test_welcome_overlay.py │ └── test_widgets.py └── tools ├── build_appimage.py ├── find_linux_libs.py ├── linux_libs.json ├── linux_libs_kde.json ├── linux_libs_nativefiledlg.json └── linux_libs_notes.rst /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/build_appimage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/.github/workflows/build_appimage.yml -------------------------------------------------------------------------------- /.github/workflows/flake8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/.github/workflows/flake8.yml -------------------------------------------------------------------------------- /.github/workflows/pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/.github/workflows/pytest.yml -------------------------------------------------------------------------------- /.github/workflows/update_website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/.github/workflows/update_website.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/.gitignore -------------------------------------------------------------------------------- /BeeRef.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/BeeRef.spec -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/README.rst -------------------------------------------------------------------------------- /beeref.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref.desktop -------------------------------------------------------------------------------- /beeref/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beeref/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/__main__.py -------------------------------------------------------------------------------- /beeref/actions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/actions/__init__.py -------------------------------------------------------------------------------- /beeref/actions/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/actions/actions.py -------------------------------------------------------------------------------- /beeref/actions/menu_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/actions/menu_structure.py -------------------------------------------------------------------------------- /beeref/actions/mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/actions/mixin.py -------------------------------------------------------------------------------- /beeref/assets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/assets/__init__.py -------------------------------------------------------------------------------- /beeref/assets/cursor_flip_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/assets/cursor_flip_h.png -------------------------------------------------------------------------------- /beeref/assets/cursor_flip_h.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/assets/cursor_flip_h.svg -------------------------------------------------------------------------------- /beeref/assets/cursor_flip_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/assets/cursor_flip_v.png -------------------------------------------------------------------------------- /beeref/assets/cursor_flip_v.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/assets/cursor_flip_v.svg -------------------------------------------------------------------------------- /beeref/assets/cursor_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/assets/cursor_rotate.png -------------------------------------------------------------------------------- /beeref/assets/cursor_rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/assets/cursor_rotate.svg -------------------------------------------------------------------------------- /beeref/assets/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/assets/logo.icns -------------------------------------------------------------------------------- /beeref/assets/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/assets/logo.ico -------------------------------------------------------------------------------- /beeref/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/assets/logo.png -------------------------------------------------------------------------------- /beeref/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/assets/logo.svg -------------------------------------------------------------------------------- /beeref/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/commands.py -------------------------------------------------------------------------------- /beeref/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/config/__init__.py -------------------------------------------------------------------------------- /beeref/config/controls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/config/controls.py -------------------------------------------------------------------------------- /beeref/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/config/settings.py -------------------------------------------------------------------------------- /beeref/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/constants.py -------------------------------------------------------------------------------- /beeref/documentation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/documentation/__init__.py -------------------------------------------------------------------------------- /beeref/documentation/controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/documentation/controls.html -------------------------------------------------------------------------------- /beeref/fileio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/fileio/__init__.py -------------------------------------------------------------------------------- /beeref/fileio/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/fileio/errors.py -------------------------------------------------------------------------------- /beeref/fileio/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/fileio/export.py -------------------------------------------------------------------------------- /beeref/fileio/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/fileio/image.py -------------------------------------------------------------------------------- /beeref/fileio/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/fileio/schema.py -------------------------------------------------------------------------------- /beeref/fileio/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/fileio/sql.py -------------------------------------------------------------------------------- /beeref/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/items.py -------------------------------------------------------------------------------- /beeref/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/logging.py -------------------------------------------------------------------------------- /beeref/main_controls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/main_controls.py -------------------------------------------------------------------------------- /beeref/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/scene.py -------------------------------------------------------------------------------- /beeref/selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/selection.py -------------------------------------------------------------------------------- /beeref/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/utils.py -------------------------------------------------------------------------------- /beeref/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/view.py -------------------------------------------------------------------------------- /beeref/widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/widgets/__init__.py -------------------------------------------------------------------------------- /beeref/widgets/color_gamut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/widgets/color_gamut.py -------------------------------------------------------------------------------- /beeref/widgets/controls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/widgets/controls/__init__.py -------------------------------------------------------------------------------- /beeref/widgets/controls/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/widgets/controls/common.py -------------------------------------------------------------------------------- /beeref/widgets/controls/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/widgets/controls/keyboard.py -------------------------------------------------------------------------------- /beeref/widgets/controls/mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/widgets/controls/mouse.py -------------------------------------------------------------------------------- /beeref/widgets/controls/mousewheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/widgets/controls/mousewheel.py -------------------------------------------------------------------------------- /beeref/widgets/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/widgets/settings.py -------------------------------------------------------------------------------- /beeref/widgets/welcome_overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/beeref/widgets/welcome_overlay.py -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/python_version_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/images/python_version_badge.svg -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /org.beeref.BeeRef.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/org.beeref.BeeRef.appdata.xml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements/build.txt: -------------------------------------------------------------------------------- 1 | # For the build action on github 2 | 3 | pyinstaller==6.6.0 4 | -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/requirements/test.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/actions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/actions/test_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/actions/test_actions.py -------------------------------------------------------------------------------- /tests/actions/test_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/actions/test_mixin.py -------------------------------------------------------------------------------- /tests/assets/test1item.bee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/assets/test1item.bee -------------------------------------------------------------------------------- /tests/assets/test3x3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/assets/test3x3.jpg -------------------------------------------------------------------------------- /tests/assets/test3x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/assets/test3x3.png -------------------------------------------------------------------------------- /tests/assets/test3x3_orientation1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/assets/test3x3_orientation1.jpg -------------------------------------------------------------------------------- /tests/assets/test3x3_orientation2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/assets/test3x3_orientation2.jpg -------------------------------------------------------------------------------- /tests/assets/test3x3_orientation3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/assets/test3x3_orientation3.jpg -------------------------------------------------------------------------------- /tests/assets/test3x3_orientation4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/assets/test3x3_orientation4.jpg -------------------------------------------------------------------------------- /tests/assets/test3x3_orientation5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/assets/test3x3_orientation5.jpg -------------------------------------------------------------------------------- /tests/assets/test3x3_orientation6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/assets/test3x3_orientation6.jpg -------------------------------------------------------------------------------- /tests/assets/test3x3_orientation7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/assets/test3x3_orientation7.jpg -------------------------------------------------------------------------------- /tests/assets/test3x3_orientation8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/assets/test3x3_orientation8.jpg -------------------------------------------------------------------------------- /tests/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/config/test_controls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/config/test_controls.py -------------------------------------------------------------------------------- /tests/config/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/config/test_settings.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/fileio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fileio/test_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/fileio/test_export.py -------------------------------------------------------------------------------- /tests/fileio/test_export_images_to_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/fileio/test_export_images_to_directory.py -------------------------------------------------------------------------------- /tests/fileio/test_export_scene_to_pixmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/fileio/test_export_scene_to_pixmap.py -------------------------------------------------------------------------------- /tests/fileio/test_export_scene_to_svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/fileio/test_export_scene_to_svg.py -------------------------------------------------------------------------------- /tests/fileio/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/fileio/test_image.py -------------------------------------------------------------------------------- /tests/fileio/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/fileio/test_init.py -------------------------------------------------------------------------------- /tests/fileio/test_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/fileio/test_sql.py -------------------------------------------------------------------------------- /tests/items/test_erroritem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/items/test_erroritem.py -------------------------------------------------------------------------------- /tests/items/test_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/items/test_items.py -------------------------------------------------------------------------------- /tests/items/test_pixmapitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/items/test_pixmapitem.py -------------------------------------------------------------------------------- /tests/items/test_textitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/items/test_textitem.py -------------------------------------------------------------------------------- /tests/selection/test_base_item_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/selection/test_base_item_mixin.py -------------------------------------------------------------------------------- /tests/selection/test_multi_select_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/selection/test_multi_select_item.py -------------------------------------------------------------------------------- /tests/selection/test_rubberband_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/selection/test_rubberband_item.py -------------------------------------------------------------------------------- /tests/selection/test_selectable_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/selection/test_selectable_mixin.py -------------------------------------------------------------------------------- /tests/test_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/test_assets.py -------------------------------------------------------------------------------- /tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/test_commands.py -------------------------------------------------------------------------------- /tests/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/test_logging.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/test_scene.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/test_view.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tests/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/widgets/controls/test_controls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/widgets/controls/test_controls.py -------------------------------------------------------------------------------- /tests/widgets/controls/test_keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/widgets/controls/test_keyboard.py -------------------------------------------------------------------------------- /tests/widgets/controls/test_mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/widgets/controls/test_mouse.py -------------------------------------------------------------------------------- /tests/widgets/controls/test_mousewheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/widgets/controls/test_mousewheel.py -------------------------------------------------------------------------------- /tests/widgets/test_color_gamut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/widgets/test_color_gamut.py -------------------------------------------------------------------------------- /tests/widgets/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/widgets/test_settings.py -------------------------------------------------------------------------------- /tests/widgets/test_welcome_overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/widgets/test_welcome_overlay.py -------------------------------------------------------------------------------- /tests/widgets/test_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tests/widgets/test_widgets.py -------------------------------------------------------------------------------- /tools/build_appimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tools/build_appimage.py -------------------------------------------------------------------------------- /tools/find_linux_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tools/find_linux_libs.py -------------------------------------------------------------------------------- /tools/linux_libs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tools/linux_libs.json -------------------------------------------------------------------------------- /tools/linux_libs_kde.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tools/linux_libs_kde.json -------------------------------------------------------------------------------- /tools/linux_libs_nativefiledlg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tools/linux_libs_nativefiledlg.json -------------------------------------------------------------------------------- /tools/linux_libs_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/beeref/HEAD/tools/linux_libs_notes.rst --------------------------------------------------------------------------------