diff --git a/EM_FHEquiv.py b/EM_FHEquiv.py index 876d6ef..d32c661 100644 --- a/EM_FHEquiv.py +++ b/EM_FHEquiv.py @@ -33,7 +33,7 @@ __url__ = "http://www.fastfieldsolvers.com" # defines # # tolerance in distance between nodes to define a port -EMFHEQUIV_LENTOL = 1e-12 +EMFHEQUIV_LENTOL = 1e-8 import FreeCAD, FreeCADGui, Mesh, Part, MeshPart, Draft, DraftGeomUtils, os from FreeCAD import Vector diff --git a/EM_FHNode.py b/EM_FHNode.py index e9719c5..7eae501 100644 --- a/EM_FHNode.py +++ b/EM_FHNode.py @@ -296,6 +296,9 @@ class _CommandFHNode: # get the selected object(s) sel = FreeCADGui.Selection.getSelectionEx() done = False + # set continue mode to false, as default (continue or not to place FHNodes + # without the need to press again the FHNode button) + self.continueCmd = False # if selection is not empty if sel: # automatic mode @@ -304,7 +307,7 @@ class _CommandFHNode: FreeCAD.ActiveDocument.openTransaction(translate("EM","Create FHNode")) FreeCADGui.addModule("EM") for selobj in sel: - if Draft.getType(selobj) == "Point": + if Draft.getType(selobj.Object) == "Point": FreeCADGui.doCommand('obj=EM.makeFHNode(FreeCAD.ActiveDocument.'+selobj.Object.Name+')') # autogrouping, for later on #FreeCADGui.addModule("Draft") @@ -316,7 +319,7 @@ class _CommandFHNode: if not done: FreeCAD.DraftWorkingPlane.setup() # get a 3D point via Snapper, setting the callback functions - FreeCADGui.Snapper.getPoint(callback=self.getPoint,movecallback=self.move) + FreeCADGui.Snapper.getPoint(callback=self.getPoint,movecallback=self.move,extradlg=self.taskbox()) def getPoint(self,point=None,obj=None): '''This function is called by the Snapper when it has a 3D point''' @@ -328,9 +331,9 @@ class _CommandFHNode: FreeCADGui.doCommand('obj=EM.makeFHNode(X='+str(coord.x)+',Y='+str(coord.y)+',Z='+str(coord.z)+')') FreeCAD.ActiveDocument.commitTransaction() FreeCAD.ActiveDocument.recompute() - # might improve in the future with continue command - #if self.continueCmd: - # self.Activated() + # handle continue command + if self.continueCmd: + self.Activated() # this is used to display the global point position information # in the Snapper user interface. By default it would display the relative @@ -339,6 +342,31 @@ class _CommandFHNode: def move(self,point=None,snapInfo=None): if FreeCADGui.Snapper.ui: FreeCADGui.Snapper.ui.displayPoint(point) + + def taskbox(self): + "sets up a taskbox widget" + w = QtGui.QWidget() + ui = FreeCADGui.UiLoader() + w.setWindowTitle(translate("EM","FHNode options", utf8_decode=True)) + grid = QtGui.QGridLayout(w) + + label4 = QtGui.QLabel(translate("EM","Con&tinue", utf8_decode=True)) + value4 = QtGui.QCheckBox() + value4.setObjectName("ContinueCmd") + value4.setLayoutDirection(QtCore.Qt.RightToLeft) + label4.setBuddy(value4) + if hasattr(FreeCADGui,"draftToolBar"): + value4.setChecked(FreeCADGui.draftToolBar.continueMode) + self.continueCmd = FreeCADGui.draftToolBar.continueMode + grid.addWidget(label4,1,0,1,1) + grid.addWidget(value4,1,1,1,1) + QtCore.QObject.connect(value4,QtCore.SIGNAL("stateChanged(int)"),self.setContinue) + return w + + def setContinue(self,i): + self.continueCmd = bool(i) + if hasattr(FreeCADGui,"draftToolBar"): + FreeCADGui.draftToolBar.continueMode = bool(i) if FreeCAD.GuiUp: FreeCADGui.addCommand('EM_FHNode',_CommandFHNode()) diff --git a/EM_FHPlaneHole.py b/EM_FHPlaneHole.py index cbd4759..f41a880 100644 --- a/EM_FHPlaneHole.py +++ b/EM_FHPlaneHole.py @@ -338,7 +338,7 @@ class _CommandFHPlaneHole: FreeCAD.ActiveDocument.openTransaction(translate("EM","Create FHPlaneHole")) FreeCADGui.addModule("EM") for selobj in sel: - if Draft.getType(selobj) == "Point": + if Draft.getType(selobj.Object) == "Point": FreeCADGui.doCommand('obj=EM.makeFHPlaneHole(FreeCAD.ActiveDocument.'+selobj.Object.Name+')') # autogrouping, for later on #FreeCADGui.addModule("Draft") diff --git a/EM_FHPort.py b/EM_FHPort.py index a97261a..0276739 100644 --- a/EM_FHPort.py +++ b/EM_FHPort.py @@ -31,7 +31,7 @@ __url__ = "http://www.fastfieldsolvers.com" # defines # # tolerance in distance between nodes to define a port -EMFHPORT_LENTOL = 1e-12 +EMFHPORT_LENTOL = 1e-8 import FreeCAD, FreeCADGui, Mesh, Part, MeshPart, Draft, DraftGeomUtils, os from FreeCAD import Vector diff --git a/EM_Globals.py b/EM_Globals.py index 757f482..92c58d3 100644 --- a/EM_Globals.py +++ b/EM_Globals.py @@ -38,7 +38,7 @@ EMFHNODE_DEF_NODECOLOR = (1.0,0.0,0.0) # tolerance in degrees when verifying if vectors are parallel EMFHSEGMENT_PARTOL = 0.01 # tolerance in length -EMFHSEGMENT_LENTOL = 1e-12 +EMFHSEGMENT_LENTOL = 1e-8 import FreeCAD, Part from FreeCAD import Vector