mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00
61 lines
1.4 KiB
C++
61 lines
1.4 KiB
C++
// Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
|
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#ifndef SOUNDITEM_H
|
|
#define SOUNDITEM_H
|
|
|
|
#include "soundapplet.h"
|
|
#include "org_deepin_dde_audio1_sink.h"
|
|
|
|
#include <QWidget>
|
|
#include <QIcon>
|
|
|
|
#define SOUND_KEY "sound-item-key"
|
|
|
|
using DBusSink = org::deepin::dde::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, int iconWidth, int iconHeight) const;
|
|
|
|
signals:
|
|
void requestContextMenu() const;
|
|
void iconChanged() 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
|