90 lines
3.7 KiB
Python
90 lines
3.7 KiB
Python
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
# ***************************************************************************
|
|
# * (c) 2020 Eliud Cabrera Castillo <e.cabrera-castillo@tum.de> *
|
|
# * *
|
|
# * This file is part of the FreeCAD CAx development system. *
|
|
# * *
|
|
# * This program is free software; you can redistribute it and/or modify *
|
|
# * it under the terms of the GNU Lesser General Public License (LGPL) *
|
|
# * as published by the Free Software Foundation; either version 2 of *
|
|
# * the License, or (at your option) any later version. *
|
|
# * for detail see the LICENCE text file. *
|
|
# * *
|
|
# * FreeCAD is distributed in the hope that it will be useful, *
|
|
# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
# * GNU Library General Public License for more details. *
|
|
# * *
|
|
# * You should have received a copy of the GNU Library General Public *
|
|
# * License along with FreeCAD; if not, write to the Free Software *
|
|
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
|
|
# * USA *
|
|
# * *
|
|
# ***************************************************************************
|
|
"""Provides GUI tools to create parametric Array objects. Grouping command."""
|
|
## @package gui_arrays
|
|
# \ingroup draftguitools
|
|
# \brief Provides GUI tools to create parametric Array objects.
|
|
|
|
## \addtogroup draftguitools
|
|
# @{
|
|
from PySide.QtCore import QT_TRANSLATE_NOOP
|
|
|
|
import FreeCADGui as Gui
|
|
from draftutils import gui_utils
|
|
|
|
import draftguitools.gui_circulararray
|
|
import draftguitools.gui_orthoarray
|
|
import draftguitools.gui_patharray
|
|
import draftguitools.gui_pointarray
|
|
import draftguitools.gui_polararray
|
|
import draftguitools.gui_pathtwistedarray
|
|
|
|
# The module is used to prevent complaints from code checkers (flake8)
|
|
bool(draftguitools.gui_circulararray.__name__)
|
|
bool(draftguitools.gui_orthoarray.__name__)
|
|
bool(draftguitools.gui_patharray.__name__)
|
|
bool(draftguitools.gui_pointarray.__name__)
|
|
bool(draftguitools.gui_polararray.__name__)
|
|
bool(draftguitools.gui_pathtwistedarray.__name__)
|
|
|
|
|
|
class ArrayGroup:
|
|
"""Gui command for the group of array tools."""
|
|
|
|
def GetCommands(self):
|
|
"""Tuple of array commands."""
|
|
return (
|
|
"Draft_OrthoArray",
|
|
"Draft_PolarArray",
|
|
"Draft_CircularArray",
|
|
"Draft_PathArray",
|
|
"Draft_PathLinkArray",
|
|
"Draft_PointArray",
|
|
"Draft_PointLinkArray",
|
|
"Draft_PathTwistedArray",
|
|
"Draft_PathTwistedLinkArray",
|
|
)
|
|
|
|
def GetResources(self):
|
|
"""Set icon, menu and tooltip."""
|
|
|
|
return {
|
|
"Pixmap": "Draft_Array",
|
|
"MenuText": QT_TRANSLATE_NOOP("Draft_ArrayTools", "Array Tools"),
|
|
"ToolTip": QT_TRANSLATE_NOOP(
|
|
"Draft_ArrayTools",
|
|
"Tools to create various types of arrays, including rectangular, polar, circular, path, and point arrays",
|
|
),
|
|
}
|
|
|
|
def IsActive(self):
|
|
"""Return True when this command should be available."""
|
|
return bool(gui_utils.get_3d_view())
|
|
|
|
|
|
Gui.addCommand("Draft_ArrayTools", ArrayGroup())
|
|
|
|
## @}
|