src/eric7/QScintilla/DocstringGenerator/__init__.py

branch
eric7
changeset 9209
b99e7fd55fd3
parent 8881
54e42bc2437a
child 9221
bf71ee032bb4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/QScintilla/DocstringGenerator/__init__.py	Thu Jul 07 11:23:56 2022 +0200
@@ -0,0 +1,50 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2021 - 2022 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Package containing the documentation string generator tool.
+"""
+
+from PyQt6.QtCore import QCoreApplication
+
+
+def getDocstringGenerator(editor):
+    """
+    Function to get a docstring generator for the given editor.
+    
+    @param editor reference to the editor to create a docstring generator for
+    @type Editor
+    @return reference to the created docstring generator
+    @rtype BaseDocstringGenerator
+    """
+    if (
+        editor.isPyFile() or
+        editor.getFileType() in ("Python", "Python3", "MicroPython")
+    ):
+        from .PyDocstringGenerator import PyDocstringGenerator
+        return PyDocstringGenerator(editor)
+    else:
+        from .BaseDocstringGenerator import BaseDocstringGenerator
+        return BaseDocstringGenerator(editor)
+
+
+def getSupportedDocstringTypes():
+    """
+    Function to get the supported docstring types/styles.
+    
+    @return list of tuples with supported docstring type/style and the
+        corresponding display string
+    @rtype tuple of (str, str)
+    """
+    return [
+        ("ericdoc",
+         QCoreApplication.translate("DocstringGenerator", "Eric")),
+        ("numpydoc",
+         QCoreApplication.translate("DocstringGenerator", "NumPy")),
+        ("googledoc",
+         QCoreApplication.translate("DocstringGenerator", "Google")),
+        ("sphinxdoc",
+         QCoreApplication.translate("DocstringGenerator", "Sphinx")),
+    ]

eric ide

mercurial