1
0
mirror of https://github.com/KDE/latte-dock.git synced 2025-01-24 18:03:53 +03:00
latte-dock/app/view/effects.h
Michail Vourlakos 940bee9408 Latte::Quick use layout popUpMargin
--this way we can support three different
popup styles. Plasma/AllBorders/Far From Edge
2021-05-03 03:11:09 +03:00

217 lines
6.6 KiB
C++

/*
* Copyright 2018 Michail Vourlakos <mvourlakos@gmail.com>
*
* This file is part of Latte-Dock
*
* Latte-Dock 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 (at your option) any later version.
*
* Latte-Dock 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef EFFECTS_H
#define EFFECTS_H
// local
#include "../plasma/extended/theme.h"
// Qt
#include <QObject>
#include <QPointer>
#include <QQuickView>
#include <QRect>
// Plasma
#include <Plasma/FrameSvg>
#include <Plasma/Theme>
namespace Latte {
class Corona;
class View;
}
namespace Latte {
namespace ViewPart {
class Effects: public QObject
{
Q_OBJECT
Q_PROPERTY(bool animationsBlocked READ animationsBlocked NOTIFY animationsBlockedChanged)
Q_PROPERTY(bool drawShadows READ drawShadows WRITE setDrawShadows NOTIFY drawShadowsChanged)
Q_PROPERTY(bool drawEffects READ drawEffects WRITE setDrawEffects NOTIFY drawEffectsChanged)
//! thickness shadow size when is drawn inside the window from qml
Q_PROPERTY(int editShadow READ editShadow WRITE setEditShadow NOTIFY editShadowChanged)
Q_PROPERTY(int innerShadow READ innerShadow WRITE setInnerShadow NOTIFY innerShadowChanged)
Q_PROPERTY(bool backgroundAllCorners READ backgroundAllCorners WRITE setBackgroundAllCorners NOTIFY backgroundAllCornersChanged)
Q_PROPERTY(bool backgroundRadiusEnabled READ backgroundRadiusEnabled WRITE setBackgroundRadiusEnabled NOTIFY backgroundRadiusEnabledChanged)
Q_PROPERTY(int backgroundRadius READ backgroundRadius WRITE setBackgroundRadius NOTIFY backgroundRadiusChanged)
Q_PROPERTY(float backgroundOpacity READ backgroundOpacity WRITE setBackgroundOpacity NOTIFY backgroundOpacityChanged)
Q_PROPERTY(int popUpMargin READ popUpMargin NOTIFY popUpMarginChanged)
Q_PROPERTY(QRect mask READ mask WRITE setMask NOTIFY maskChanged)
Q_PROPERTY(QRect rect READ rect WRITE setRect NOTIFY rectChanged)
Q_PROPERTY(QRect inputMask READ inputMask WRITE setInputMask NOTIFY inputMaskChanged)
Q_PROPERTY(QRect appletsLayoutGeometry READ appletsLayoutGeometry WRITE setAppletsLayoutGeometry NOTIFY appletsLayoutGeometryChanged)
Q_PROPERTY(Plasma::FrameSvg::EnabledBorders enabledBorders READ enabledBorders NOTIFY enabledBordersChanged)
public:
Effects(Latte::View *parent);
virtual ~Effects();
bool animationsBlocked() const;
void setAnimationsBlocked(bool blocked);
bool backgroundAllCorners() const;
void setBackgroundAllCorners(bool allcorners);
bool backgroundRadiusEnabled() const;
void setBackgroundRadiusEnabled(bool enabled);
bool drawShadows() const;
void setDrawShadows(bool draw);
bool drawEffects() const;
void setDrawEffects(bool draw);
void setForceTopBorder(bool draw);
void setForceBottomBorder(bool draw);
int editShadow() const;
void setEditShadow(int shadow);
int innerShadow() const;
void setInnerShadow(int shadow);
int backgroundRadius();
void setBackgroundRadius(const int &radius);
int popUpMargin() const;
float backgroundOpacity() const;
void setBackgroundOpacity(float opacity);
QRect mask() const;
void setMask(QRect area);
QRect inputMask() const;
void setInputMask(QRect area);
QRect rect() const;
void setRect(QRect area);
QRect appletsLayoutGeometry() const;
void setAppletsLayoutGeometry(const QRect &geom);
Plasma::FrameSvg::EnabledBorders enabledBorders() const;
public slots:
Q_INVOKABLE void forceMaskRedraw();
Q_INVOKABLE void setSubtractedMaskRegion(const QString &regionid, const QRegion &region);
Q_INVOKABLE void removeSubtractedMaskRegion(const QString &regionid);
Q_INVOKABLE void setUnitedMaskRegion(const QString &regionid, const QRegion &region);
Q_INVOKABLE void removeUnitedMaskRegion(const QString &regionid);
void clearShadows();
void updateShadows();
void updateEffects();
void updateEnabledBorders();
void updateMask();
signals:
void animationsBlockedChanged();
void appletsLayoutGeometryChanged();
void backgroundAllCornersChanged();
void backgroundCornersMaskChanged();
void backgroundOpacityChanged();
void backgroundRadiusEnabledChanged();
void backgroundRadiusChanged();
void drawShadowsChanged();
void drawEffectsChanged();
void editShadowChanged();
void enabledBordersChanged();
void maskChanged();
void innerShadowChanged();
void inputMaskChanged();
void popUpMarginChanged();
void rectChanged();
void subtractedMaskRegionsChanged();
void unitedMaskRegionsChanged();
private slots:
void init();
void onPopUpMarginChanged();
void updateBackgroundContrastValues();
void updateBackgroundCorners();
private:
bool backgroundRadiusIsEnabled() const;
qreal currentMidValue(const qreal &max, const qreal &factor, const qreal &min) const;
QRegion customMask(const QRect &rect);
QRegion maskCombinedRegion();
private:
bool m_animationsBlocked{false};
bool m_backgroundAllCorners{false};
bool m_backgroundRadiusEnabled{false};
bool m_drawShadows{true};
bool m_drawEffects{false};
bool m_forceTopBorder{false};
bool m_forceBottomBorder{false};
bool m_hasTopLeftCorner{false};
bool m_hasTopRightCorner{false};
bool m_hasBottomLeftCorner{false};
bool m_hasBottomRightCorner{false};
int m_editShadow{0};
int m_innerShadow{0};
int m_backgroundRadius{-1};
float m_backgroundOpacity{1.0};
qreal m_backEffectContrast{1};
qreal m_backEffectIntesity{1};
qreal m_backEffectSaturation{1};
QRect m_rect;
QRect m_mask;
QRect m_inputMask;
QRect m_appletsLayoutGeometry;
QPointer<Latte::View> m_view;
QPointer<Latte::Corona> m_corona;
PlasmaExtended::CornerRegions m_cornersMaskRegion;
Plasma::Theme m_theme;
//only for the mask on disabled compositing, not to actually paint
Plasma::FrameSvg *m_background{nullptr};
//only for the mask, not to actually paint
Plasma::FrameSvg::EnabledBorders m_enabledBorders{Plasma::FrameSvg::AllBorders};
//! Subtracted and United Mask regions
QHash<QString, QRegion> m_subtractedMaskRegions;
QHash<QString, QRegion> m_unitedMaskRegions;
};
}
}
#endif