71 lines
2.3 KiB
C++
71 lines
2.3 KiB
C++
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* Copyright (C) 2022 Tianjin KYLIN Information Technology 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 3 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.
|
|
*
|
|
*/
|
|
#include "blacklistitem.h"
|
|
#include <QDebug>
|
|
|
|
#define MAIN_LAYOUT_MARGINS 0,0,0,0
|
|
#define MAIN_LAYOUT_SPACING 0
|
|
#define ITEM_FRAME_MARGINS 0,0,0,0
|
|
#define ITEM_FRAME_SPACING 10
|
|
#define FRAME_WIDTH 395
|
|
#define INFO_ICON_WIDTH 16
|
|
#define INFO_ICON_HEIGHT 16
|
|
#define LIGHT_HOVER_COLOR QColor(240,240,240,255)
|
|
#define DARK_HOVER_COLOR QColor(15,15,15,255)
|
|
|
|
#define FRAME_MIN_SIZE 550, 60
|
|
#define CONTECT_FRAME_MAX_SIZE 16777215, 60
|
|
#define LABLE_MIN_WIDTH 188
|
|
#define ITEM_MARGINS 16, 0, 16, 0
|
|
|
|
BlacklistItem::BlacklistItem(QString staMac, QString staName, QWidget *parent) :
|
|
QFrame(parent),
|
|
m_mac(staMac),
|
|
m_hostName(staName)
|
|
{
|
|
this->setMinimumHeight(60);
|
|
this->setFixedHeight(60);
|
|
|
|
QHBoxLayout *hItemLayout = new QHBoxLayout(this);
|
|
hItemLayout->setContentsMargins(ITEM_MARGINS);
|
|
QLabel *nameLabel = new QLabel(staName, this);
|
|
m_removeFromBlacklistBtn = new KBorderlessButton(this);
|
|
m_removeFromBlacklistBtn->setText(tr("Remove"));
|
|
hItemLayout->setSpacing(0);
|
|
hItemLayout->addWidget(nameLabel, Qt::AlignLeft);
|
|
hItemLayout->addStretch();
|
|
hItemLayout->addWidget(m_removeFromBlacklistBtn, Qt::AlignRight);
|
|
|
|
m_removeFromBlacklistBtn->installEventFilter(this);
|
|
this->setLayout(hItemLayout);
|
|
}
|
|
|
|
bool BlacklistItem::eventFilter(QObject *w, QEvent *e)
|
|
{
|
|
if (e->type() == QEvent::MouseButtonRelease) {
|
|
if (w == m_removeFromBlacklistBtn) {
|
|
emit onBtnClicked(m_mac, m_hostName);
|
|
return true;
|
|
}
|
|
}
|
|
return QWidget::eventFilter(w,e);
|
|
}
|
|
|