#!/usr/bin/env python3 # SPDX-FileCopyrightText: 2011-2024 Filipe Coelho # SPDX-License-Identifier: GPL-2.0-or-later # ------------------------------------------------------------------------------------------------------------ # Imports (Global) from qt_compat import qt_config if qt_config == 5: from PyQt5.QtCore import qWarning, Qt, QPointF from PyQt5.QtGui import QPainter, QPainterPath, QPen from PyQt5.QtWidgets import QGraphicsPathItem elif qt_config == 6: from PyQt6.QtCore import qWarning, Qt, QPointF from PyQt6.QtGui import QPainter, QPainterPath, QPen from PyQt6.QtWidgets import QGraphicsPathItem # ------------------------------------------------------------------------------------------------------------ # Imports (Custom) from . import ( canvas, options, port_mode2str, port_type2str, CanvasBezierLineMovType, PORT_MODE_INPUT, PORT_MODE_OUTPUT, PORT_TYPE_AUDIO_JACK, PORT_TYPE_MIDI_ALSA, PORT_TYPE_MIDI_JACK, PORT_TYPE_PARAMETER, ) # ------------------------------------------------------------------------------------------------------------ class CanvasBezierLineMov(QGraphicsPathItem): def __init__(self, port_mode, port_type, parent): QGraphicsPathItem.__init__(self) self.setParentItem(parent) self.m_port_mode = port_mode self.m_port_type = port_type # Port position doesn't change while moving around line self.p_itemX = self.scenePos().x() self.p_itemY = self.scenePos().y() self.p_width = parent.getPortWidth() if port_type == PORT_TYPE_AUDIO_JACK: pen = QPen(canvas.theme.line_audio_jack, 2) elif port_type == PORT_TYPE_MIDI_JACK: pen = QPen(canvas.theme.line_midi_jack, 2) elif port_type == PORT_TYPE_MIDI_ALSA: pen = QPen(canvas.theme.line_midi_alsa, 2) elif port_type == PORT_TYPE_PARAMETER: pen = QPen(canvas.theme.line_parameter, 2) else: qWarning("PatchCanvas::CanvasBezierLineMov({}, {}, {}) - invalid port type".format( port_mode2str(port_mode), port_type2str(port_type), parent)) pen = QPen(Qt.black) pen.setCapStyle(Qt.FlatCap) pen.setWidthF(pen.widthF() + 0.00001) self.setPen(pen) def updateLinePos(self, scenePos): if self.m_port_mode == PORT_MODE_INPUT: old_x = 0 old_y = float(canvas.theme.port_height)/2 mid_x = abs(scenePos.x() - self.p_itemX) / 2 new_x = old_x - mid_x elif self.m_port_mode == PORT_MODE_OUTPUT: old_x = self.p_width + 12 old_y = float(canvas.theme.port_height)/2 mid_x = abs(scenePos.x() - (self.p_itemX + old_x)) / 2 new_x = old_x + mid_x else: return final_x = scenePos.x() - self.p_itemX final_y = scenePos.y() - self.p_itemY path = QPainterPath(QPointF(old_x, old_y)) path.cubicTo(new_x, old_y, new_x, final_y, final_x, final_y) self.setPath(path) def type(self): return CanvasBezierLineMovType def paint(self, painter, option, widget): painter.save() painter.setRenderHint(QPainter.Antialiasing, bool(options.antialiasing)) QGraphicsPathItem.paint(self, painter, option, widget) painter.restore() # ------------------------------------------------------------------------------------------------------------