├── .gitignore ├── LICENSE ├── README.md ├── images ├── screenshot_full.png └── screenshot_search.png └── plugin ├── python_reference.action ├── python_reference.desktop └── python_reference ├── __init__.py ├── manual.html └── widgets.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/krita-plugin-python-reference/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/krita-plugin-python-reference/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/krita-plugin-python-reference/HEAD/README.md -------------------------------------------------------------------------------- /images/screenshot_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/krita-plugin-python-reference/HEAD/images/screenshot_full.png -------------------------------------------------------------------------------- /images/screenshot_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/krita-plugin-python-reference/HEAD/images/screenshot_search.png -------------------------------------------------------------------------------- /plugin/python_reference.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/krita-plugin-python-reference/HEAD/plugin/python_reference.action -------------------------------------------------------------------------------- /plugin/python_reference.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/krita-plugin-python-reference/HEAD/plugin/python_reference.desktop -------------------------------------------------------------------------------- /plugin/python_reference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/krita-plugin-python-reference/HEAD/plugin/python_reference/__init__.py -------------------------------------------------------------------------------- /plugin/python_reference/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/krita-plugin-python-reference/HEAD/plugin/python_reference/manual.html -------------------------------------------------------------------------------- /plugin/python_reference/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbreu/krita-plugin-python-reference/HEAD/plugin/python_reference/widgets.py --------------------------------------------------------------------------------