mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 17:33:05 +00:00

merge sound, shutdown, network plugins to system-tray Change-Id: Iab7aef4c56d3e1c24b408c323ef03a8276ff43f2
95 lines
2.8 KiB
C++
95 lines
2.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 WIRELESSTRAYWIDGET_H
|
|
#define WIRELESSTRAYWIDGET_H
|
|
|
|
#include "constants.h"
|
|
|
|
#include "abstractnetworktraywidget.h"
|
|
#include "applet/wirelesslist.h"
|
|
|
|
#include <QHash>
|
|
#include <QLabel>
|
|
|
|
#include <WirelessDevice>
|
|
|
|
class TipsWidget;
|
|
class WirelessTrayWidget : public AbstractNetworkTrayWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit WirelessTrayWidget(dde::network::WirelessDevice *device, QWidget *parent = nullptr);
|
|
~WirelessTrayWidget();
|
|
|
|
public:
|
|
void setActive(const bool active) Q_DECL_OVERRIDE;
|
|
void updateIcon() Q_DECL_OVERRIDE;
|
|
void sendClick(uint8_t mouseButton, int x, int y) Q_DECL_OVERRIDE;
|
|
const QImage trayImage() Q_DECL_OVERRIDE;
|
|
|
|
QWidget *itemApplet();
|
|
QWidget *itemTips();
|
|
|
|
public Q_SLOTS:
|
|
void onNeedSecrets(const QString &info);
|
|
void onNeedSecretsFinished(const QString &info0, const QString &info1);
|
|
// set the device name displayed
|
|
// in the top-left corner of the applet
|
|
void setDeviceInfo(const int index);
|
|
|
|
Q_SIGNALS:
|
|
void requestActiveAP(const QString &devPath, const QString &apPath, const QString &uuid) const;
|
|
void requestDeactiveAP(const QString &devPath) const;
|
|
void feedSecret(const QString &connectionPath, const QString &settingName, const QString &password, const bool autoConnect);
|
|
void cancelSecret(const QString &connectionPath, const QString &settingName);
|
|
void queryActiveConnInfo();
|
|
void requestWirelessScan();
|
|
void createApConfig(const QString &devPath, const QString &apPath);
|
|
void queryConnectionSession( const QString &devPath, const QString &uuid );
|
|
|
|
protected:
|
|
bool eventFilter(QObject *o, QEvent *e) Q_DECL_OVERRIDE;
|
|
void paintEvent(QPaintEvent *e) Q_DECL_OVERRIDE;
|
|
void resizeEvent(QResizeEvent *e) Q_DECL_OVERRIDE;
|
|
|
|
private:
|
|
const QPixmap cachedPix(const QString &key, const int size);
|
|
|
|
private Q_SLOTS:
|
|
void init();
|
|
void adjustHeight();
|
|
|
|
private:
|
|
QTimer *m_refershTimer;
|
|
QWidget *m_wirelessApplet;
|
|
TipsWidget *m_wirelessPopup;
|
|
WirelessList *m_APList;
|
|
|
|
QHash<QString, QPixmap> m_icons;
|
|
QPixmap m_pixmap;
|
|
|
|
bool m_reloadIcon;
|
|
};
|
|
|
|
#endif // WIRELESSTRAYWIDGET_H
|