Draft: add modules of draftutils to the proper Doxygen group

This includes `gui_utils`, `init_draft_statusbar`, `init_tools`,
`messages`, `todo`, `translate`, `utils`.

These are added to the `draftutils` Doxygen group
so that the functions contained in each module are listed
appropriately in the automatically generated documentation.
This commit is contained in:
vocx-fc
2020-07-01 13:25:18 -05:00
committed by Yorik van Havre
parent e853503907
commit dd70caa723
9 changed files with 93 additions and 55 deletions

View File

@@ -21,12 +21,14 @@
# * USA *
# * *
# ***************************************************************************
"""Provides utility functions related to unit handling."""
"""Provides utility functions to handle quantities and units."""
## @package units
# \ingroup DRAFT
# \brief Provides utility functions related to unit handling.
# \ingroup draftutils
# \brief Provides utility functions to handle quantities and units.
from PySide import QtCore
## \addtogroup draftutils
# @{
import PySide.QtCore as QtCore
import FreeCAD as App
@@ -122,3 +124,5 @@ def display_external(internal_value,
displayExternal = display_external
## @}