Source code for spinetoolbox.project_items.data_connection.widgets.data_connection_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/>.
######################################################################################################################
"""
Data connection properties widget.
:author: M. Marin (KTH)
:date: 12.9.2019
"""
import os
from PySide2.QtWidgets import QWidget
from PySide2.QtCore import Qt, Slot, QUrl
from spinetoolbox.config import TREEVIEW_HEADER_SS
from .custom_menus import DcRefContextMenu, DcDataContextMenu
[docs]class DataConnectionPropertiesWidget(QWidget):
"""Widget for the Data Connection Item Properties."""
def __init__(self, toolbox):
"""
Args:
toolbox (ToolboxUI): The toolbox instance where this widget should be embedded
"""
from ..ui.data_connection_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_dc_references.setStyleSheet(TREEVIEW_HEADER_SS)
self.ui.treeView_dc_data.setStyleSheet(TREEVIEW_HEADER_SS)
toolbox.ui.tabWidget_item_properties.addTab(self, "Data Connection")
# Class attributes
self.dc_ref_context_menu = None
self.dc_data_context_menu = None
self.connect_signals()
[docs] def connect_signals(self):
"""Connect signals to slots."""
self.ui.treeView_dc_references.customContextMenuRequested.connect(self.show_references_context_menu)
self.ui.treeView_dc_data.customContextMenuRequested.connect(self.show_data_context_menu)
@Slot("QPoint", name="show_references_context_menu")
@Slot("QPoint", name="show_data_context_menu")