forked from github_mirror/framelesshelper
183 lines
5.2 KiB
C++
183 lines
5.2 KiB
C++
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (C) 2021 by wangwenx190 (Yuhang Zhao)
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
#include "qtacrylicwidget.h"
|
|
#include "utilities.h"
|
|
#include <QtCore/qdebug.h>
|
|
#include <QtGui/qevent.h>
|
|
#include <QtGui/qpainter.h>
|
|
|
|
QtAcrylicWidget::QtAcrylicWidget(QWidget *parent) : QWidget(parent)
|
|
{
|
|
}
|
|
|
|
QtAcrylicWidget::~QtAcrylicWidget() = default;
|
|
|
|
QColor QtAcrylicWidget::tintColor() const
|
|
{
|
|
const QColor color = m_acrylicHelper.getTintColor();
|
|
if (color.isValid() && (color != Qt::transparent)) {
|
|
return color;
|
|
} else {
|
|
return palette().color(backgroundRole());
|
|
}
|
|
}
|
|
|
|
void QtAcrylicWidget::setTintColor(const QColor &value)
|
|
{
|
|
if (!value.isValid()) {
|
|
qWarning() << "Tint color not valid.";
|
|
return;
|
|
}
|
|
if (m_acrylicHelper.getTintColor() != value) {
|
|
m_acrylicHelper.setTintColor(value);
|
|
QPalette pal = palette();
|
|
pal.setColor(backgroundRole(), m_acrylicHelper.getTintColor());
|
|
setPalette(pal);
|
|
//m_acrylicHelper.updateAcrylicBrush(tintColor());
|
|
update();
|
|
Q_EMIT tintColorChanged();
|
|
}
|
|
}
|
|
|
|
qreal QtAcrylicWidget::tintOpacity() const
|
|
{
|
|
return m_acrylicHelper.getTintOpacity();
|
|
}
|
|
|
|
void QtAcrylicWidget::setTintOpacity(const qreal value)
|
|
{
|
|
if (m_acrylicHelper.getTintOpacity() != value) {
|
|
m_acrylicHelper.setTintOpacity(value);
|
|
m_acrylicHelper.updateAcrylicBrush(tintColor());
|
|
update();
|
|
Q_EMIT tintOpacityChanged();
|
|
}
|
|
}
|
|
|
|
qreal QtAcrylicWidget::noiseOpacity() const
|
|
{
|
|
return m_acrylicHelper.getNoiseOpacity();
|
|
}
|
|
|
|
void QtAcrylicWidget::setNoiseOpacity(const qreal value)
|
|
{
|
|
if (m_acrylicHelper.getNoiseOpacity() != value) {
|
|
m_acrylicHelper.setNoiseOpacity(value);
|
|
m_acrylicHelper.updateAcrylicBrush(tintColor());
|
|
update();
|
|
Q_EMIT noiseOpacityChanged();
|
|
}
|
|
}
|
|
|
|
bool QtAcrylicWidget::frameVisible() const
|
|
{
|
|
return m_frameVisible;
|
|
}
|
|
|
|
void QtAcrylicWidget::setFrameVisible(const bool value)
|
|
{
|
|
if (m_frameVisible != value) {
|
|
m_frameVisible = value;
|
|
update();
|
|
Q_EMIT frameVisibleChanged();
|
|
}
|
|
}
|
|
|
|
QColor QtAcrylicWidget::frameColor() const
|
|
{
|
|
return m_acrylicHelper.getFrameColor();
|
|
}
|
|
|
|
void QtAcrylicWidget::setFrameColor(const QColor &value)
|
|
{
|
|
if (m_acrylicHelper.getFrameColor() != value) {
|
|
m_acrylicHelper.setFrameColor(value);
|
|
update();
|
|
Q_EMIT frameColorChanged();
|
|
}
|
|
}
|
|
|
|
qreal QtAcrylicWidget::frameThickness() const
|
|
{
|
|
return m_acrylicHelper.getFrameThickness();
|
|
}
|
|
|
|
void QtAcrylicWidget::setFrameThickness(const qreal value)
|
|
{
|
|
if (m_acrylicHelper.getFrameThickness() != value) {
|
|
m_acrylicHelper.setFrameThickness(value);
|
|
update();
|
|
Q_EMIT frameThicknessChanged();
|
|
}
|
|
}
|
|
|
|
bool QtAcrylicWidget::acrylicEnabled() const
|
|
{
|
|
return m_acrylicEnabled;
|
|
}
|
|
|
|
void QtAcrylicWidget::setAcrylicEnabled(const bool value)
|
|
{
|
|
if (m_acrylicEnabled != value) {
|
|
m_acrylicEnabled = value;
|
|
if (m_inited) {
|
|
Utilities::setBlurEffectEnabled(windowHandle(), m_acrylicEnabled);
|
|
}
|
|
setAutoFillBackground(!m_acrylicEnabled);
|
|
setAttribute(Qt::WA_NoSystemBackground, m_acrylicEnabled);
|
|
setAttribute(Qt::WA_OpaquePaintEvent, m_acrylicEnabled);
|
|
setBackgroundRole(m_acrylicEnabled ? QPalette::Base : QPalette::Window);
|
|
update();
|
|
Q_EMIT acrylicEnabledChanged();
|
|
if (m_acrylicEnabled) {
|
|
m_acrylicHelper.showWarning();
|
|
}
|
|
}
|
|
}
|
|
|
|
void QtAcrylicWidget::showEvent(QShowEvent *event)
|
|
{
|
|
QWidget::showEvent(event);
|
|
if (!m_inited) {
|
|
m_acrylicHelper.install(windowHandle());
|
|
m_acrylicHelper.updateAcrylicBrush(tintColor());
|
|
connect(&m_acrylicHelper, &QtAcrylicEffectHelper::needsRepaint, this, qOverload<>(&QtAcrylicWidget::update));
|
|
m_inited = true;
|
|
}
|
|
}
|
|
|
|
void QtAcrylicWidget::paintEvent(QPaintEvent *event)
|
|
{
|
|
QPainter painter(this);
|
|
const QRect rect = {0, 0, width(), height()};
|
|
if (acrylicEnabled()) {
|
|
m_acrylicHelper.paintWindowBackground(&painter, rect);
|
|
}
|
|
if (frameVisible()) {
|
|
m_acrylicHelper.paintWindowFrame(&painter, rect);
|
|
}
|
|
QWidget::paintEvent(event);
|
|
}
|