File size: 30,094 Bytes
985c397 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 | # SPDX-License-Identifier: LGPL-2.1-or-later
# /***************************************************************************
# * Copyright (c) 2016 Victor Titov (DeepSOIC) <vv.titov@gmail.com> *
# * *
# * This file is part of the FreeCAD CAx development system. *
# * *
# * This library is free software; you can redistribute it and/or *
# * modify it under the terms of the GNU Library General Public *
# * License as published by the Free Software Foundation; either *
# * version 2 of the License, or (at your option) any later version. *
# * *
# * This library 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 this library; see the file COPYING.LIB. If not, *
# * write to the Free Software Foundation, Inc., 59 Temple Place, *
# * Suite 330, Boston, MA 02111-1307, USA *
# * *
# ***************************************************************************/
from __future__ import absolute_import
import FreeCAD as App
import Part
mm = App.Units.MilliMetre
deg = App.Units.Degree
Q = App.Units.Quantity
from AttachmentEditor.FrozenClass import FrozenClass
try:
from Show import TempoVis
from Show.DepGraphTools import getAllDependent
except ImportError as err:
def TempoVis(doc, tag):
return None
def getAllDependent(feature):
return []
App.Console.PrintWarning(
"AttachmentEditor: Failed to import some code from Show module. Functionality will be limited.\n"
)
App.Console.PrintWarning(str(err))
if App.GuiUp:
import FreeCADGui as Gui
from PySide import QtCore, QtGui
from FreeCADGui import PySideUic as uic
# -------------------------- translation-related code ----------------------------------------
# Thanks, yorik! (see forum thread "A new Part tool is being born... JoinFeatures!"
# https://forum.freecad.org/viewtopic.php?f=22&t=11112&start=30#p90239 )
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
def _fromUtf8(s):
return s
translate = App.Qt.translate
# --------------------------/translation-related code ----------------------------------------
def linkSubList_convertToOldStyle(references):
(
"input: [(obj1, (sub1, sub2)), (obj2, (sub1, sub2))]\n"
"output: [(obj1, sub1), (obj1, sub2), (obj2, sub1), (obj2, sub2)]"
)
result = []
for tup in references:
if type(tup[1]) is tuple or type(tup[1]) is list:
for subname in tup[1]:
result.append((tup[0], subname))
if len(tup[1]) == 0:
result.append((tup[0], ""))
elif isinstance(tup[1], str):
# old style references, no conversion required
result.append(tup)
return result
def StrFromLink(feature, subname):
return feature.Name + ((":" + subname) if subname else "")
def LinkFromStr(strlink, document):
if len(strlink) == 0:
return None
pieces = strlink.split(":")
feature = document.getObject(pieces[0])
subname = ""
if feature is None:
raise ValueError(
translate("AttachmentEditor", "No object named {}", None).format(pieces[0])
)
if len(pieces) == 2:
subname = pieces[1]
elif len(pieces) > 2:
raise ValueError(
translate(
"AttachmentEditor", "Failed to parse link (more than one colon encountered)", None
)
)
return (
feature,
str(subname),
) # wrap in str to remove unicode, which confuses assignment to PropertyLinkSubList.
def StrListFromRefs(references):
"""input: PropertyLinkSubList. Output: list of strings for UI."""
references_oldstyle = linkSubList_convertToOldStyle(references)
return [StrFromLink(feature, subelement) for (feature, subelement) in references_oldstyle]
def RefsFromStrList(strings, document):
"""input: strings as from UI. Output: list of tuples that can be assigned to PropertyLinkSubList."""
refs = []
for st in strings:
lnk = LinkFromStr(st, document)
if lnk is not None:
refs.append(lnk)
return refs
def GetSelectionAsLinkSubList():
sel = Gui.Selection.getSelectionEx("", 0)
result = []
for selobj in sel:
for subname in selobj.SubElementNames:
result.append((selobj.Object, subname))
if len(selobj.SubElementNames) == 0:
result.append((selobj.Object, ""))
return result
def PlacementsFuzzyCompare(plm1, plm2):
pos_eq = (plm1.Base - plm2.Base).Length < 1e-7 # 1e-7 is OCC's Precision::Confusion
q1 = plm1.Rotation.Q
q2 = plm2.Rotation.Q
# rotations are equal if q1 == q2 or q1 == -q2.
# Invert one of Q's if their scalar product is negative, before comparison.
if q1[0] * q2[0] + q1[1] * q2[1] + q1[2] * q2[2] + q1[3] * q2[3] < 0:
q2 = [-v for v in q2]
rot_eq = (
abs(q1[0] - q2[0]) + abs(q1[1] - q2[1]) + abs(q1[2] - q2[2]) + abs(q1[3] - q2[3])
) < 1e-12 # 1e-12 is OCC's Precision::Angular (in radians)
return pos_eq and rot_eq
class CancelError(Exception):
def __init__(self):
self.message = "Canceled by user"
self.isCancelError = True
class AttachmentEditorTaskPanel(FrozenClass):
"""The editmode TaskPanel for attachment editing"""
KEYmode = (
QtCore.Qt.ItemDataRole.UserRole
) # Key to use in Item.data(key) to obtain a mode associated with list item
KEYon = (
QtCore.Qt.ItemDataRole.UserRole + 1
) # Key to use in Item.data(key) to obtain if the mode is valid
def __define_attributes(self):
self.obj = None # feature being attached
self.attacher = None # AttachEngine that is being actively used by the dialog. Its parameters are constantly and actively kept in sync with the dialog.
self.obj_is_attachable = (
True # False when editing non-attachable objects (alignment, not attachment)
)
self.last_sugr = None # result of last execution of suggestor
self.form = None # Qt widget of dialog interface
self.block = False # when True, event handlers return without doing anything (instead of doing-undoing blockSignals to everything)
self.refLines = [] # reference lineEdit widgets, packed into a list for convenience
self.refButtons = [] # buttons next to reference lineEdits
self.attachmentOffsetEdits = [] # all edit boxes related to attachmentOffset
self.i_active_ref = (
-1
) # index of reference being selected (-1 means no reaction to selecting)
self.auto_next = False # if true, references being selected are appended ('Selecting' state is automatically advanced to next button)
self.tv = None # TempoVis class instance
self.create_transaction = True # if false, dialog doesn't mess with transactions.
self.callback_OK = None
self.callback_Cancel = None
self.callback_Apply = None
self._freeze()
def __init__(
self,
obj_to_attach,
take_selection=False,
create_transaction=True,
callback_OK=None,
callback_Cancel=None,
callback_Apply=None,
):
self.__define_attributes()
self.create_transaction = create_transaction
self.callback_OK = callback_OK
self.callback_Cancel = callback_Cancel
self.callback_Apply = callback_Apply
self.obj = obj_to_attach
try:
if not self.obj.hasExtension("Part::AttachExtension"):
self.obj.addExtension("Part::AttachExtensionPython")
except Exception:
pass
if hasattr(obj_to_attach, "Attacher"):
self.attacher = obj_to_attach.Attacher
elif hasattr(obj_to_attach, "AttacherType"):
self.attacher = Part.AttachEngine(obj_to_attach.AttacherType)
else:
movable = True
if not hasattr(self.obj, "Placement"):
movable = False
if "Hidden" in self.obj.getEditorMode(
"Placement"
) or "ReadOnly" in self.obj.getEditorMode("Placement"):
movable = False
if not movable:
if self.callback_Cancel:
self.callback_Cancel()
raise ValueError(
translate(
"AttachmentEditor",
"Object {} is neither movable nor attachable, can't edit attachment",
None,
).format(self.obj.Label)
)
self.obj_is_attachable = False
self.attacher = Part.AttachEngine()
mb = QtGui.QMessageBox()
mb.setIcon(mb.Icon.Warning)
mb.setText(
translate(
"AttachmentEditor",
"{} is not attachable. The attachment editor can still be used to align the object, but the attachment will not be parametric.",
None,
).format(obj_to_attach.Label)
)
mb.setWindowTitle(translate("AttachmentEditor", "Attachment", None))
btnAbort = mb.addButton(QtGui.QMessageBox.StandardButton.Abort)
btnOK = mb.addButton(
translate("AttachmentEditor", "Continue", None),
QtGui.QMessageBox.ButtonRole.ActionRole,
)
mb.setDefaultButton(btnOK)
mb.exec_()
if mb.clickedButton() is btnAbort:
if self.callback_Cancel:
self.callback_Cancel()
raise CancelError()
import os
self.form = uic.loadUi(os.path.dirname(__file__) + os.path.sep + "TaskAttachmentEditor.ui")
self.form.setWindowIcon(QtGui.QIcon(":/icons/tools/Part_Attachment.svg"))
self.form.setWindowTitle(translate("AttachmentEditor", "Attachment", None))
self.form.attachmentOffsetX.setProperty("unit", "mm")
self.form.attachmentOffsetY.setProperty("unit", "mm")
self.form.attachmentOffsetZ.setProperty("unit", "mm")
Gui.ExpressionBinding(self.form.attachmentOffsetX).bind(self.obj, "AttachmentOffset.Base.x")
Gui.ExpressionBinding(self.form.attachmentOffsetY).bind(self.obj, "AttachmentOffset.Base.y")
Gui.ExpressionBinding(self.form.attachmentOffsetZ).bind(self.obj, "AttachmentOffset.Base.z")
Gui.ExpressionBinding(self.form.attachmentOffsetYaw).bind(
self.obj, "AttachmentOffset.Rotation.Yaw"
)
Gui.ExpressionBinding(self.form.attachmentOffsetPitch).bind(
self.obj, "AttachmentOffset.Rotation.Pitch"
)
Gui.ExpressionBinding(self.form.attachmentOffsetRoll).bind(
self.obj, "AttachmentOffset.Rotation.Roll"
)
self.refLines = [
self.form.lineRef1,
self.form.lineRef2,
self.form.lineRef3,
self.form.lineRef4,
]
self.refButtons = [
self.form.buttonRef1,
self.form.buttonRef2,
self.form.buttonRef3,
self.form.buttonRef4,
]
self.attachmentOffsetEdits = [
self.form.attachmentOffsetX,
self.form.attachmentOffsetY,
self.form.attachmentOffsetZ,
self.form.attachmentOffsetYaw,
self.form.attachmentOffsetPitch,
self.form.attachmentOffsetRoll,
]
self.block = False
for i in range(len(self.refLines)):
QtCore.QObject.connect(
self.refLines[i],
QtCore.SIGNAL("textEdited(QString)"),
lambda txt, i=i: self.lineRefChanged(i, txt),
)
for i in range(len(self.refLines)):
QtCore.QObject.connect(
self.refButtons[i], QtCore.SIGNAL("clicked()"), lambda i=i: self.refButtonClicked(i)
)
for i in range(len(self.attachmentOffsetEdits)):
QtCore.QObject.connect(
self.attachmentOffsetEdits[i],
QtCore.SIGNAL("valueChanged(double)"),
lambda val, i=i: self.attachmentOffsetChanged(i, val),
)
QtCore.QObject.connect(
self.form.checkBoxFlip, QtCore.SIGNAL("clicked()"), self.checkBoxFlipClicked
)
QtCore.QObject.connect(
self.form.listOfModes, QtCore.SIGNAL("itemSelectionChanged()"), self.modeSelected
)
if self.create_transaction:
self.obj.Document.openTransaction(
translate("AttachmentEditor", "Edit attachment of {}", None).format(self.obj.Name)
)
self.readParameters()
if len(self.attacher.References) == 0 and take_selection:
sel = GetSelectionAsLinkSubList()
for i in range(len(sel))[::-1]:
if sel[i][0] is obj_to_attach:
sel.pop(i)
self.attacher.References = sel
# need to update textboxes
self.fillAllRefLines()
if len(self.attacher.References) == 0:
self.i_active_ref = 0
self.auto_next = True
else:
self.i_active_ref = -1
self.auto_next = False
Gui.Selection.addObserver(self, 0)
self.updatePreview()
self.updateRefButtons()
self.tv = TempoVis(self.obj.Document, tag="PartGui.TaskAttachmentEditor")
if self.tv: # tv will still be None if Show module is unavailable
self.tv.hide_all_dependent(self.obj)
self.tv.show(self.obj)
self.tv.setUnpickable(self.obj)
self.tv.modifyVPProperty(self.obj, "Transparency", 70)
self.tv.show([obj for (obj, subname) in self.attacher.References])
# task dialog handling
def getStandardButtons(self):
return (
QtGui.QDialogButtonBox.Ok | QtGui.QDialogButtonBox.Cancel | QtGui.QDialogButtonBox.Apply
)
def clicked(self, button):
if button == QtGui.QDialogButtonBox.Apply:
if self.obj_is_attachable:
self.writeParameters()
if self.create_transaction:
self.obj.Document.commitTransaction()
self.obj.Document.openTransaction(
translate("AttachmentEditor", "Edit attachment of {}", None).format(
self.obj.Name
)
)
self.updatePreview()
if self.callback_Apply:
self.callback_Apply()
def accept(self):
if self.obj_is_attachable:
self.writeParameters()
if self.create_transaction:
self.obj.Document.commitTransaction()
self.cleanUp()
Gui.Control.closeDialog()
if self.callback_OK:
self.callback_OK()
def reject(self):
if self.create_transaction:
self.obj.Document.abortTransaction()
self.cleanUp()
Gui.Control.closeDialog()
if self.callback_Cancel:
self.callback_Cancel()
# selectionObserver stuff
def addSelection(self, docname, objname, subname, pnt):
i = self.i_active_ref
if i < 0:
# not selecting any reference
return
if i > 0 and self.auto_next:
prevref = LinkFromStr(self.refLines[i - 1].text(), self.obj.Document)
if prevref[0].Name == objname and subname == "":
# whole object was selected by double-clicking
# its subelement was already written to line[i-1], so we decrease i to overwrite the lineRefChanged
i -= 1
if i > len(self.refLines) - 1:
# all 4 references have been selected, finish
assert self.auto_next
self.i_active_ref = -1
self.updateRefButtons()
return
if i > -1:
if ";" in subname:
# Test code:
# Gui.Selection.getSelectionEx("", 0)[0].SubElementNames
# Return value examples:
# ('Part.Body.;Edge10;:Hf19,E.Edge10',)
# ('Part.Body.;#1a:1;:H-f28,E;:Hf28,E.Edge15',)
# ('Part.Body.;#16:1;:G#28;FUS;:H-f28:a,E;:Hf28,E.Edge10',)
# ('Part.Body.Pad.;#1d:1;:H-f28,F.Face7',)
# ('Part.Box.Edge10',)
# ('Part.Sketch.;g1;SKT.Edge1',)
tmp = subname.split(";")
subname = tmp[0] + tmp[-1].split(".")[-1]
parent = self.obj.getParentGeoFeatureGroup()
if parent is not None:
path = [objname] + subname.split(".")
if parent.Name in path:
path = path[path.index(parent.Name) + 1 :]
if len(path) > 1:
objname = path[0]
subname = ".".join(path[1:])
# assign the selected reference
if objname == self.obj.Name:
self.form.message.setText(
translate("AttachmentEditor", "Ignored. Can't attach object to itself!", None)
)
return
if App.getDocument(docname).getObject(objname) in getAllDependent(self.obj):
self.form.message.setText(
translate(
"AttachmentEditor",
"{} depends on object being attached, can't use it for attachment",
None,
).format(objname)
)
return
self.refLines[i].setText(
StrFromLink(App.getDocument(docname).getObject(objname), subname)
)
self.lineRefChanged(i, "")
if self.auto_next:
i += 1
self.i_active_ref = i
self.updateRefButtons()
# slots
def attachmentOffsetChanged(self, index, value):
if self.block:
return
plm = self.attacher.AttachmentOffset
pos = plm.Base
if index == 0:
pos.x = Q(self.form.attachmentOffsetX.text()).Value
if index == 1:
pos.y = Q(self.form.attachmentOffsetY.text()).Value
if index == 2:
pos.z = Q(self.form.attachmentOffsetZ.text()).Value
if index >= 0 and index <= 2:
plm.Base = pos
if index >= 3 and index <= 5:
yaw = Q(self.form.attachmentOffsetYaw.text()).Value
pitch = Q(self.form.attachmentOffsetPitch.text()).Value
roll = Q(self.form.attachmentOffsetRoll.text()).Value
rot = App.Rotation(yaw, pitch, roll)
plm.Rotation = rot
self.attacher.AttachmentOffset = plm
self.updatePreview()
def checkBoxFlipClicked(self):
if self.block:
return
self.attacher.Reverse = self.form.checkBoxFlip.isChecked()
self.updatePreview()
def lineRefChanged(self, index, value):
if self.block:
return
# not parsing links here, because doing it in updatePreview will display error message
self.updatePreview()
def refButtonClicked(self, index):
if self.block:
return
if self.i_active_ref == index:
# stop selecting
self.i_active_ref = -1
else:
# start selecting
self.i_active_ref = index
self.auto_next = False
self.updateRefButtons()
def modeSelected(self):
if self.block:
return
self.attacher.Mode = self.getCurrentMode()
self.updatePreview()
# internal methods
def writeParameters(self):
"Transfer from the dialog to the object"
self.attacher.writeParametersToFeature(self.obj)
def readParameters(self):
"Transfer from the object to the dialog"
if self.obj_is_attachable:
self.attacher.readParametersFromFeature(self.obj)
plm = self.attacher.AttachmentOffset
try:
old_selfblock = self.block
self.block = True
self.form.attachmentOffsetX.lineEdit().setText((plm.Base.x * mm).UserString)
self.form.attachmentOffsetY.lineEdit().setText((plm.Base.y * mm).UserString)
self.form.attachmentOffsetZ.lineEdit().setText((plm.Base.z * mm).UserString)
self.form.attachmentOffsetYaw.lineEdit().setText(
(plm.Rotation.toEuler()[0] * deg).UserString
)
self.form.attachmentOffsetPitch.lineEdit().setText(
(plm.Rotation.toEuler()[1] * deg).UserString
)
self.form.attachmentOffsetRoll.lineEdit().setText(
(plm.Rotation.toEuler()[2] * deg).UserString
)
self.form.checkBoxFlip.setChecked(self.attacher.Reverse)
self.fillAllRefLines()
finally:
self.block = old_selfblock
def fillAllRefLines(self):
old_block = self.block
try:
self.block = True
strings = StrListFromRefs(self.attacher.References)
if len(strings) < len(self.refLines):
strings.extend([""] * (len(self.refLines) - len(strings)))
for i in range(len(self.refLines)):
self.refLines[i].setText(strings[i])
finally:
self.block = old_block
def parseAllRefLines(self):
self.attacher.References = RefsFromStrList(
[le.text() for le in self.refLines], self.obj.Document
)
def updateListOfModes(self):
"""needs suggestor to have been called, and assigned to self.last_sugr"""
try:
old_selfblock = self.block
self.block = True
list_widget = self.form.listOfModes
list_widget.clear()
sugr = self.last_sugr
# always have the option to choose Deactivated mode
valid_modes = ["Deactivated"] + sugr["allApplicableModes"]
# add valid modes
for m in valid_modes:
item = QtGui.QListWidgetItem()
txt = self.attacher.getModeInfo(m)["UserFriendlyName"]
item.setText(txt)
item.setData(self.KEYmode, m)
item.setData(self.KEYon, True)
if m == sugr["bestFitMode"]:
f = item.font()
f.setBold(True)
item.setFont(f)
list_widget.addItem(item)
item.setSelected(self.attacher.Mode == m)
# add potential modes
for m in sugr["reachableModes"].keys():
item = QtGui.QListWidgetItem()
txt = self.attacher.getModeInfo(m)["UserFriendlyName"]
listlistrefs = sugr["reachableModes"][m]
if len(listlistrefs) == 1:
listrefs_userfriendly = [
self.attacher.getRefTypeInfo(t)["UserFriendlyName"] for t in listlistrefs[0]
]
txt = translate("AttachmentEditor", "{} (add {})", None).format(
txt, "+".join(listrefs_userfriendly)
)
else:
txt = translate("AttachmentEditor", "{} (add more references)", None).format(
txt
)
item.setText(txt)
item.setData(self.KEYmode, m)
item.setData(self.KEYon, True)
if m == sugr["bestFitMode"]:
f = item.font()
f.setBold(True)
item.setFont(f)
# disable this item
f = item.flags()
f = f & ~(QtCore.Qt.ItemFlag.ItemIsEnabled | QtCore.Qt.ItemFlag.ItemIsSelectable)
item.setFlags(f)
list_widget.addItem(item)
# re-scan the list to fill in tooltips
for item in list_widget.findItems("", QtCore.Qt.MatchContains):
m = item.data(self.KEYmode)
on = item.data(self.KEYon)
mi = self.attacher.getModeInfo(m)
cmb = []
for refstr in mi["ReferenceCombinations"]:
refstr_userfriendly = [
self.attacher.getRefTypeInfo(t)["UserFriendlyName"] for t in refstr
]
cmb.append(", ".join(refstr_userfriendly))
tip = mi["BriefDocu"]
if m != "Deactivated":
tip += "\n\n"
tip += translate(
"AttachmentEditor", "Reference combinations:", None
) + " \n\n".join(cmb)
item.setToolTip(tip)
finally:
self.block = old_selfblock
def updateRefButtons(self):
try:
old_selfblock = self.block
self.block = True
for i in range(len(self.refButtons)):
btn = self.refButtons[i]
btn.setCheckable(True)
btn.setChecked(self.i_active_ref == i)
typ = translate("AttachmentEditor", "Reference{}", None).format(str(i + 1))
if self.last_sugr is not None:
typestr = self.last_sugr["references_Types"]
if i < len(typestr):
typ = self.attacher.getRefTypeInfo(typestr[i])["UserFriendlyName"]
btn.setText(
translate("AttachmentEditor", "Selecting…", None)
if self.i_active_ref == i
else typ
)
finally:
self.block = old_selfblock
def getCurrentMode(self):
list_widget = self.form.listOfModes
sel = list_widget.selectedItems()
if len(sel) == 1:
if sel[0].data(self.KEYon):
return str(
sel[0].data(self.KEYmode)
) # data() returns unicode, which confuses attacher
# nothing selected in list. Return suggested
if self.last_sugr is not None:
if self.last_sugr["message"] == "OK":
return self.last_sugr["bestFitMode"]
# no suggested mode. Return current, so it doesn't change
return self.attacher.Mode
def updatePreview(self):
new_plm = None
try:
self.parseAllRefLines()
self.last_sugr = self.attacher.suggestModes()
if self.last_sugr["message"] == "LinkBroken":
raise ValueError(
translate("AttachmentEditor", "Failed to resolve links. {}", None).format(
self.last_sugr["error"]
)
)
self.updateListOfModes()
self.attacher.Mode = self.getCurrentMode()
new_plm = self.attacher.calculateAttachedPlacement(self.obj.Placement)
if new_plm is None:
self.form.message.setText(translate("AttachmentEditor", "Not attached", None))
else:
self.form.message.setText(
translate("AttachmentEditor", "Attached with mode {}", None).format(
self.attacher.getModeInfo(self.getCurrentMode())["UserFriendlyName"]
)
)
if PlacementsFuzzyCompare(self.obj.Placement, new_plm) == False:
# assign only if placement changed. this avoids touching the object
# when entering and exiting dialog without changing anything
self.obj.Placement = new_plm
except Exception as err:
self.form.message.setText(
translate("AttachmentEditor", "Error: {}", None).format(str(err))
)
if new_plm is not None:
self.form.groupBox_AttachmentOffset.setTitle(
translate("AttachmentEditor", "Attachment Offset (in local coordinates):", None)
)
self.form.groupBox_AttachmentOffset.setEnabled(True)
else:
self.form.groupBox_AttachmentOffset.setTitle(
translate("AttachmentEditor", "Attachment Offset (inactive - not attached):", None)
)
self.form.groupBox_AttachmentOffset.setEnabled(False)
def cleanUp(self):
"""stuff that needs to be done when dialog is closed."""
Gui.Selection.removeObserver(self)
if self.tv:
self.tv.restore()
|