File size: 16,380 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 | # SPDX-License-Identifier: LGPL-2.1-or-later
# ***************************************************************************
# * Copyright (c) 2025 Samuel Abels <knipknap@gmail.com> *
# * *
# * 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. *
# * *
# * This program 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 program; if not, write to the Free Software *
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
# * USA *
# * *
# ***************************************************************************
"""Widget for editing a ToolBit object."""
from typing import Optional
from PySide import QtGui, QtCore
import FreeCAD
import FreeCADGui
from ...shape.ui.shapewidget import ShapeWidget
from ...docobject.ui import DocumentObjectEditorWidget
from ..models.base import ToolBit
from ..util import setToolBitSchema
translate = FreeCAD.Qt.translate
class ToolBitPropertiesWidget(QtGui.QWidget):
"""
A composite widget for editing the properties and shape of a ToolBit.
"""
# Signal emitted when the toolbit data has been modified
toolBitChanged = QtCore.Signal()
toolNoChanged = QtCore.Signal(int)
def __init__(
self,
toolbit: Optional[ToolBit] = None,
tool_no: Optional[int] = None,
parent=None,
icon: bool = True,
):
super().__init__(parent)
self._toolbit = None
self._show_shape = icon
self._tool_no = tool_no
setToolBitSchema()
# UI Elements
self._label_edit = QtGui.QLineEdit()
self._id_label = QtGui.QLabel() # Read-only ID
self._id_label.setTextInteractionFlags(QtCore.Qt.TextSelectableByMouse)
theicon = toolbit.get_icon() if toolbit else None
abbr = theicon.abbreviations if theicon else {}
self._property_editor = DocumentObjectEditorWidget(property_suffixes=abbr)
self._property_editor.setSizePolicy(
QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding
)
self._shape_widget = None # Will be created in load_toolbit
# Layout
toolbit_group_box = QtGui.QGroupBox(translate("CAM", "Toolbit"))
form_layout = QtGui.QFormLayout(toolbit_group_box)
form_layout.addRow(translate("CAM", "Label:"), self._label_edit)
# form_layout.addRow(translate("CAM", "ID:"), self._id_label)
# Optional tool number edit field.
self._tool_no_edit = QtGui.QSpinBox()
self._tool_no_edit.setMinimum(1)
self._tool_no_edit.setMaximum(99999999)
if tool_no is not None:
form_layout.addRow(translate("CAM", "Tool Number:"), self._tool_no_edit)
main_layout = QtGui.QVBoxLayout(self)
main_layout.addWidget(toolbit_group_box)
properties_group_box = QtGui.QGroupBox(FreeCAD.Qt.translate("CAM", "Properties"))
properties_group_box.setSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding)
properties_layout = QtGui.QVBoxLayout(properties_group_box)
properties_layout.setSpacing(5)
properties_layout.addWidget(self._property_editor)
# Ensure the layout expands horizontally
properties_layout.setAlignment(QtCore.Qt.AlignLeft | QtCore.Qt.AlignTop)
# Set stretch factor to make property editor expand
properties_layout.setStretchFactor(self._property_editor, 1)
main_layout.addWidget(properties_group_box)
# Add stretch before shape widget to push it towards the bottom
main_layout.addStretch(1)
# Layout for centering the shape widget (created later)
self._shape_display_layout = QtGui.QHBoxLayout()
self._shape_display_layout.addStretch(1)
# Placeholder for the widget
self._shape_display_layout.addStretch(1)
main_layout.addLayout(self._shape_display_layout)
# Connections
self._label_edit.editingFinished.connect(self._on_label_changed)
self._tool_no_edit.valueChanged.connect(self._on_tool_no_changed)
self._property_editor.propertyChanged.connect(self.toolBitChanged)
if toolbit:
self.load_toolbit(toolbit)
def _on_label_changed(self):
"""Update the toolbit's label when the line edit changes."""
if self._toolbit and self._toolbit.obj:
new_label = self._label_edit.text()
if self._toolbit.obj.Label != new_label:
self._toolbit.obj.Label = new_label
self.toolBitChanged.emit()
def _on_tool_no_changed(self, value):
"""Update the tool number when the line edit changes."""
if self._tool_no != value:
self._tool_no = value
self.toolNoChanged.emit(value)
def load_toolbit(self, toolbit: ToolBit):
"""Load a ToolBit object into the editor."""
# Set schema based on the toolbit's Units property if available
toolbit_units = None
if toolbit and hasattr(toolbit.obj, "Units"):
toolbit_units = getattr(toolbit.obj, "Units", None)
# If Units is an enumeration, get the value
if isinstance(toolbit_units, (list, tuple)) and len(toolbit_units) > 0:
toolbit_units = toolbit_units[0]
if toolbit_units in ("Metric", "Imperial"):
setToolBitSchema(toolbit_units)
elif FreeCAD.ActiveDocument is None:
setToolBitSchema()
self._toolbit = toolbit
if not self._toolbit or not self._toolbit.obj:
# Clear or disable fields if toolbit is invalid
self._label_edit.clear()
self._label_edit.setEnabled(False)
self._id_label.clear()
self._tool_no_edit.clear()
self._property_editor.setObject(None)
# Clear existing shape widget if any
if self._shape_widget:
self._shape_display_layout.removeWidget(self._shape_widget)
self._shape_widget.deleteLater()
self._shape_widget = None
self._tool_no_edit.setValue(1)
self.setEnabled(False)
return
self.setEnabled(True)
self._label_edit.setEnabled(True)
self._label_edit.setText(self._toolbit.obj.Label)
self._id_label.setText(self._toolbit.get_id())
self._tool_no_edit.setValue(int(self._tool_no or 1))
# Get properties and suffixes
props_to_show = self._toolbit._get_props(("Shape", "Attributes"))
icon = self._toolbit._tool_bit_shape.get_icon()
suffixes = icon.abbreviations if icon else {}
self._property_editor.setObject(self._toolbit.obj)
self._property_editor.setPropertiesToShow(props_to_show, suffixes)
# Clear old shape widget and create/add new one if shape exists
if self._shape_widget:
self._shape_display_layout.removeWidget(self._shape_widget)
self._shape_widget.deleteLater()
self._shape_widget = None
if self._show_shape and self._toolbit._tool_bit_shape:
self._shape_widget = ShapeWidget(shape=self._toolbit._tool_bit_shape, parent=self)
self._shape_widget.setMinimumSize(200, 150)
# Insert into the middle slot of the HBox layout
self._shape_display_layout.insertWidget(1, self._shape_widget)
def save_toolbit(self):
"""
Applies changes from the editor widgets back to the ToolBit object.
Note: Most changes are applied via signals, but this can be called
for explicit save actions.
"""
# Ensure label is updated if focus is lost without pressing Enter
self._on_label_changed()
# No need to explicitly save the toolbit object itself here,
# as properties were modified directly on toolbit.obj
class ToolBitEditorPanel(QtGui.QWidget):
"""
A widget for editing a ToolBit object, wrapping ToolBitEditorWidget
and providing standard dialog buttons.
"""
# Signals
accepted = QtCore.Signal(ToolBit)
rejected = QtCore.Signal()
toolBitChanged = QtCore.Signal() # Re-emit signal from inner widget
def __init__(self, toolbit: ToolBit | None = None, parent=None):
super().__init__(parent)
# Create the main editor widget
self._editor_widget = ToolBitPropertiesWidget(toolbit, self)
# Create the button box
buttons = QtGui.QDialogButtonBox.Ok | QtGui.QDialogButtonBox.Cancel
self._button_box = QtGui.QDialogButtonBox(buttons)
# Connect button box signals to custom signals
self._button_box.accepted.connect(self._accepted)
self._button_box.rejected.connect(self.rejected.emit)
# Layout
main_layout = QtGui.QVBoxLayout(self)
main_layout.addWidget(self._editor_widget)
main_layout.addWidget(self._button_box)
# Connect the toolBitChanged signal from the inner widget
self._editor_widget.toolBitChanged.connect(self.toolBitChanged)
def _accepted(self):
self.accepted.emit(self._editor_widget._toolbit)
def load_toolbit(self, toolbit: ToolBit):
"""Load a ToolBit object into the editor."""
self._editor_widget.load_toolbit(toolbit)
def save_toolbit(self):
"""Applies changes from the editor widgets back to the ToolBit object."""
self._editor_widget.save_toolbit()
class ToolBitEditor(QtGui.QWidget):
"""
A widget for editing a ToolBit object, wrapping ToolBitEditorWidget
and providing standard dialog buttons.
"""
# Signals
toolBitChanged = QtCore.Signal() # Re-emit signal from inner widget
def __init__(
self,
toolbit: ToolBit,
tool_no: Optional[int] = None,
parent=None,
icon: bool = False,
):
super().__init__(parent)
self.form = FreeCADGui.PySideUic.loadUi(":/panels/ToolBitEditor.ui")
self.toolbit = toolbit
self.tool_no = tool_no
self.default_title = self.form.windowTitle()
# Store the original schema to restore on close
self._original_schema = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Units").GetInt(
"UserSchema", 6
)
self._tab_closed = False
# Get first tab from the form, add the shape widget at the top.
tool_tab_layout = self.form.toolTabLayout
widget = ShapeWidget(toolbit._tool_bit_shape)
tool_tab_layout.addWidget(widget)
# Add tool properties editor to the same tab.
self._props = ToolBitPropertiesWidget(toolbit, tool_no, self, icon=icon)
self._last_units_value = self._get_units_value(self._props)
self._props.toolBitChanged.connect(self._on_toolbit_changed)
self._props.toolBitChanged.connect(self._update)
self._props.toolNoChanged.connect(self._on_tool_no_changed)
tool_tab_layout.addWidget(self._props)
self.form.tabWidget.setCurrentIndex(0)
self.form.tabWidget.currentChanged.connect(self._on_tab_switched)
# Hide second tab (tool notes) for now.
self.form.tabWidget.setTabVisible(1, False)
# Feeds & Speeds
self.feeds_tab_idx = None
"""
TODO: disabled for now.
if tool.supports_feeds_and_speeds():
label = translate('CAM', 'Feeds && Speeds')
self.feeds = FeedsAndSpeedsWidget(db, serializer, tool, parent=self)
self.feeds_tab_idx = self.form.tabWidget.insertTab(1, self.feeds, label)
else:
self.feeds = None
self.feeds_tab_idx = None
self.form.lineEditCoating.setText(toolbit.get_coating())
self.form.lineEditCoating.textChanged.connect(toolbit.set_coating)
self.form.lineEditHardness.setText(toolbit.get_hardness())
self.form.lineEditHardness.textChanged.connect(toolbit.set_hardness)
self.form.lineEditMaterials.setText(toolbit.get_materials())
self.form.lineEditMaterials.textChanged.connect(toolbit.set_materials)
self.form.lineEditSupplier.setText(toolbit.get_supplier())
self.form.lineEditSupplier.textChanged.connect(toolbit.set_supplier)
self.form.plainTextEditNotes.setPlainText(tool.get_notes())
self.form.plainTextEditNotes.textChanged.connect(self._on_notes_changed)
"""
self._update()
def _get_units_value(self, props):
"""
Helper to extract the Units value from the toolbit properties.
"""
if props and hasattr(props._toolbit.obj, "Units"):
units_value = getattr(props._toolbit.obj, "Units", None)
if isinstance(units_value, (list, tuple)) and len(units_value) > 0:
units_value = units_value[0]
return units_value
return None
def _on_toolbit_changed(self):
"""
Slot called when the toolbit is changed. If the Units value has changed,
refreshes the property editor widget to update the schema and UI.
"""
units_value = self._get_units_value(self._props)
if units_value in ("Metric", "Imperial") and units_value != self._last_units_value:
self._refresh_property_editor()
self._last_units_value = units_value
def _refresh_property_editor(self):
"""
Refreshes the property editor widget in the tab.
Removes the current ToolBitPropertiesWidget, restores the original units schema,
recreates the widget, and reconnects all signals. This ensures the UI and schema
are in sync with the current toolbit's units, and user changes are preserved
because the ToolBit object is always up to date.
"""
# Remove the current property editor widget
tool_tab_layout = self.form.toolTabLayout
tool_tab_layout.removeWidget(self._props)
self._props.deleteLater()
# Restore the original schema
FreeCAD.Units.setSchema(self._original_schema)
# Recreate the property editor with the current toolbit
self._props = ToolBitPropertiesWidget(self.toolbit, self.tool_no, self, icon=False)
self._last_units_value = self._get_units_value(self._props)
self._props.toolBitChanged.connect(self._on_toolbit_changed)
self._props.toolBitChanged.connect(self._update)
self._props.toolNoChanged.connect(self._on_tool_no_changed)
tool_tab_layout.addWidget(self._props)
self.form.tabWidget.setCurrentIndex(0)
def _restore_original_schema(self):
"""
Restores the original units schema that was active before the ToolBit editor was opened.
"""
FreeCAD.Units.setSchema(self._original_schema)
def _update(self):
title = self.default_title
tool_name = self.toolbit.label
if tool_name:
title = "{} - {}".format(tool_name, title)
self.form.setWindowTitle(title)
def _on_tab_switched(self, index):
if index == self.feeds_tab_idx:
self.feeds.update()
def _on_notes_changed(self):
self.toolbit.set_notes(self.form.plainTextEditNotes.toPlainText())
def _on_tool_no_changed(self, value):
self.tool_no = value
def get_tool_no(self):
return self.tool_no
def show(self):
return self.form.exec_()
|