mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00

1、icon接口中增加主题参数默认值 2、删除以前的不带主题的icon接口 3、PluginStatus改为PluginMode 4、插件接口类中增加eventHandler虚函数 Log: Influence: 无 Task: https://pms.uniontech.com/task-view-222025.html Change-Id: I03c8ec09b96faf12f5ab15c8223da8dacae3e4ff
76 lines
1.9 KiB
C++
76 lines
1.9 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/>.
|
|
*/
|
|
|
|
#ifndef SOUNDITEM_H
|
|
#define SOUNDITEM_H
|
|
|
|
#include "soundapplet.h"
|
|
#include "org_deepin_daemon_audio_sink.h"
|
|
|
|
#include <QWidget>
|
|
#include <QIcon>
|
|
|
|
#define SOUND_KEY "sound-item-key"
|
|
|
|
using DBusSink = org::deepin::daemon::audio1::Sink;
|
|
|
|
namespace Dock {
|
|
class TipsWidget;
|
|
}
|
|
class SoundItem : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SoundItem(QWidget *parent = 0);
|
|
|
|
QWidget *tipsWidget();
|
|
QWidget *popupApplet();
|
|
|
|
const QString contextMenu();
|
|
void invokeMenuItem(const QString menuId, const bool checked);
|
|
|
|
void refreshIcon();
|
|
void refreshTips(const int volume, const bool force = false);
|
|
QPixmap pixmap() const;
|
|
QPixmap pixmap(DGuiApplicationHelper::ColorType colorType) const;
|
|
|
|
signals:
|
|
void requestContextMenu() const;
|
|
|
|
protected:
|
|
void resizeEvent(QResizeEvent *e);
|
|
void wheelEvent(QWheelEvent *e);
|
|
void paintEvent(QPaintEvent *e);
|
|
|
|
private slots:
|
|
void sinkChanged(DBusSink *sink);
|
|
void refresh(const int volume);
|
|
|
|
private:
|
|
Dock::TipsWidget *m_tipsLabel;
|
|
QScopedPointer<SoundApplet> m_applet;
|
|
DBusSink *m_sinkInter;
|
|
QPixmap m_iconPixmap;
|
|
};
|
|
|
|
#endif // SOUNDITEM_H
|