mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-05-30 22:01:41 +00:00

V23接口改造适配 Log: V23接口改造适配 Influence: 无 Task: https://pms.uniontech.com/task-view-207483.html Change-Id: Ide530c023ea41f86fad2e8001ec67f1afaa897ab
135 lines
3.6 KiB
C++
135 lines
3.6 KiB
C++
/*
|
|
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
|
*
|
|
* Author: sbw <sbw@sbw.so>
|
|
*
|
|
* Maintainer: sbw <sbw@sbw.so>
|
|
*
|
|
* 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 3 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "indicatortrayitem.h"
|
|
|
|
#include <QLabel>
|
|
#include <QBoxLayout>
|
|
|
|
#include <QDBusConnection>
|
|
#include <QDBusInterface>
|
|
#include <QFile>
|
|
#include <QDebug>
|
|
#include <QJsonDocument>
|
|
#include <QJsonObject>
|
|
#include <QDBusInterface>
|
|
#include <QDBusReply>
|
|
#include <QApplication>
|
|
#include <thread>
|
|
|
|
IndicatorTrayItem::IndicatorTrayItem(const QString &indicatorName, QWidget *parent, Qt::WindowFlags f)
|
|
: BaseTrayWidget(parent, f)
|
|
, m_indicatorName(indicatorName)
|
|
, m_enableClick(true)
|
|
{
|
|
setAttribute(Qt::WA_TranslucentBackground);
|
|
|
|
auto layout = new QVBoxLayout(this);
|
|
layout->setContentsMargins(0, 0, 0, 0);
|
|
m_label = new QLabel(this);
|
|
|
|
QPalette p = m_label->palette();
|
|
p.setColor(QPalette::Foreground, Qt::white);
|
|
p.setColor(QPalette::Background, Qt::transparent);
|
|
m_label->setPalette(p);
|
|
|
|
m_label->setAttribute(Qt::WA_TranslucentBackground);
|
|
|
|
layout->addWidget(m_label, 0, Qt::AlignCenter);
|
|
setLayout(layout);
|
|
|
|
// register dbus
|
|
auto path = QString("/org/deepin/dde/Dock1/Indicator/") + m_indicatorName;
|
|
auto interface = QString("org.deepin.dde.Dock1.Indicator.") + m_indicatorName;
|
|
auto sessionBus = QDBusConnection::sessionBus();
|
|
sessionBus.registerObject(path,
|
|
interface,
|
|
this,
|
|
QDBusConnection::ExportScriptableSlots);
|
|
}
|
|
|
|
IndicatorTrayItem::~IndicatorTrayItem()
|
|
{
|
|
}
|
|
|
|
QString IndicatorTrayItem::itemKeyForConfig()
|
|
{
|
|
return toIndicatorKey(m_indicatorName);
|
|
}
|
|
|
|
void IndicatorTrayItem::updateIcon()
|
|
{
|
|
|
|
}
|
|
|
|
void IndicatorTrayItem::sendClick(uint8_t buttonIndex, int x, int y)
|
|
{
|
|
if (m_enableClick)
|
|
Q_EMIT clicked(buttonIndex, x, y);
|
|
}
|
|
|
|
void IndicatorTrayItem::enableLabel(bool enable)
|
|
{
|
|
QPalette p = m_label->palette();
|
|
if (!enable) {
|
|
m_enableClick = false;
|
|
p.setColor(QPalette::Disabled, QPalette::Foreground, Qt::lightGray);
|
|
p.setColor(QPalette::Disabled, QPalette::Background, Qt::transparent);
|
|
m_label->setEnabled(enable);
|
|
} else {
|
|
m_enableClick = true;
|
|
p.setColor(QPalette::Normal, QPalette::BrightText, Qt::white);
|
|
p.setColor(QPalette::Normal, QPalette::Background, Qt::transparent);
|
|
m_label->setEnabled(enable);
|
|
}
|
|
|
|
m_label->setPalette(p);
|
|
m_label->update();
|
|
}
|
|
|
|
QPixmap IndicatorTrayItem::icon()
|
|
{
|
|
return QPixmap();
|
|
}
|
|
|
|
const QByteArray &IndicatorTrayItem::pixmapData() const
|
|
{
|
|
return m_pixmapData;
|
|
}
|
|
|
|
const QString IndicatorTrayItem::text() const
|
|
{
|
|
return m_label->text();
|
|
}
|
|
|
|
void IndicatorTrayItem::setPixmapData(const QByteArray &data)
|
|
{
|
|
m_pixmapData = data;
|
|
auto rawPixmap = QPixmap::fromImage(QImage::fromData(data));
|
|
rawPixmap.setDevicePixelRatio(devicePixelRatioF());
|
|
m_label->setPixmap(rawPixmap);
|
|
}
|
|
|
|
void IndicatorTrayItem::setText(const QString &text)
|
|
{
|
|
m_label->setText(text);
|
|
}
|