kylin-nm/plugins/mobilehotspot/connectdevlistitem.h

34 lines
632 B
C++

#ifndef CONNECTDEVLISTITEM_H
#define CONNECTDEVLISTITEM_H
#include <QFrame>
#include <QEvent>
#include <QHBoxLayout>
#include <QDebug>
#include <QMouseEvent>
#include <QMenu>
#include <QLabel>
#include "kborderlessbutton.h"
using namespace kdk;
class ConnectDevListItem : public QFrame
{
Q_OBJECT
public:
ConnectDevListItem(QString staMac, QString staName, QWidget *parent = nullptr);
~ConnectDevListItem();
protected:
KBorderlessButton *m_dragIntoBlackListBtn = nullptr;
QString m_mac;
bool eventFilter(QObject *w, QEvent *e);
signals:
void onBtnClicked(QString staMac);
};
#endif // LISTITEM_H