kylin-nm/plugins/netconnect/deviceframe.h

37 lines
696 B
C
Raw Normal View History

2021-10-27 12:28:16 +08:00
#ifndef DEVICEFRAME_H
#define DEVICEFRAME_H
#include <QObject>
#include <QWidget>
#include <QPushButton>
#include <QHBoxLayout>
#include <QLabel>
#include <QTimer>
#include <QDebug>
2021-11-11 17:13:30 +08:00
#include "../component/DrownLabel/drownlabel.h"
2022-05-27 10:11:50 +08:00
#include "kwidget.h"
#include "kswitchbutton.h"
using namespace kdk;
2021-10-27 12:28:16 +08:00
class DeviceFrame : public QFrame
{
public:
DeviceFrame(QString devName, QWidget *parent = nullptr);
~DeviceFrame();
public:
QLabel * deviceLabel = nullptr;
2022-05-27 10:11:50 +08:00
KSwitchButton * deviceSwitch = nullptr;
2021-10-27 12:28:16 +08:00
DrownLabel *dropDownLabel = nullptr;
2021-12-01 11:07:21 +08:00
protected:
void paintEvent(QPaintEvent *event);
2021-10-27 12:28:16 +08:00
private:
bool isDropDown = false;
int frameSize;
};
#endif // DEVICEFRAME_H