124 lines
2.7 KiB
C++
124 lines
2.7 KiB
C++
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
|
*
|
|
* 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 2 of the License, or
|
|
* (at your option) 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, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
*/
|
|
|
|
#ifndef LANITEM_H
|
|
#define LANITEM_H
|
|
#include <QObject>
|
|
#include <QHBoxLayout>
|
|
#include <QLabel>
|
|
#include <QTimer>
|
|
#include <QImage>
|
|
#include <QPainter>
|
|
#include <QMouseEvent>
|
|
#include <QMenu>
|
|
|
|
|
|
#include "../component/InfoButton/infobutton.h"
|
|
#include "../component/RadioItemButton/radioitembutton.h"
|
|
#include "../component/FixLabel/fixlabel.h"
|
|
|
|
class LanItem : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
LanItem(bool isSimple, QWidget *parent = nullptr);
|
|
|
|
void setName(QString name) {
|
|
titileLabel->setLabelText(name);
|
|
}
|
|
|
|
QString getName() {
|
|
return titileLabel->getText();
|
|
}
|
|
|
|
void setItemIcon(const QIcon &icon) {
|
|
radioBtn->setButtonIcon(icon);
|
|
}
|
|
|
|
void setStatus(bool isAcitve){
|
|
m_isAcitve = isAcitve;
|
|
radioBtn->setActive(isAcitve);
|
|
}
|
|
|
|
bool getStatus(){
|
|
return m_isAcitve;
|
|
}
|
|
|
|
bool getIsLoading() {
|
|
return m_loading;
|
|
}
|
|
|
|
QString getUuid(){
|
|
return m_uuid;
|
|
}
|
|
|
|
void setUuid(QString uuid){
|
|
m_uuid = uuid;
|
|
}
|
|
|
|
QString getPath(){
|
|
return m_dbusPath;
|
|
}
|
|
|
|
void setPath(QString dbusPath){
|
|
m_dbusPath = dbusPath;
|
|
}
|
|
|
|
void startLoading();
|
|
void stopLoading();
|
|
|
|
|
|
Q_SIGNALS:
|
|
void itemClick();
|
|
void infoButtonClick();
|
|
|
|
protected:
|
|
void mousePressEvent(QMouseEvent *event);
|
|
void mouseReleaseEvent(QMouseEvent *event);
|
|
void enterEvent(QEvent *event);
|
|
void leaveEvent(QEvent *event);
|
|
void paintEvent(QPaintEvent *event);
|
|
|
|
private:
|
|
QTimer *waitTimer = nullptr;
|
|
QList<QIcon> loadIcons;
|
|
int currentIconIndex=0;
|
|
|
|
QMenu *m_menu = nullptr;
|
|
|
|
RadioItemButton* radioBtn = nullptr;
|
|
InfoButton * infoLabel = nullptr;
|
|
FixLabel * titileLabel = nullptr;
|
|
|
|
bool m_loading = false;
|
|
bool m_isAcitve = false;
|
|
bool isSimple;
|
|
|
|
QString m_uuid;
|
|
QString m_dbusPath;
|
|
|
|
bool m_isIn = false;
|
|
|
|
private Q_SLOTS:
|
|
void updateIcon();
|
|
};
|
|
|
|
#endif // LANITEM_H
|