/* -*- 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 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. * */ #include "connectdevlistitem.h" #include #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 ConnectDevListItem::ConnectDevListItem(QString staMac, QString staName, QWidget *parent) : QFrame(parent), m_mac(staMac) { this->setMinimumSize(FRAME_MIN_SIZE); this->setFixedHeight(60); QHBoxLayout *hItemLayout = new QHBoxLayout(this); hItemLayout->setContentsMargins(ITEM_MARGINS); QLabel *nameLabel = new QLabel(staName, this); m_dragIntoBlackListBtn = new KBorderlessButton(this); m_dragIntoBlackListBtn->setText(tr("drag into blacklist")); hItemLayout->setSpacing(0); hItemLayout->addWidget(nameLabel, Qt::AlignLeft); hItemLayout->addStretch(); hItemLayout->addWidget(m_dragIntoBlackListBtn, Qt::AlignRight); m_dragIntoBlackListBtn->installEventFilter(this); this->setLayout(hItemLayout); } bool ConnectDevListItem::eventFilter(QObject *w, QEvent *e) { if (e->type() == QEvent::MouseButtonRelease) { if (w == m_dragIntoBlackListBtn) { emit onBtnClicked(m_mac); return true; } } return QWidget::eventFilter(w,e); }