FreeCAD / src /Mod /BIM /bimcommands /BimCurtainwall.py
AbdulElahGwaith's picture
Upload folder using huggingface_hub
985c397 verified
# SPDX-License-Identifier: LGPL-2.1-or-later
# ***************************************************************************
# * *
# * Copyright (c) 2024 Yorik van Havre <yorik@uncreated.net> *
# * *
# * 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 *
# * <https://www.gnu.org/licenses/>. *
# * *
# ***************************************************************************
"""Misc Arch util commands"""
import FreeCAD
import FreeCADGui
QT_TRANSLATE_NOOP = FreeCAD.Qt.QT_TRANSLATE_NOOP
translate = FreeCAD.Qt.translate
PARAMS = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/BIM")
class Arch_CurtainWall:
"the Arch Curtain Wall command definition"
def GetResources(self):
return {
"Pixmap": "Arch_CurtainWall",
"MenuText": QT_TRANSLATE_NOOP("Arch_CurtainWall", "Curtain Wall"),
"Accel": "C, W",
"ToolTip": QT_TRANSLATE_NOOP(
"Arch_CurtainWall",
"Creates a curtain wall object from selected line or from scratch",
),
}
def IsActive(self):
v = hasattr(FreeCADGui.getMainWindow().getActiveWindow(), "getSceneGraph")
return v
def Activated(self):
self.doc = FreeCAD.ActiveDocument
sel = FreeCADGui.Selection.getSelection()
if len(sel) > 1:
FreeCAD.Console.PrintError(
translate("Arch", "Select only one base object or none") + "\n"
)
elif len(sel) == 1:
# build on selection
FreeCADGui.Control.closeDialog()
self.doc.openTransaction(translate("Arch", "Create Curtain Wall"))
FreeCADGui.addModule("Draft")
FreeCADGui.addModule("Arch")
FreeCADGui.doCommand(
"obj = Arch.makeCurtainWall(FreeCAD.ActiveDocument."
+ FreeCADGui.Selection.getSelection()[0].Name
+ ")"
)
FreeCADGui.doCommand("Draft.autogroup(obj)")
self.doc.commitTransaction()
self.doc.recompute()
else:
# interactive line drawing
FreeCAD.activeDraftCommand = self # register as a Draft command for auto grid on/off
self.points = []
import WorkingPlane
WorkingPlane.get_working_plane()
if hasattr(FreeCADGui, "Snapper"):
FreeCADGui.Snapper.getPoint(callback=self.getPoint)
def getPoint(self, point=None, obj=None):
"""Callback for clicks during interactive mode"""
if point is None:
# cancelled
FreeCAD.activeDraftCommand = None
FreeCADGui.Snapper.off()
return
self.points.append(point)
if len(self.points) == 1:
FreeCADGui.Snapper.getPoint(last=self.points[0], callback=self.getPoint)
elif len(self.points) == 2:
FreeCAD.activeDraftCommand = None
FreeCADGui.Snapper.off()
FreeCADGui.Control.closeDialog()
self.doc.openTransaction(translate("Arch", "Create Curtain Wall"))
FreeCADGui.addModule("Draft")
FreeCADGui.addModule("Arch")
FreeCADGui.doCommand(
"base = Draft.makeLine(FreeCAD."
+ str(self.points[0])
+ ",FreeCAD."
+ str(self.points[1])
+ ")"
)
FreeCADGui.doCommand("obj = Arch.makeCurtainWall(base)")
FreeCADGui.doCommand("Draft.autogroup(obj)")
self.doc.commitTransaction()
self.doc.recompute()
FreeCADGui.addCommand("Arch_CurtainWall", Arch_CurtainWall())