freecad-cam/Mod/Draft/draftguitools/gui_styles.py
2026-02-01 01:59:24 +01:00

73 lines
3.4 KiB
Python

# ***************************************************************************
# * (c) 2009 Yorik van Havre <yorik@uncreated.net> *
# * (c) 2010 Ken Cline <cline@frii.com> *
# * (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 apply styles to objects."""
## @package gui_styles
# \ingroup draftguitools
# \brief Provides GUI tools to apply styles to objects.
## \addtogroup draftguitools
# @{
from PySide.QtCore import QT_TRANSLATE_NOOP
import FreeCADGui as Gui
from draftguitools import gui_base_original
from draftutils.translate import translate
from draftutils import groups
class ApplyStyle(gui_base_original.Modifier):
"""Gui Command for the ApplyStyle tool."""
def GetResources(self):
"""Set icon, menu and tooltip."""
return {
"Pixmap": "Draft_Apply",
"MenuText": QT_TRANSLATE_NOOP("Draft_ApplyStyle", "Apply current style"),
"ToolTip": QT_TRANSLATE_NOOP("Draft_ApplyStyle", "Applies the current style defined in the toolbar (line width and colors) to the selected objects and groups.")
}
def IsActive(self):
return bool(Gui.Selection.getSelection())
def Activated(self):
"""Execute when the command is called."""
super().Activated(name="Apply style")
objs = Gui.Selection.getSelection()
if objs:
objs = groups.get_group_contents(objs, addgroups=True, spaces=True, noarchchild=True)
Gui.addModule("Draft")
cmd_list = [
"doc = FreeCAD.ActiveDocument",
"Draft.apply_current_style([" + ", ".join(["doc." + obj.Name for obj in objs]) + "])",
"doc.recompute()"
]
self.commit(translate("draft", "Change Style"), cmd_list)
self.finish()
Gui.addCommand("Draft_ApplyStyle", ApplyStyle())
## @}