Source code for spinetoolbox.project_items.tool.widgets.tool_properties_widget
######################################################################################################################
# Copyright (C) 2017-2020 Spine project consortium
# This file is part of Spine Toolbox.
# Spine Toolbox 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 3 of the License, or (at your option)
# any later version. 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 Lesser General
# Public License for more details. You should have received a copy of the GNU Lesser General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>.
######################################################################################################################
"""
Tool properties widget.
:author: M. Marin (KTH)
:date: 12.9.2019
"""
from PySide2.QtWidgets import QWidget
from PySide2.QtCore import Slot
from spinetoolbox.config import TREEVIEW_HEADER_SS
from .custom_menus import ToolPropertiesContextMenu
[docs]class ToolPropertiesWidget(QWidget):
"""Widget for the Tool Item Properties.
Args:
toolbox (ToolboxUI): The toolbox instance where this widget should be embedded
"""
def __init__(self, toolbox):
"""Init class."""
from ..ui.tool_properties import Ui_Form # pylint: disable=import-outside-toplevel
super().__init__()
self._toolbox = toolbox
self.ui = Ui_Form()
self.ui.setupUi(self)
self.ui.treeView_specification.setStyleSheet(TREEVIEW_HEADER_SS)
toolbox.ui.tabWidget_item_properties.addTab(self, "Tool")
# Class attributes
self.tool_prop_context_menu = None
self.connect_signals()
[docs] def connect_signals(self):
"""Connect signals to slots."""
self._toolbox.specification_model_changed.connect(self.update_combo_box_tool_model)
self.ui.treeView_specification.customContextMenuRequested.connect(self.show_tool_properties_context_menu)
@Slot()
[docs] def update_combo_box_tool_model(self):
model = self._toolbox.filtered_spec_factory_models["Tool"]
self.ui.comboBox_tool.setModel(model)
@Slot("QPoint")