dde-dock/plugins/bluetooth/bluetoothitem.h

56 lines
1.0 KiB
C
Raw Normal View History

// SPDX-FileCopyrightText: 2016 - 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
#ifndef BLUETOOTHITEM_H
#define BLUETOOTHITEM_H
#include "componments/device.h"
#include <QWidget>
#define BLUETOOTH_KEY "bluetooth-item-key"
class BluetoothApplet;
namespace Dock {
class TipsWidget;
}
class BluetoothItem : public QWidget
{
Q_OBJECT
public:
explicit BluetoothItem(QWidget *parent = nullptr);
QWidget *tipsWidget();
QWidget *popupApplet();
const QString contextMenu() const;
void invokeMenuItem(const QString menuId, const bool checked);
void refreshIcon();
void refreshTips();
bool hasAdapter();
protected:
void resizeEvent(QResizeEvent *event);
void paintEvent(QPaintEvent *event);
signals:
void requestContextMenu() const;
void noAdapter();
void justHasAdapter();
private:
Dock::TipsWidget *m_tipsLabel;
BluetoothApplet *m_applet;
QPixmap m_iconPixmap;
Device::State m_devState;
bool m_adapterPowered;
};
#endif // BLUETOOTHITEM_H