# SPDX-License-Identifier: LGPL-2.1-or-later # *************************************************************************** # * * # * Copyright (c) 2017 Yorik van Havre * # * * # * This file is part of FreeCAD. * # * * # * FreeCAD is free software: you can redistribute it and/or modify it * # * under the terms of the GNU Lesser General Public License as * # * published by the Free Software Foundation, either version 2.1 of the * # * License, or (at your option) any later version. * # * * # * 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 * # * Lesser General Public License for more details. * # * * # * You should have received a copy of the GNU Lesser General Public * # * License along with FreeCAD. If not, see * # * . * # * * # *************************************************************************** """The BIM SetWPFront command""" import FreeCAD import FreeCADGui QT_TRANSLATE_NOOP = FreeCAD.Qt.QT_TRANSLATE_NOOP class BIM_SetWPFront: def GetResources(self): return { "Pixmap": "view-front.svg", "MenuText": QT_TRANSLATE_NOOP("BIM_SetWPFront", "Working Plane Front"), "ToolTip": QT_TRANSLATE_NOOP("BIM_SetWPFront", "Sets the working plane to Front"), "Accel": "W,P,1", } def Activated(self): FreeCADGui.addModule("WorkingPlane") FreeCADGui.doCommand("WorkingPlane.get_working_plane(update=False).set_to_front()") class BIM_SetWPSide: def GetResources(self): return { "Pixmap": "view-right.svg", "MenuText": QT_TRANSLATE_NOOP("BIM_SetWPSide", "Working Plane Side"), "ToolTip": QT_TRANSLATE_NOOP("BIM_SetWPSide", "Sets the working plane to Side"), "Accel": "W,P,3", } def Activated(self): FreeCADGui.addModule("WorkingPlane") FreeCADGui.doCommand("WorkingPlane.get_working_plane(update=False).set_to_side()") class BIM_SetWPTop: def GetResources(self): return { "Pixmap": "view-top.svg", "MenuText": QT_TRANSLATE_NOOP("BIM_SetWPTop", "Working Plane Top"), "ToolTip": QT_TRANSLATE_NOOP("BIM_SetWPTop", "Sets the working plane to Top"), "Accel": "W,P,2", } def Activated(self): FreeCADGui.addModule("WorkingPlane") FreeCADGui.doCommand("WorkingPlane.get_working_plane(update=False).set_to_top()") class BIM_WPView: def GetResources(self): return { "Pixmap": "BIM_WPView", "MenuText": QT_TRANSLATE_NOOP("BIM_WPView", "Working Plane View"), "ToolTip": QT_TRANSLATE_NOOP( "BIM_WPView", "Aligns the view to the current item in BIM Views window or to the current working plane", ), "Accel": "9", } def IsActive(self): v = hasattr(FreeCADGui.getMainWindow().getActiveWindow(), "getSceneGraph") return v def Activated(self): from bimcommands import BimViews import WorkingPlane vm = BimViews.findWidget() if vm: sel = vm.tree.selectedItems() if sel: # Aligning to current widget item BimViews.show(sel[0]) return if hasattr(vm, "lastSelected"): # Aligning to stored widget item BimViews.show(vm.lastSelected) return # Aligning to current working plane WorkingPlane.get_working_plane().align_view() FreeCADGui.addCommand("BIM_WPView", BIM_WPView()) FreeCADGui.addCommand("BIM_SetWPTop", BIM_SetWPTop()) FreeCADGui.addCommand("BIM_SetWPSide", BIM_SetWPSide()) FreeCADGui.addCommand("BIM_SetWPFront", BIM_SetWPFront())