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 4fb2eb663e
commit 42599838f4
25 changed files with 240 additions and 143 deletions

View File

@@ -21,7 +21,7 @@
# * USA *
# * *
# ***************************************************************************
"""Provide the basic object code for all Draft annotation objects.
"""Provides the object code for all annotation type objects.
This is used by many objects that show dimensions and text created on screen
through Coin (pivy).
@@ -32,9 +32,11 @@ through Coin (pivy).
- Text
"""
## @package draft_annotation
# \ingroup DRAFT
# \brief Provide the basic object code for all Draft annotation objects.
# \ingroup draftobjects
# \brief Provides the object code for all annotation type objects.
## \addtogroup draftobjects
# @{
from PySide.QtCore import QT_TRANSLATE_NOOP
from draftutils.messages import _wrn
@@ -152,3 +154,5 @@ class DraftAnnotation(object):
Does nothing.
"""
return
## @}