├── .bumpversion.cfg ├── .codecov.yml ├── .coveragerc ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── docs.yml │ └── pythonpublish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pydocstylerc ├── .pylintrc ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── README.md ├── c-extension ├── brightness_contrast.h ├── definitions.h ├── helper_func.h ├── hue_saturation_lightness.h ├── manipulate.c └── math_func_eval.h ├── docs ├── Makefile ├── _static │ ├── custom.css │ ├── favicon.ico │ ├── scrots │ │ ├── command_dark.png │ │ ├── command_light.png │ │ ├── image_dark.png │ │ ├── image_light.png │ │ ├── library_dark.png │ │ ├── library_light.png │ │ ├── manipulate_dark.png │ │ ├── manipulate_light.png │ │ ├── thumbnail_dark.png │ │ └── thumbnail_light.png │ └── vimiv │ │ ├── vimiv.png │ │ ├── vimiv.svg │ │ ├── vimiv_banner_800.png │ │ └── vimiv_banner_darkmode_800.png ├── changelog.rst ├── conf.py ├── description.rst ├── documentation │ ├── cl_options │ │ └── index.rst │ ├── commands.rst │ ├── configuration │ │ ├── index.rst │ │ ├── keybindings.rst │ │ ├── plugins.rst │ │ ├── settings.rst │ │ ├── statusbar.rst │ │ └── style.rst │ ├── contributing.rst │ ├── contributing_bugs.rst │ ├── datafile_warning.rst │ ├── dependency_info.rst │ ├── getting_help.rst │ ├── getting_started.rst │ ├── hacking.rst │ ├── index.rst │ ├── install.rst │ ├── metadata.rst │ ├── migrating.rst │ └── updating_icon_cache.rst ├── index.rst ├── manpage │ └── vimiv.1.rst ├── screenshots.rst └── theme.conf ├── fastentrypoints.py ├── icons ├── vimiv.svg ├── vimiv_128x128.png ├── vimiv_16x16.png ├── vimiv_256x256.png ├── vimiv_32x32.png ├── vimiv_512x512.png └── vimiv_64x64.png ├── misc ├── Makefile ├── org.karlch.vimiv.qt.metainfo.xml ├── requirements │ ├── requirements_cov.txt │ ├── requirements_docs.txt │ ├── requirements_lint.txt │ ├── requirements_mypy.txt │ ├── requirements_packaging.txt │ ├── requirements_piexif.txt │ ├── requirements_pyexiv2.txt │ ├── requirements_pyqt5.txt │ ├── requirements_pyqt6.txt │ ├── requirements_pyside6.txt │ ├── requirements_setup.txt │ ├── requirements_tests.txt │ └── requirements_tox.txt ├── vimiv.1 └── vimiv.desktop ├── mypy.ini ├── pytest.ini ├── scripts ├── gen_manpage.sh ├── lint_tests.py ├── maybe_build_cextension.py ├── pylint_checkers │ ├── __init__.py │ ├── check_count.py │ ├── check_docstring.py │ └── check_header.py ├── rstutils.py ├── src2rst.py ├── uninstall_pythonpkg.sh └── vimiv_history.py ├── setup.py ├── tests ├── conftest.py ├── end2end │ ├── conftest.py │ ├── features │ │ ├── api │ │ │ ├── conftest.py │ │ │ ├── keybindings.feature │ │ │ ├── mark.feature │ │ │ ├── modeswitch.feature │ │ │ ├── print.feature │ │ │ ├── prompt.feature │ │ │ ├── rename.feature │ │ │ ├── test_keybindings_bdd.py │ │ │ ├── test_mark_bdd.py │ │ │ ├── test_modeswitch_bdd.py │ │ │ ├── test_print_bdd.py │ │ │ ├── test_prompt_bdd.py │ │ │ ├── test_rename_bdd.py │ │ │ ├── test_working_directory_bdd.py │ │ │ └── working_directory.feature │ │ ├── command │ │ │ ├── aliases.feature │ │ │ ├── chaining.feature │ │ │ ├── conftest.py │ │ │ ├── expand_wildcards.feature │ │ │ ├── external.feature │ │ │ ├── fail_run_command.feature │ │ │ ├── misccommands.feature │ │ │ ├── repeat.feature │ │ │ ├── search.feature │ │ │ ├── test_aliases_bdd.py │ │ │ ├── test_chaining_bdd.py │ │ │ ├── test_expand_wildcards_bdd.py │ │ │ ├── test_external_bdd.py │ │ │ ├── test_fail_run_command_bdd.py │ │ │ ├── test_misccommands_bdd.py │ │ │ ├── test_repeat_bdd.py │ │ │ └── test_search_bdd.py │ │ ├── commandline │ │ │ ├── commandline.feature │ │ │ └── test_commandline_bdd.py │ │ ├── completion │ │ │ ├── completion.feature │ │ │ └── test_completion_bdd.py │ │ ├── config │ │ │ ├── configcommands.feature │ │ │ └── test_configcommands_bdd.py │ │ ├── conftest.py │ │ ├── edit │ │ │ ├── conftest.py │ │ │ ├── crop.feature │ │ │ ├── manipulate.feature │ │ │ ├── manipulate_segfault.feature │ │ │ ├── straighten.feature │ │ │ ├── test_crop_bdd.py │ │ │ ├── test_manipulate_bdd.py │ │ │ ├── test_straighten_bdd.py │ │ │ ├── test_transform_bdd.py │ │ │ └── transform.feature │ │ ├── image │ │ │ ├── conftest.py │ │ │ ├── gif.feature │ │ │ ├── imagedelete.feature │ │ │ ├── imagefit.feature │ │ │ ├── imagenavigate.feature │ │ │ ├── imageopen.feature │ │ │ ├── imageorder.feature │ │ │ ├── imagescroll.feature │ │ │ ├── imagetitle.feature │ │ │ ├── imagezoom.feature │ │ │ ├── metadata.feature │ │ │ ├── multidirectory.feature │ │ │ ├── slideshow.feature │ │ │ ├── svg.feature │ │ │ ├── test_gif_bdd.py │ │ │ ├── test_imagedelete_bdd.py │ │ │ ├── test_imagefit_bdd.py │ │ │ ├── test_imagenavigate_bdd.py │ │ │ ├── test_imageopen_bdd.py │ │ │ ├── test_imageorder_bdd.py │ │ │ ├── test_imagescroll_bdd.py │ │ │ ├── test_imagetitle_bdd.py │ │ │ ├── test_imagezoom_bdd.py │ │ │ ├── test_metadata_bdd.py │ │ │ ├── test_multidirectory_bdd.py │ │ │ ├── test_slideshow_bdd.py │ │ │ ├── test_svg_bdd.py │ │ │ ├── test_write_bdd.py │ │ │ └── write.feature │ │ ├── library │ │ │ ├── library.feature │ │ │ ├── libraryresize.feature │ │ │ ├── libraryscroll.feature │ │ │ ├── test_library_bdd.py │ │ │ ├── test_libraryresize_bdd.py │ │ │ └── test_libraryscroll_bdd.py │ │ ├── misc │ │ │ ├── clipboard.feature │ │ │ ├── conftest.py │ │ │ ├── fullscreen.feature │ │ │ ├── keybindings_popup.feature │ │ │ ├── keyhint.feature │ │ │ ├── migration_popup.feature │ │ │ ├── no_optional.feature │ │ │ ├── startup.feature │ │ │ ├── symlink.feature │ │ │ ├── teardown.feature │ │ │ ├── test_clipboard_bdd.py │ │ │ ├── test_fullscreen_bdd.py │ │ │ ├── test_keybindings_popup_bdd.py │ │ │ ├── test_keyhint_bdd.py │ │ │ ├── test_migration_popup_bdd.py │ │ │ ├── test_no_optional_bdd.py │ │ │ ├── test_startup_bdd.py │ │ │ ├── test_symlink_bdd.py │ │ │ ├── test_teardown_bdd.py │ │ │ ├── test_version_bdd.py │ │ │ └── version.feature │ │ ├── plugins │ │ │ ├── plugins.feature │ │ │ └── test_plugins_bdd.py │ │ ├── statusbar │ │ │ ├── message.feature │ │ │ ├── status.feature │ │ │ ├── test_message_bdd.py │ │ │ └── test_status_bdd.py │ │ └── thumbnail │ │ │ ├── .zcompdump │ │ │ ├── conftest.py │ │ │ ├── test_thumbnailgoto_bdd.py │ │ │ ├── test_thumbnailmark_bdd.py │ │ │ ├── test_thumbnailscroll_bdd.py │ │ │ ├── test_thumbnailzoom_bdd.py │ │ │ ├── thumbnailgoto.feature │ │ │ ├── thumbnailmark.feature │ │ │ ├── thumbnailscroll.feature │ │ │ └── thumbnailzoom.feature │ └── mockdecorators.py ├── integration │ ├── __init__.py │ ├── conftest.py │ ├── test_app.py │ ├── test_edit.py │ ├── test_metadata.py │ ├── test_read_bindings.py │ └── test_read_settings.py └── unit │ ├── __init__.py │ ├── api │ ├── test_keybindings.py │ ├── test_mark.py │ ├── test_objreg.py │ ├── test_prompt.py │ ├── test_settings.py │ └── test_status.py │ ├── commands │ ├── test_aliases.py │ ├── test_argtypes.py │ ├── test_commands.py │ ├── test_history.py │ ├── test_history_deque.py │ ├── test_runners.py │ ├── test_search.py │ └── test_wildcards.py │ ├── config │ ├── test_config.py │ ├── test_external_configparser.py │ └── test_styles.py │ ├── conftest.py │ ├── gui │ ├── test_eventhandler.py │ ├── test_statusbar.py │ └── test_thumbnail.py │ ├── imutils │ └── test_imtransform.py │ ├── plugins │ ├── mock_plugin.py │ ├── mock_plugin_syntax_error.py │ └── test_plugins.py │ ├── test_checkversion.py │ ├── test_parser.py │ ├── test_version.py │ └── utils │ ├── _module_for_lazy.py │ ├── test_crash_handler.py │ ├── test_debug.py │ ├── test_files.py │ ├── test_imageheader.py │ ├── test_lazy.py │ ├── test_log.py │ ├── test_migration.py │ ├── test_thumbnail_manager.py │ ├── test_trash_manager.py │ ├── test_trie.py │ ├── test_utils.py │ └── test_xdg.py ├── tox.ini └── vimiv ├── __init__.py ├── __main__.py ├── api ├── __init__.py ├── _mark.py ├── _modules.py ├── commands.py ├── completion.py ├── keybindings.py ├── modes.py ├── objreg.py ├── prompt.py ├── settings.py ├── signals.py ├── status.py └── working_directory.py ├── app.py ├── checkversion.py ├── commands ├── __init__.py ├── aliases.py ├── argtypes.py ├── delete_command.py ├── external.py ├── help_command.py ├── history.py ├── misccommands.py ├── runners.py ├── search.py └── wildcards.py ├── completion ├── __init__.py ├── completer.py └── completionmodels.py ├── config ├── __init__.py ├── _style_options.py ├── configcommands.py ├── configfile.py ├── external_configparser.py ├── keyfile.py └── styles.py ├── gui ├── __init__.py ├── commandline.py ├── commandwidget.py ├── completionwidget.py ├── crop_widget.py ├── eventhandler.py ├── image.py ├── keybindings_popup.py ├── keyhintwidget.py ├── library.py ├── mainwindow.py ├── manipulate.py ├── message.py ├── metadatawidget.py ├── prompt.py ├── resize.py ├── statusbar.py ├── straightenwidget.py ├── synchronize.py ├── thumbnail.py ├── transformwidget.py └── version_popup.py ├── imutils ├── __init__.py ├── _file_handler.py ├── current_pixmap.py ├── edit_handler.py ├── filelist.py ├── immanipulate.py ├── imtransform.py ├── metadata.py └── slideshow.py ├── parser.py ├── plugins ├── __init__.py ├── demo.py ├── imageformats.py ├── metadata.py ├── metadata_piexif.py ├── metadata_pyexiv2.py └── print.py ├── qt ├── __init__.py ├── core.py ├── gui.py ├── printsupport.py ├── svg.py └── widgets.py ├── startup.py ├── utils ├── __init__.py ├── crash_handler.py ├── customtypes.py ├── debug.py ├── files.py ├── imageheader.py ├── imagereader.py ├── lazy.py ├── log.py ├── migration.py ├── thumbnail_manager.py ├── trash_manager.py ├── trie.py └── xdg.py ├── version.py └── widgets.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/.github/CONTRIBUTING.rst -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pydocstylerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/.pydocstylerc -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/.pylintrc -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/README.md -------------------------------------------------------------------------------- /c-extension/brightness_contrast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/c-extension/brightness_contrast.h -------------------------------------------------------------------------------- /c-extension/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/c-extension/definitions.h -------------------------------------------------------------------------------- /c-extension/helper_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/c-extension/helper_func.h -------------------------------------------------------------------------------- /c-extension/hue_saturation_lightness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/c-extension/hue_saturation_lightness.h -------------------------------------------------------------------------------- /c-extension/manipulate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/c-extension/manipulate.c -------------------------------------------------------------------------------- /c-extension/math_func_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/c-extension/math_func_eval.h -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/_static/scrots/command_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/_static/scrots/command_dark.png -------------------------------------------------------------------------------- /docs/_static/scrots/command_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/_static/scrots/command_light.png -------------------------------------------------------------------------------- /docs/_static/scrots/image_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/_static/scrots/image_dark.png -------------------------------------------------------------------------------- /docs/_static/scrots/image_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/_static/scrots/image_light.png -------------------------------------------------------------------------------- /docs/_static/scrots/library_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/_static/scrots/library_dark.png -------------------------------------------------------------------------------- /docs/_static/scrots/library_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/_static/scrots/library_light.png -------------------------------------------------------------------------------- /docs/_static/scrots/manipulate_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/_static/scrots/manipulate_dark.png -------------------------------------------------------------------------------- /docs/_static/scrots/manipulate_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/_static/scrots/manipulate_light.png -------------------------------------------------------------------------------- /docs/_static/scrots/thumbnail_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/_static/scrots/thumbnail_dark.png -------------------------------------------------------------------------------- /docs/_static/scrots/thumbnail_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/_static/scrots/thumbnail_light.png -------------------------------------------------------------------------------- /docs/_static/vimiv/vimiv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/_static/vimiv/vimiv.png -------------------------------------------------------------------------------- /docs/_static/vimiv/vimiv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/_static/vimiv/vimiv.svg -------------------------------------------------------------------------------- /docs/_static/vimiv/vimiv_banner_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/_static/vimiv/vimiv_banner_800.png -------------------------------------------------------------------------------- /docs/_static/vimiv/vimiv_banner_darkmode_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/_static/vimiv/vimiv_banner_darkmode_800.png -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/description.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/description.rst -------------------------------------------------------------------------------- /docs/documentation/cl_options/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/cl_options/index.rst -------------------------------------------------------------------------------- /docs/documentation/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/commands.rst -------------------------------------------------------------------------------- /docs/documentation/configuration/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/configuration/index.rst -------------------------------------------------------------------------------- /docs/documentation/configuration/keybindings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/configuration/keybindings.rst -------------------------------------------------------------------------------- /docs/documentation/configuration/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/configuration/plugins.rst -------------------------------------------------------------------------------- /docs/documentation/configuration/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/configuration/settings.rst -------------------------------------------------------------------------------- /docs/documentation/configuration/statusbar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/configuration/statusbar.rst -------------------------------------------------------------------------------- /docs/documentation/configuration/style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/configuration/style.rst -------------------------------------------------------------------------------- /docs/documentation/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/contributing.rst -------------------------------------------------------------------------------- /docs/documentation/contributing_bugs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/contributing_bugs.rst -------------------------------------------------------------------------------- /docs/documentation/datafile_warning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/datafile_warning.rst -------------------------------------------------------------------------------- /docs/documentation/dependency_info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/dependency_info.rst -------------------------------------------------------------------------------- /docs/documentation/getting_help.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/getting_help.rst -------------------------------------------------------------------------------- /docs/documentation/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/getting_started.rst -------------------------------------------------------------------------------- /docs/documentation/hacking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/hacking.rst -------------------------------------------------------------------------------- /docs/documentation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/index.rst -------------------------------------------------------------------------------- /docs/documentation/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/install.rst -------------------------------------------------------------------------------- /docs/documentation/metadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/metadata.rst -------------------------------------------------------------------------------- /docs/documentation/migrating.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/migrating.rst -------------------------------------------------------------------------------- /docs/documentation/updating_icon_cache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/documentation/updating_icon_cache.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/manpage/vimiv.1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/manpage/vimiv.1.rst -------------------------------------------------------------------------------- /docs/screenshots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/screenshots.rst -------------------------------------------------------------------------------- /docs/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/docs/theme.conf -------------------------------------------------------------------------------- /fastentrypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/fastentrypoints.py -------------------------------------------------------------------------------- /icons/vimiv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/icons/vimiv.svg -------------------------------------------------------------------------------- /icons/vimiv_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/icons/vimiv_128x128.png -------------------------------------------------------------------------------- /icons/vimiv_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/icons/vimiv_16x16.png -------------------------------------------------------------------------------- /icons/vimiv_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/icons/vimiv_256x256.png -------------------------------------------------------------------------------- /icons/vimiv_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/icons/vimiv_32x32.png -------------------------------------------------------------------------------- /icons/vimiv_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/icons/vimiv_512x512.png -------------------------------------------------------------------------------- /icons/vimiv_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/icons/vimiv_64x64.png -------------------------------------------------------------------------------- /misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/misc/Makefile -------------------------------------------------------------------------------- /misc/org.karlch.vimiv.qt.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/misc/org.karlch.vimiv.qt.metainfo.xml -------------------------------------------------------------------------------- /misc/requirements/requirements_cov.txt: -------------------------------------------------------------------------------- 1 | coverage==7.5.1 2 | pytest-cov==5.0.0 3 | -------------------------------------------------------------------------------- /misc/requirements/requirements_docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/misc/requirements/requirements_docs.txt -------------------------------------------------------------------------------- /misc/requirements/requirements_lint.txt: -------------------------------------------------------------------------------- 1 | pylint==3.1.0 2 | black==24.4.2 3 | pydocstyle==6.3.0 4 | -------------------------------------------------------------------------------- /misc/requirements/requirements_mypy.txt: -------------------------------------------------------------------------------- 1 | mypy==1.10.0 2 | PyQt5-stubs==5.15.6.0 3 | -------------------------------------------------------------------------------- /misc/requirements/requirements_packaging.txt: -------------------------------------------------------------------------------- 1 | pyroma==4.2 2 | check-manifest==0.49 3 | -------------------------------------------------------------------------------- /misc/requirements/requirements_piexif.txt: -------------------------------------------------------------------------------- 1 | piexif==1.1.3 2 | -------------------------------------------------------------------------------- /misc/requirements/requirements_pyexiv2.txt: -------------------------------------------------------------------------------- 1 | py3exiv2==0.11.0 2 | -------------------------------------------------------------------------------- /misc/requirements/requirements_pyqt5.txt: -------------------------------------------------------------------------------- 1 | PyQt5==5.15.10 2 | -------------------------------------------------------------------------------- /misc/requirements/requirements_pyqt6.txt: -------------------------------------------------------------------------------- 1 | PyQt6==6.7.0 2 | -------------------------------------------------------------------------------- /misc/requirements/requirements_pyside6.txt: -------------------------------------------------------------------------------- 1 | PySide6==6.7.0 2 | -------------------------------------------------------------------------------- /misc/requirements/requirements_setup.txt: -------------------------------------------------------------------------------- 1 | setuptools>=40.8.0 2 | -------------------------------------------------------------------------------- /misc/requirements/requirements_tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/misc/requirements/requirements_tests.txt -------------------------------------------------------------------------------- /misc/requirements/requirements_tox.txt: -------------------------------------------------------------------------------- 1 | tox==4.15.0 2 | -------------------------------------------------------------------------------- /misc/vimiv.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/misc/vimiv.1 -------------------------------------------------------------------------------- /misc/vimiv.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/misc/vimiv.desktop -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/mypy.ini -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/pytest.ini -------------------------------------------------------------------------------- /scripts/gen_manpage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/scripts/gen_manpage.sh -------------------------------------------------------------------------------- /scripts/lint_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/scripts/lint_tests.py -------------------------------------------------------------------------------- /scripts/maybe_build_cextension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/scripts/maybe_build_cextension.py -------------------------------------------------------------------------------- /scripts/pylint_checkers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/scripts/pylint_checkers/__init__.py -------------------------------------------------------------------------------- /scripts/pylint_checkers/check_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/scripts/pylint_checkers/check_count.py -------------------------------------------------------------------------------- /scripts/pylint_checkers/check_docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/scripts/pylint_checkers/check_docstring.py -------------------------------------------------------------------------------- /scripts/pylint_checkers/check_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/scripts/pylint_checkers/check_header.py -------------------------------------------------------------------------------- /scripts/rstutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/scripts/rstutils.py -------------------------------------------------------------------------------- /scripts/src2rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/scripts/src2rst.py -------------------------------------------------------------------------------- /scripts/uninstall_pythonpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/scripts/uninstall_pythonpkg.sh -------------------------------------------------------------------------------- /scripts/vimiv_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/scripts/vimiv_history.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/end2end/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/conftest.py -------------------------------------------------------------------------------- /tests/end2end/features/api/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/api/conftest.py -------------------------------------------------------------------------------- /tests/end2end/features/api/keybindings.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/api/keybindings.feature -------------------------------------------------------------------------------- /tests/end2end/features/api/mark.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/api/mark.feature -------------------------------------------------------------------------------- /tests/end2end/features/api/modeswitch.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/api/modeswitch.feature -------------------------------------------------------------------------------- /tests/end2end/features/api/print.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/api/print.feature -------------------------------------------------------------------------------- /tests/end2end/features/api/prompt.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/api/prompt.feature -------------------------------------------------------------------------------- /tests/end2end/features/api/rename.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/api/rename.feature -------------------------------------------------------------------------------- /tests/end2end/features/api/test_keybindings_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/api/test_keybindings_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/api/test_mark_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/api/test_mark_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/api/test_modeswitch_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/api/test_modeswitch_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/api/test_print_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/api/test_print_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/api/test_prompt_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/api/test_prompt_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/api/test_rename_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/api/test_rename_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/api/test_working_directory_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/api/test_working_directory_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/api/working_directory.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/api/working_directory.feature -------------------------------------------------------------------------------- /tests/end2end/features/command/aliases.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/command/aliases.feature -------------------------------------------------------------------------------- /tests/end2end/features/command/chaining.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/command/chaining.feature -------------------------------------------------------------------------------- /tests/end2end/features/command/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/command/conftest.py -------------------------------------------------------------------------------- /tests/end2end/features/command/expand_wildcards.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/command/expand_wildcards.feature -------------------------------------------------------------------------------- /tests/end2end/features/command/external.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/command/external.feature -------------------------------------------------------------------------------- /tests/end2end/features/command/fail_run_command.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/command/fail_run_command.feature -------------------------------------------------------------------------------- /tests/end2end/features/command/misccommands.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/command/misccommands.feature -------------------------------------------------------------------------------- /tests/end2end/features/command/repeat.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/command/repeat.feature -------------------------------------------------------------------------------- /tests/end2end/features/command/search.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/command/search.feature -------------------------------------------------------------------------------- /tests/end2end/features/command/test_aliases_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/command/test_aliases_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/command/test_chaining_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/command/test_chaining_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/command/test_expand_wildcards_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/command/test_expand_wildcards_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/command/test_external_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/command/test_external_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/command/test_fail_run_command_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/command/test_fail_run_command_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/command/test_misccommands_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/command/test_misccommands_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/command/test_repeat_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/command/test_repeat_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/command/test_search_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/command/test_search_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/commandline/commandline.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/commandline/commandline.feature -------------------------------------------------------------------------------- /tests/end2end/features/commandline/test_commandline_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/commandline/test_commandline_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/completion/completion.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/completion/completion.feature -------------------------------------------------------------------------------- /tests/end2end/features/completion/test_completion_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/completion/test_completion_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/config/configcommands.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/config/configcommands.feature -------------------------------------------------------------------------------- /tests/end2end/features/config/test_configcommands_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/config/test_configcommands_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/conftest.py -------------------------------------------------------------------------------- /tests/end2end/features/edit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/edit/conftest.py -------------------------------------------------------------------------------- /tests/end2end/features/edit/crop.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/edit/crop.feature -------------------------------------------------------------------------------- /tests/end2end/features/edit/manipulate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/edit/manipulate.feature -------------------------------------------------------------------------------- /tests/end2end/features/edit/manipulate_segfault.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/edit/manipulate_segfault.feature -------------------------------------------------------------------------------- /tests/end2end/features/edit/straighten.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/edit/straighten.feature -------------------------------------------------------------------------------- /tests/end2end/features/edit/test_crop_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/edit/test_crop_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/edit/test_manipulate_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/edit/test_manipulate_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/edit/test_straighten_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/edit/test_straighten_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/edit/test_transform_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/edit/test_transform_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/edit/transform.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/edit/transform.feature -------------------------------------------------------------------------------- /tests/end2end/features/image/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/conftest.py -------------------------------------------------------------------------------- /tests/end2end/features/image/gif.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/gif.feature -------------------------------------------------------------------------------- /tests/end2end/features/image/imagedelete.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/imagedelete.feature -------------------------------------------------------------------------------- /tests/end2end/features/image/imagefit.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/imagefit.feature -------------------------------------------------------------------------------- /tests/end2end/features/image/imagenavigate.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/imagenavigate.feature -------------------------------------------------------------------------------- /tests/end2end/features/image/imageopen.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/imageopen.feature -------------------------------------------------------------------------------- /tests/end2end/features/image/imageorder.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/imageorder.feature -------------------------------------------------------------------------------- /tests/end2end/features/image/imagescroll.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/imagescroll.feature -------------------------------------------------------------------------------- /tests/end2end/features/image/imagetitle.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/imagetitle.feature -------------------------------------------------------------------------------- /tests/end2end/features/image/imagezoom.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/imagezoom.feature -------------------------------------------------------------------------------- /tests/end2end/features/image/metadata.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/metadata.feature -------------------------------------------------------------------------------- /tests/end2end/features/image/multidirectory.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/multidirectory.feature -------------------------------------------------------------------------------- /tests/end2end/features/image/slideshow.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/slideshow.feature -------------------------------------------------------------------------------- /tests/end2end/features/image/svg.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/svg.feature -------------------------------------------------------------------------------- /tests/end2end/features/image/test_gif_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/test_gif_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/image/test_imagedelete_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/test_imagedelete_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/image/test_imagefit_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/test_imagefit_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/image/test_imagenavigate_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/test_imagenavigate_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/image/test_imageopen_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/test_imageopen_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/image/test_imageorder_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/test_imageorder_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/image/test_imagescroll_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/test_imagescroll_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/image/test_imagetitle_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/test_imagetitle_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/image/test_imagezoom_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/test_imagezoom_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/image/test_metadata_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/test_metadata_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/image/test_multidirectory_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/test_multidirectory_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/image/test_slideshow_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/test_slideshow_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/image/test_svg_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/test_svg_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/image/test_write_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/test_write_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/image/write.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/image/write.feature -------------------------------------------------------------------------------- /tests/end2end/features/library/library.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/library/library.feature -------------------------------------------------------------------------------- /tests/end2end/features/library/libraryresize.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/library/libraryresize.feature -------------------------------------------------------------------------------- /tests/end2end/features/library/libraryscroll.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/library/libraryscroll.feature -------------------------------------------------------------------------------- /tests/end2end/features/library/test_library_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/library/test_library_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/library/test_libraryresize_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/library/test_libraryresize_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/library/test_libraryscroll_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/library/test_libraryscroll_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/misc/clipboard.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/clipboard.feature -------------------------------------------------------------------------------- /tests/end2end/features/misc/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/conftest.py -------------------------------------------------------------------------------- /tests/end2end/features/misc/fullscreen.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/fullscreen.feature -------------------------------------------------------------------------------- /tests/end2end/features/misc/keybindings_popup.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/keybindings_popup.feature -------------------------------------------------------------------------------- /tests/end2end/features/misc/keyhint.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/keyhint.feature -------------------------------------------------------------------------------- /tests/end2end/features/misc/migration_popup.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/migration_popup.feature -------------------------------------------------------------------------------- /tests/end2end/features/misc/no_optional.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/no_optional.feature -------------------------------------------------------------------------------- /tests/end2end/features/misc/startup.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/startup.feature -------------------------------------------------------------------------------- /tests/end2end/features/misc/symlink.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/symlink.feature -------------------------------------------------------------------------------- /tests/end2end/features/misc/teardown.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/teardown.feature -------------------------------------------------------------------------------- /tests/end2end/features/misc/test_clipboard_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/test_clipboard_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/misc/test_fullscreen_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/test_fullscreen_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/misc/test_keybindings_popup_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/test_keybindings_popup_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/misc/test_keyhint_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/test_keyhint_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/misc/test_migration_popup_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/test_migration_popup_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/misc/test_no_optional_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/test_no_optional_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/misc/test_startup_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/test_startup_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/misc/test_symlink_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/test_symlink_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/misc/test_teardown_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/test_teardown_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/misc/test_version_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/test_version_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/misc/version.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/misc/version.feature -------------------------------------------------------------------------------- /tests/end2end/features/plugins/plugins.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/plugins/plugins.feature -------------------------------------------------------------------------------- /tests/end2end/features/plugins/test_plugins_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/plugins/test_plugins_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/statusbar/message.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/statusbar/message.feature -------------------------------------------------------------------------------- /tests/end2end/features/statusbar/status.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/statusbar/status.feature -------------------------------------------------------------------------------- /tests/end2end/features/statusbar/test_message_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/statusbar/test_message_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/statusbar/test_status_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/statusbar/test_status_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/thumbnail/.zcompdump: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/end2end/features/thumbnail/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/thumbnail/conftest.py -------------------------------------------------------------------------------- /tests/end2end/features/thumbnail/test_thumbnailgoto_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/thumbnail/test_thumbnailgoto_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/thumbnail/test_thumbnailmark_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/thumbnail/test_thumbnailmark_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/thumbnail/test_thumbnailscroll_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/thumbnail/test_thumbnailscroll_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/thumbnail/test_thumbnailzoom_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/thumbnail/test_thumbnailzoom_bdd.py -------------------------------------------------------------------------------- /tests/end2end/features/thumbnail/thumbnailgoto.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/thumbnail/thumbnailgoto.feature -------------------------------------------------------------------------------- /tests/end2end/features/thumbnail/thumbnailmark.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/thumbnail/thumbnailmark.feature -------------------------------------------------------------------------------- /tests/end2end/features/thumbnail/thumbnailscroll.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/thumbnail/thumbnailscroll.feature -------------------------------------------------------------------------------- /tests/end2end/features/thumbnail/thumbnailzoom.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/features/thumbnail/thumbnailzoom.feature -------------------------------------------------------------------------------- /tests/end2end/mockdecorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/end2end/mockdecorators.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/integration/__init__.py -------------------------------------------------------------------------------- /tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/integration/conftest.py -------------------------------------------------------------------------------- /tests/integration/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/integration/test_app.py -------------------------------------------------------------------------------- /tests/integration/test_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/integration/test_edit.py -------------------------------------------------------------------------------- /tests/integration/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/integration/test_metadata.py -------------------------------------------------------------------------------- /tests/integration/test_read_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/integration/test_read_bindings.py -------------------------------------------------------------------------------- /tests/integration/test_read_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/integration/test_read_settings.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/unit/api/test_keybindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/api/test_keybindings.py -------------------------------------------------------------------------------- /tests/unit/api/test_mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/api/test_mark.py -------------------------------------------------------------------------------- /tests/unit/api/test_objreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/api/test_objreg.py -------------------------------------------------------------------------------- /tests/unit/api/test_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/api/test_prompt.py -------------------------------------------------------------------------------- /tests/unit/api/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/api/test_settings.py -------------------------------------------------------------------------------- /tests/unit/api/test_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/api/test_status.py -------------------------------------------------------------------------------- /tests/unit/commands/test_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/commands/test_aliases.py -------------------------------------------------------------------------------- /tests/unit/commands/test_argtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/commands/test_argtypes.py -------------------------------------------------------------------------------- /tests/unit/commands/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/commands/test_commands.py -------------------------------------------------------------------------------- /tests/unit/commands/test_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/commands/test_history.py -------------------------------------------------------------------------------- /tests/unit/commands/test_history_deque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/commands/test_history_deque.py -------------------------------------------------------------------------------- /tests/unit/commands/test_runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/commands/test_runners.py -------------------------------------------------------------------------------- /tests/unit/commands/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/commands/test_search.py -------------------------------------------------------------------------------- /tests/unit/commands/test_wildcards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/commands/test_wildcards.py -------------------------------------------------------------------------------- /tests/unit/config/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/config/test_config.py -------------------------------------------------------------------------------- /tests/unit/config/test_external_configparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/config/test_external_configparser.py -------------------------------------------------------------------------------- /tests/unit/config/test_styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/config/test_styles.py -------------------------------------------------------------------------------- /tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/conftest.py -------------------------------------------------------------------------------- /tests/unit/gui/test_eventhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/gui/test_eventhandler.py -------------------------------------------------------------------------------- /tests/unit/gui/test_statusbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/gui/test_statusbar.py -------------------------------------------------------------------------------- /tests/unit/gui/test_thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/gui/test_thumbnail.py -------------------------------------------------------------------------------- /tests/unit/imutils/test_imtransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/imutils/test_imtransform.py -------------------------------------------------------------------------------- /tests/unit/plugins/mock_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/plugins/mock_plugin.py -------------------------------------------------------------------------------- /tests/unit/plugins/mock_plugin_syntax_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/plugins/mock_plugin_syntax_error.py -------------------------------------------------------------------------------- /tests/unit/plugins/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/plugins/test_plugins.py -------------------------------------------------------------------------------- /tests/unit/test_checkversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/test_checkversion.py -------------------------------------------------------------------------------- /tests/unit/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/test_parser.py -------------------------------------------------------------------------------- /tests/unit/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/test_version.py -------------------------------------------------------------------------------- /tests/unit/utils/_module_for_lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/utils/_module_for_lazy.py -------------------------------------------------------------------------------- /tests/unit/utils/test_crash_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/utils/test_crash_handler.py -------------------------------------------------------------------------------- /tests/unit/utils/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/utils/test_debug.py -------------------------------------------------------------------------------- /tests/unit/utils/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/utils/test_files.py -------------------------------------------------------------------------------- /tests/unit/utils/test_imageheader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/utils/test_imageheader.py -------------------------------------------------------------------------------- /tests/unit/utils/test_lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/utils/test_lazy.py -------------------------------------------------------------------------------- /tests/unit/utils/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/utils/test_log.py -------------------------------------------------------------------------------- /tests/unit/utils/test_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/utils/test_migration.py -------------------------------------------------------------------------------- /tests/unit/utils/test_thumbnail_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/utils/test_thumbnail_manager.py -------------------------------------------------------------------------------- /tests/unit/utils/test_trash_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/utils/test_trash_manager.py -------------------------------------------------------------------------------- /tests/unit/utils/test_trie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/utils/test_trie.py -------------------------------------------------------------------------------- /tests/unit/utils/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/utils/test_utils.py -------------------------------------------------------------------------------- /tests/unit/utils/test_xdg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tests/unit/utils/test_xdg.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/tox.ini -------------------------------------------------------------------------------- /vimiv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/__init__.py -------------------------------------------------------------------------------- /vimiv/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/__main__.py -------------------------------------------------------------------------------- /vimiv/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/api/__init__.py -------------------------------------------------------------------------------- /vimiv/api/_mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/api/_mark.py -------------------------------------------------------------------------------- /vimiv/api/_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/api/_modules.py -------------------------------------------------------------------------------- /vimiv/api/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/api/commands.py -------------------------------------------------------------------------------- /vimiv/api/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/api/completion.py -------------------------------------------------------------------------------- /vimiv/api/keybindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/api/keybindings.py -------------------------------------------------------------------------------- /vimiv/api/modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/api/modes.py -------------------------------------------------------------------------------- /vimiv/api/objreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/api/objreg.py -------------------------------------------------------------------------------- /vimiv/api/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/api/prompt.py -------------------------------------------------------------------------------- /vimiv/api/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/api/settings.py -------------------------------------------------------------------------------- /vimiv/api/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/api/signals.py -------------------------------------------------------------------------------- /vimiv/api/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/api/status.py -------------------------------------------------------------------------------- /vimiv/api/working_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/api/working_directory.py -------------------------------------------------------------------------------- /vimiv/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/app.py -------------------------------------------------------------------------------- /vimiv/checkversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/checkversion.py -------------------------------------------------------------------------------- /vimiv/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/commands/__init__.py -------------------------------------------------------------------------------- /vimiv/commands/aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/commands/aliases.py -------------------------------------------------------------------------------- /vimiv/commands/argtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/commands/argtypes.py -------------------------------------------------------------------------------- /vimiv/commands/delete_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/commands/delete_command.py -------------------------------------------------------------------------------- /vimiv/commands/external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/commands/external.py -------------------------------------------------------------------------------- /vimiv/commands/help_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/commands/help_command.py -------------------------------------------------------------------------------- /vimiv/commands/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/commands/history.py -------------------------------------------------------------------------------- /vimiv/commands/misccommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/commands/misccommands.py -------------------------------------------------------------------------------- /vimiv/commands/runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/commands/runners.py -------------------------------------------------------------------------------- /vimiv/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/commands/search.py -------------------------------------------------------------------------------- /vimiv/commands/wildcards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/commands/wildcards.py -------------------------------------------------------------------------------- /vimiv/completion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/completion/__init__.py -------------------------------------------------------------------------------- /vimiv/completion/completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/completion/completer.py -------------------------------------------------------------------------------- /vimiv/completion/completionmodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/completion/completionmodels.py -------------------------------------------------------------------------------- /vimiv/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/config/__init__.py -------------------------------------------------------------------------------- /vimiv/config/_style_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/config/_style_options.py -------------------------------------------------------------------------------- /vimiv/config/configcommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/config/configcommands.py -------------------------------------------------------------------------------- /vimiv/config/configfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/config/configfile.py -------------------------------------------------------------------------------- /vimiv/config/external_configparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/config/external_configparser.py -------------------------------------------------------------------------------- /vimiv/config/keyfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/config/keyfile.py -------------------------------------------------------------------------------- /vimiv/config/styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/config/styles.py -------------------------------------------------------------------------------- /vimiv/gui/__init__.py: -------------------------------------------------------------------------------- 1 | # vim: ft=python fileencoding=utf-8 sw=4 et sts=4 2 | 3 | """GUI widgets using Qt5.""" 4 | -------------------------------------------------------------------------------- /vimiv/gui/commandline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/commandline.py -------------------------------------------------------------------------------- /vimiv/gui/commandwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/commandwidget.py -------------------------------------------------------------------------------- /vimiv/gui/completionwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/completionwidget.py -------------------------------------------------------------------------------- /vimiv/gui/crop_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/crop_widget.py -------------------------------------------------------------------------------- /vimiv/gui/eventhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/eventhandler.py -------------------------------------------------------------------------------- /vimiv/gui/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/image.py -------------------------------------------------------------------------------- /vimiv/gui/keybindings_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/keybindings_popup.py -------------------------------------------------------------------------------- /vimiv/gui/keyhintwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/keyhintwidget.py -------------------------------------------------------------------------------- /vimiv/gui/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/library.py -------------------------------------------------------------------------------- /vimiv/gui/mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/mainwindow.py -------------------------------------------------------------------------------- /vimiv/gui/manipulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/manipulate.py -------------------------------------------------------------------------------- /vimiv/gui/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/message.py -------------------------------------------------------------------------------- /vimiv/gui/metadatawidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/metadatawidget.py -------------------------------------------------------------------------------- /vimiv/gui/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/prompt.py -------------------------------------------------------------------------------- /vimiv/gui/resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/resize.py -------------------------------------------------------------------------------- /vimiv/gui/statusbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/statusbar.py -------------------------------------------------------------------------------- /vimiv/gui/straightenwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/straightenwidget.py -------------------------------------------------------------------------------- /vimiv/gui/synchronize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/synchronize.py -------------------------------------------------------------------------------- /vimiv/gui/thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/thumbnail.py -------------------------------------------------------------------------------- /vimiv/gui/transformwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/transformwidget.py -------------------------------------------------------------------------------- /vimiv/gui/version_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/gui/version_popup.py -------------------------------------------------------------------------------- /vimiv/imutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/imutils/__init__.py -------------------------------------------------------------------------------- /vimiv/imutils/_file_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/imutils/_file_handler.py -------------------------------------------------------------------------------- /vimiv/imutils/current_pixmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/imutils/current_pixmap.py -------------------------------------------------------------------------------- /vimiv/imutils/edit_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/imutils/edit_handler.py -------------------------------------------------------------------------------- /vimiv/imutils/filelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/imutils/filelist.py -------------------------------------------------------------------------------- /vimiv/imutils/immanipulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/imutils/immanipulate.py -------------------------------------------------------------------------------- /vimiv/imutils/imtransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/imutils/imtransform.py -------------------------------------------------------------------------------- /vimiv/imutils/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/imutils/metadata.py -------------------------------------------------------------------------------- /vimiv/imutils/slideshow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/imutils/slideshow.py -------------------------------------------------------------------------------- /vimiv/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/parser.py -------------------------------------------------------------------------------- /vimiv/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/plugins/__init__.py -------------------------------------------------------------------------------- /vimiv/plugins/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/plugins/demo.py -------------------------------------------------------------------------------- /vimiv/plugins/imageformats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/plugins/imageformats.py -------------------------------------------------------------------------------- /vimiv/plugins/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/plugins/metadata.py -------------------------------------------------------------------------------- /vimiv/plugins/metadata_piexif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/plugins/metadata_piexif.py -------------------------------------------------------------------------------- /vimiv/plugins/metadata_pyexiv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/plugins/metadata_pyexiv2.py -------------------------------------------------------------------------------- /vimiv/plugins/print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/plugins/print.py -------------------------------------------------------------------------------- /vimiv/qt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/qt/__init__.py -------------------------------------------------------------------------------- /vimiv/qt/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/qt/core.py -------------------------------------------------------------------------------- /vimiv/qt/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/qt/gui.py -------------------------------------------------------------------------------- /vimiv/qt/printsupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/qt/printsupport.py -------------------------------------------------------------------------------- /vimiv/qt/svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/qt/svg.py -------------------------------------------------------------------------------- /vimiv/qt/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/qt/widgets.py -------------------------------------------------------------------------------- /vimiv/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/startup.py -------------------------------------------------------------------------------- /vimiv/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/utils/__init__.py -------------------------------------------------------------------------------- /vimiv/utils/crash_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/utils/crash_handler.py -------------------------------------------------------------------------------- /vimiv/utils/customtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/utils/customtypes.py -------------------------------------------------------------------------------- /vimiv/utils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/utils/debug.py -------------------------------------------------------------------------------- /vimiv/utils/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/utils/files.py -------------------------------------------------------------------------------- /vimiv/utils/imageheader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/utils/imageheader.py -------------------------------------------------------------------------------- /vimiv/utils/imagereader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/utils/imagereader.py -------------------------------------------------------------------------------- /vimiv/utils/lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/utils/lazy.py -------------------------------------------------------------------------------- /vimiv/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/utils/log.py -------------------------------------------------------------------------------- /vimiv/utils/migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/utils/migration.py -------------------------------------------------------------------------------- /vimiv/utils/thumbnail_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/utils/thumbnail_manager.py -------------------------------------------------------------------------------- /vimiv/utils/trash_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/utils/trash_manager.py -------------------------------------------------------------------------------- /vimiv/utils/trie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/utils/trie.py -------------------------------------------------------------------------------- /vimiv/utils/xdg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/utils/xdg.py -------------------------------------------------------------------------------- /vimiv/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/version.py -------------------------------------------------------------------------------- /vimiv/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karlch/vimiv-qt/HEAD/vimiv/widgets.py --------------------------------------------------------------------------------