You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
2.6 KiB
C++
106 lines
2.6 KiB
C++
/*
|
|
* Copyright 2020 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 PLASMATHEMEEXTENDEDPANELBACKGROUND_H
|
|
#define PLASMATHEMEEXTENDEDPANELBACKGROUND_H
|
|
|
|
// Qt
|
|
#include <QObject>
|
|
|
|
// Plasma
|
|
#include <Plasma>
|
|
#include <Plasma/FrameSvg>
|
|
|
|
namespace Latte {
|
|
namespace PlasmaExtended {
|
|
class Theme;
|
|
}
|
|
}
|
|
|
|
namespace Latte {
|
|
namespace PlasmaExtended {
|
|
|
|
class PanelBackground: public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(int paddingTop READ paddingTop NOTIFY paddingsChanged)
|
|
Q_PROPERTY(int paddingLeft READ paddingLeft NOTIFY paddingsChanged)
|
|
Q_PROPERTY(int paddingBottom READ paddingBottom NOTIFY paddingsChanged)
|
|
Q_PROPERTY(int paddingRight READ paddingRight NOTIFY paddingsChanged)
|
|
|
|
Q_PROPERTY(int roundness READ roundness NOTIFY roundnessChanged)
|
|
|
|
Q_PROPERTY(float maxOpacity READ maxOpacity NOTIFY maxOpacityChanged)
|
|
|
|
public:
|
|
PanelBackground(Plasma::Types::Location edge, Theme *parent);
|
|
~PanelBackground();
|
|
|
|
int paddingTop() const;
|
|
int paddingLeft() const;
|
|
int paddingBottom() const;
|
|
int paddingRight() const;
|
|
|
|
int roundness() const;
|
|
|
|
float maxOpacity() const;
|
|
|
|
public slots:
|
|
void update();
|
|
|
|
signals:
|
|
void paddingsChanged();
|
|
void roundnessChanged();
|
|
void maxOpacityChanged();
|
|
|
|
private:
|
|
bool hasMask(Plasma::Svg *svg) const;
|
|
|
|
QString prefixed(const QString &id);
|
|
QString element(Plasma::Svg *svg, const QString &id);
|
|
|
|
void updateMaxOpacity(Plasma::Svg *svg);
|
|
void updatePaddings(Plasma::Svg *svg);
|
|
void updateRoundness(Plasma::Svg *svg);
|
|
|
|
void updateRoundnessFromMask(Plasma::Svg *svg);
|
|
void updateRoundnessFromShadows(Plasma::Svg *svg);
|
|
void updateRoundnessFallback(Plasma::Svg *svg);
|
|
|
|
private:
|
|
int m_paddingTop{0};
|
|
int m_paddingLeft{0};
|
|
int m_paddingBottom{0};
|
|
int m_paddingRight{0};
|
|
|
|
int m_roundness{0};
|
|
|
|
float m_maxOpacity{1.0};
|
|
|
|
Plasma::Types::Location m_location{Plasma::Types::BottomEdge};
|
|
|
|
Theme *m_parentTheme{nullptr};
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|