dde-dock/plugins/sound/sounditem.h
donghualin 9985c9b239 feat: 声音插件适配v23
将声音的相关功能移到sound插件中,方便扩展,并适配v23的接口

Log: 声音插件适配v23
Influence: 观察任务栏是否存在声音插件
Task: https://pms.uniontech.com/task-view-210309.html
Change-Id: I7f782af6955a017af940e639a02eedab8f459905
2022-11-04 05:09:03 +00:00

75 lines
1.8 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;
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