|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #!/usr/bin/env python3
- # -*- coding: utf-8 -*-
-
- # PatchBay Canvas engine using QGraphicsView/Scene
- # Copyright (C) 2010-2019 Filipe Coelho <falktx@falktx.com>
- #
- # This program is free software; you can redistribute it and/or
- # modify it under the terms of the GNU General Public License as
- # published by the Free Software Foundation; either version 2 of
- # the License, or 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 General Public License for more details.
- #
- # For a full copy of the GNU General Public License see the doc/GPL.txt file.
-
- # ------------------------------------------------------------------------------------------------------------
- # Imports (Global)
-
- from PyQt5.QtGui import QColor
- from PyQt5.QtWidgets import QGraphicsDropShadowEffect
-
- # ------------------------------------------------------------------------------------------------------------
- # Imports (Custom)
-
- from . import canvas
-
- # ------------------------------------------------------------------------------------------------------------
-
- class CanvasBoxShadow(QGraphicsDropShadowEffect):
- def __init__(self, parent):
- QGraphicsDropShadowEffect.__init__(self, parent)
-
- self.m_fakeParent = None
-
- self.setBlurRadius(20)
- self.setColor(canvas.theme.box_shadow)
- self.setOffset(0, 0)
-
- def setFakeParent(self, fakeParent):
- self.m_fakeParent = fakeParent
-
- def setOpacity(self, opacity):
- color = QColor(canvas.theme.box_shadow)
- color.setAlphaF(opacity)
- self.setColor(color)
-
- def draw(self, painter):
- if self.m_fakeParent:
- self.m_fakeParent.repaintLines()
- QGraphicsDropShadowEffect.draw(self, painter)
-
- # ------------------------------------------------------------------------------------------------------------
|