彻底改版2.0
This commit is contained in:
76
control/ipaddress/ipaddress.h
Normal file
76
control/ipaddress/ipaddress.h
Normal file
@@ -0,0 +1,76 @@
|
||||
#ifndef IPADDRESS_H
|
||||
#define IPADDRESS_H
|
||||
|
||||
/**
|
||||
* IP地址输入框控件 作者:feiyangqingyun(QQ:517216493) 2017-08-11
|
||||
* 1. 可设置IP地址,自动填入框。
|
||||
* 2. 可清空IP地址。
|
||||
* 3. 支持按下小圆点自动切换。
|
||||
* 4. 支持退格键自动切换。
|
||||
* 5. 支持IP地址过滤。
|
||||
* 6. 可设置背景色、边框颜色、边框圆角角度。
|
||||
*/
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
class QLabel;
|
||||
class QLineEdit;
|
||||
|
||||
#ifdef quc
|
||||
class Q_DECL_EXPORT IPAddress : public QWidget
|
||||
#else
|
||||
class IPAddress : public QWidget
|
||||
#endif
|
||||
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
Q_PROPERTY(QString ip READ getIP WRITE setIP)
|
||||
|
||||
public:
|
||||
explicit IPAddress(QWidget *parent = 0);
|
||||
|
||||
protected:
|
||||
bool eventFilter(QObject *watched, QEvent *event);
|
||||
|
||||
private:
|
||||
QLabel *labDot1; //第一个小圆点
|
||||
QLabel *labDot2; //第二个小圆点
|
||||
QLabel *labDot3; //第三个小圆点
|
||||
|
||||
QLineEdit *txtIP1; //IP地址网段输入框1
|
||||
QLineEdit *txtIP2; //IP地址网段输入框2
|
||||
QLineEdit *txtIP3; //IP地址网段输入框3
|
||||
QLineEdit *txtIP4; //IP地址网段输入框4
|
||||
|
||||
QString ip; //IP地址
|
||||
QString bgColor; //背景颜色
|
||||
QString borderColor;//边框颜色
|
||||
int borderRadius; //边框圆角角度
|
||||
|
||||
private slots:
|
||||
void textChanged(const QString &text);
|
||||
|
||||
public:
|
||||
//获取IP地址
|
||||
QString getIP() const;
|
||||
|
||||
QSize sizeHint() const;
|
||||
QSize minimumSizeHint() const;
|
||||
|
||||
public Q_SLOTS:
|
||||
//设置IP地址
|
||||
void setIP(const QString &ip);
|
||||
//清空
|
||||
void clear();
|
||||
|
||||
//设置背景颜色
|
||||
void setBgColor(const QString &bgColor);
|
||||
//设置边框颜色
|
||||
void setBorderColor(const QString &borderColor);
|
||||
//设置边框圆角角度
|
||||
void setBorderRadius(int borderRadius);
|
||||
|
||||
};
|
||||
|
||||
#endif // IPADDRESS_H
|
||||
Reference in New Issue
Block a user