├── .gitignore ├── README.md └── plugindevtools ├── PluginDevTools.desktop ├── PluginDevTools ├── ActionGeneratorWidget.ui ├── DockerWidget.ui ├── EventViewerWidget.ui ├── GetKritaAPI.py ├── Manual.html ├── PluginDevToolsDocker.py ├── PluginDevToolsExtension.py ├── PluginDevToolsWidget.py ├── PluginGenerator.py ├── PluginGeneratorTemplates │ ├── BlankDocker │ │ ├── [SHORTNAME].py │ │ └── __init__.py │ ├── BlankExtension │ │ ├── [SHORTNAME].py │ │ └── __init__.py │ ├── SimpleDockerGUI │ │ ├── [SHORTNAME].py │ │ └── __init__.py │ ├── SimpleDockerGUIQML │ │ ├── [SHORTNAME].py │ │ ├── [SHORTNAME].ui │ │ └── __init__.py │ ├── SimpleExtensionDialogGUI │ │ ├── [SHORTNAME].py │ │ └── __init__.py │ ├── SimpleExtensionDialogGUIQML │ │ ├── [SHORTNAME].py │ │ ├── [SHORTNAME].ui │ │ └── __init__.py │ └── index.json ├── PluginGeneratorWidget.ui ├── ThemeIcons.txt ├── __init__.py └── kritadoc.html └── actions └── PluginDevTools.action /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/README.md -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools.desktop -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/ActionGeneratorWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/ActionGeneratorWidget.ui -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/DockerWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/DockerWidget.ui -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/EventViewerWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/EventViewerWidget.ui -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/GetKritaAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/GetKritaAPI.py -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/Manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/Manual.html -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginDevToolsDocker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/PluginDevToolsDocker.py -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginDevToolsExtension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/PluginDevToolsExtension.py -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginDevToolsWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/PluginDevToolsWidget.py -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/PluginGenerator.py -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginGeneratorTemplates/BlankDocker/[SHORTNAME].py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/PluginGeneratorTemplates/BlankDocker/[SHORTNAME].py -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginGeneratorTemplates/BlankDocker/__init__.py: -------------------------------------------------------------------------------- 1 | from .'''[%SHORTNAME%]''' import * 2 | 3 | -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginGeneratorTemplates/BlankExtension/[SHORTNAME].py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/PluginGeneratorTemplates/BlankExtension/[SHORTNAME].py -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginGeneratorTemplates/BlankExtension/__init__.py: -------------------------------------------------------------------------------- 1 | from .'''[%SHORTNAME%]''' import * 2 | -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleDockerGUI/[SHORTNAME].py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleDockerGUI/[SHORTNAME].py -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleDockerGUI/__init__.py: -------------------------------------------------------------------------------- 1 | from .'''[%SHORTNAME%]''' import * 2 | 3 | -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleDockerGUIQML/[SHORTNAME].py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleDockerGUIQML/[SHORTNAME].py -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleDockerGUIQML/[SHORTNAME].ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleDockerGUIQML/[SHORTNAME].ui -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleDockerGUIQML/__init__.py: -------------------------------------------------------------------------------- 1 | from .'''[%SHORTNAME%]''' import * 2 | 3 | -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleExtensionDialogGUI/[SHORTNAME].py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleExtensionDialogGUI/[SHORTNAME].py -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleExtensionDialogGUI/__init__.py: -------------------------------------------------------------------------------- 1 | from .'''[%SHORTNAME%]''' import * 2 | -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleExtensionDialogGUIQML/[SHORTNAME].py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleExtensionDialogGUIQML/[SHORTNAME].py -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleExtensionDialogGUIQML/[SHORTNAME].ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleExtensionDialogGUIQML/[SHORTNAME].ui -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginGeneratorTemplates/SimpleExtensionDialogGUIQML/__init__.py: -------------------------------------------------------------------------------- 1 | from .'''[%SHORTNAME%]''' import * 2 | -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginGeneratorTemplates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/PluginGeneratorTemplates/index.json -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/PluginGeneratorWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/PluginGeneratorWidget.ui -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/ThemeIcons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/ThemeIcons.txt -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/__init__.py -------------------------------------------------------------------------------- /plugindevtools/PluginDevTools/kritadoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/PluginDevTools/kritadoc.html -------------------------------------------------------------------------------- /plugindevtools/actions/PluginDevTools.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnowZero/Krita-PythonPluginDeveloperTools/HEAD/plugindevtools/actions/PluginDevTools.action --------------------------------------------------------------------------------