-
Notifications
You must be signed in to change notification settings - Fork 2
/
iplineedit.h
71 lines (54 loc) · 2.01 KB
/
iplineedit.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
//
// Created by TURIING on 2023/6/12.
//
#ifndef QTDEMO_IPLINEEDIT_H
#define QTDEMO_IPLINEEDIT_H
#include <QWidget>
#include <QLabel>
#include <QLineEdit>
#include <QRegularExpression>
#include <QRegularExpressionValidator>
#include <QVBoxLayout>
#include <QHBoxLayout>
#include <QEvent>
#include <QKeyEvent>
#include <QDebug>
QT_BEGIN_NAMESPACE
namespace Ui { class IPLineEdit; }
QT_END_NAMESPACE
class IPLineEdit : public QWidget {
Q_OBJECT
Q_PROPERTY(QString m_ip READ getIp WRITE setIp)
public:
explicit IPLineEdit(QWidget *parent = nullptr);
virtual ~IPLineEdit() override;
QString getIp() const;
QSize sizeHint() const;
QSize minSizeHint() const;
void setIp(const QString &_ip);
void clear();
void setBgColor(const QString &_bgColor);
void setBorderColor(const QString &_borderColor);
void setBorderRadius(float _borderRadius);
protected:
bool eventFilter(QObject *watched, QEvent *event) override;
private:
QLabel *m_LabelDot1; // 第一个小圆点
QLabel *m_LabelDot2; // 第二个小圆点
QLabel *m_LabelDot3; // 第三个小圆点
QLineEdit *m_LineEditIp1; // 第一个IP输入框
QLineEdit *m_LineEditIp2; // 第二个IP输入框
QLineEdit *m_LineEditIp3; // 第三个IP输入框
QLineEdit *m_LineEditIp4; // 第四个IP输入框
QFrame *m_frame;
QVBoxLayout *m_verticalLayout;
QHBoxLayout *m_horizontalLayout;
QString m_ip;
QString m_bgColor; // 背景颜色
QString m_borderColor; // 边框颜色
float m_borderRadius; // 边框圆角角度
private slots:
void onTextChanged(const QString &_text);
public: signals:
};
#endif //QTDEMO_IPLINEEDIT_H