Draft: add modules of draftobjects to the proper Doxygen group

This includes `array`, `base`, `bezcurve`, `block`, `bspline`,
`circle`, `clone`, `dimension`, `draft_annotation`, `draftlink`,
`drawingview`, `ellipse`, `facebinder`, `fillet`, `label`,
`patharray`, `point`, `pointarray`, `polygon`, `rectangle`,
`shape2dview`, `shapestring`, `text`, `wire`, `wwproxy`.

These are added to the `draftobjects` Doxygen group
so that the functions and classes contained in each module
are listed appropriately in the automatically generated
documentation.
This commit is contained in:
vocx-fc
2020-06-30 21:50:24 -05:00
committed by Yorik van Havre
parent a82d6b9801
commit 27fc2e89fb
25 changed files with 240 additions and 143 deletions

View File

@@ -21,11 +21,13 @@
# * USA *
# * *
# ***************************************************************************
"""Provide the object code for Draft Text objects."""
"""Provides the object code for the Text object."""
## @package text
# \ingroup DRAFT
# \brief Provide the object code for Draft Text objects.
# \ingroup draftobjects
# \brief Provides the object code for the Text object.
## \addtogroup draftobjects
# @{
from PySide.QtCore import QT_TRANSLATE_NOOP
import FreeCAD as App
@@ -77,3 +79,5 @@ class Text(DraftAnnotation):
# Alias for compatibility with v0.18 and earlier
DraftText = Text
## @}