• qt 自定义控件 :取值范围


    自定义 取值范围的控件
    如下图所示
    在这里插入图片描述
    功能 : 输入取值范围 ( m i n , m a x ) (min,max) (min,max),获取取值范围
    WithinRangeEdit.h 文件

    #pragma once
    #include<QWidget>
    #include<QLabel>
    #include<QLineEdit>
    #include<QHBoxLayout>
    class WithinRangeEdit : public QWidget
    {
    	Q_OBJECT
    public:
    	 WithinRangeEdit(QWidget *parent = nullptr);
    	~WithinRangeEdit();
    	//获取用户输入的取值范围 ,如果canBeDefaulted=true 则允许缺省
    	bool getValue(double &left, double &right, bool canBeDefaulted=true);
    	//清空所有输入
    	void clear();
    
    private:
    	QLabel *m_labelLeft=nullptr ,*m_labelRight = nullptr, *m_labelCernter = nullptr;
    	QLineEdit *m_lineEidtLeft = nullptr,*m_lineEidtRight = nullptr;
    	QHBoxLayout *m_layout = nullptr;
    	//初始化内部控件
    	void init();
    };
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23

    具体实现

     #include "WithinRangeEdit.h"
    #include<QRegExpValidator>
    WithinRangeEdit::WithinRangeEdit(QWidget *parent  ): QWidget(parent)
    {
    	this->init();
    }
    WithinRangeEdit::~WithinRangeEdit()
    {
    
    }
    
    void WithinRangeEdit::init()
    {
    	QFont font("Microsoft YaHei", 14);
    	 m_labelLeft = new QLabel(" (");
    	 m_labelLeft->setFont(font);
    	 m_labelRight = new QLabel(") "); 
    	 m_labelRight->setFont(font);
    	 m_labelCernter = new QLabel(" - ");
    	 m_labelCernter->setFont(font);
    	 m_lineEidtLeft = new QLineEdit();
    	 m_lineEidtLeft->setValidator(new QRegExpValidator(QRegExp("^-?(([0-9]{0,16}(\\.[0-9]{1,8})$)|([0-9]+$))")));//正负整数和浮点数(小数点后限制最多8位)
    	 m_lineEidtRight = new QLineEdit();
    	 m_lineEidtRight->setValidator(new QRegExpValidator(QRegExp("^-?(([0-9]{0,16}(\\.[0-9]{1,8})$)|([0-9]+$))")));//正负整数和浮点数(小数点后限制最多8位).
    	 m_layout = new QHBoxLayout();
    	 m_layout->addWidget(m_labelLeft,1, Qt::AlignHCenter);
    	 m_layout->addWidget(m_lineEidtLeft, 1, Qt::AlignHCenter);
    	 m_layout->addWidget(m_labelCernter, 1, Qt::AlignHCenter);
    	 m_layout->addWidget(m_lineEidtRight, 1, Qt::AlignHCenter);
    	 m_layout->addWidget(m_labelRight, 1, Qt::AlignHCenter);
    	 m_layout->setContentsMargins(0, 0, 0, 0);
    	 m_layout->setStretch(0,0);
    	 m_layout->setStretch(1, 1);
    	 m_layout->setStretch(2, 0);
    	 m_layout->setStretch(3, 1);
    	 m_layout->setStretch(4, 0);
    	 this->setLayout(m_layout);
    }
    
    bool WithinRangeEdit::getValue(double &left, double &right, bool canBeDefaulted)
    {
    	if (m_lineEidtLeft && m_lineEidtRight)
    	{
    		QString strLeft = m_lineEidtLeft->text();
    		bool LeftOk;
    		left = strLeft.toDouble(&LeftOk);
    
    		QString strRight = m_lineEidtRight->text();
    		bool RightOk;
    		right = strRight.toDouble(&RightOk);
    		if (strLeft.isEmpty() && strRight.isEmpty())
    		{
    			return false;
    		}
    		if (strLeft.isEmpty())
    		{
    			if (canBeDefaulted) //允许缺省:如果最小值为空,则最小值设为无穷小
    			{
    				left = DBL_MIN;
    			}
    			else
    			{
    				return false;
    			}
    		}
    		else
    		{
    			if (!LeftOk)
    			{
    				return false;
    			}
    		}
    		if (strRight.isEmpty())
    		{
    			if (canBeDefaulted) //允许缺省:如果最大值为空,则最小值设为无穷大
    			{
    				right = DBL_MAX;
    			}
    			else
    			{
    				return false;
    			}
    		}
    		else
    		{
    			if (!RightOk)
    			{
    				return false;
    			}
    		}
    		if (left > right)
    		{
    			return false;
    		}
    	}
    	else
    	{
    		return false;
    	}
    	return true;
    }
    void WithinRangeEdit::setValue(double left , double  right  )
    {
    	if (left > DBL_MIN)
    	{
    		m_lineEidtLeft->setText(QString::number(left, 10, 5));
    	}
    	if (right < DBL_MAX)
    	{
    		m_lineEidtRight->setText(QString::number(right, 10, 5));
    	}
    }
    void WithinRangeEdit::clear()
    {
    	if (m_lineEidtLeft)
    	{
    		m_lineEidtLeft->clear();
    	}
    	if (m_lineEidtRight)
    	{
    		m_lineEidtRight->clear();
    	}
    }
    
    • 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
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123

    细节:控制数字的输入:

     m_lineEidtLeft->setValidator(new QRegExpValidator(QRegExp("^-?(([0-9]{0,16}(\\.[0-9]{1,8})$)|([0-9]+$))")));
    
    • 1

    采用正则表达式限制lineEidt的输入:可以输入正负 整数或者浮点数

  • 相关阅读:
    二叉树的遍历-树-数据结构和算法(Java)
    【vue3】watch监听器
    【前端】HTTP相关知识总结
    【python】python内置函数——map()根据提供的函数对指定序列做映射
    Java项目:JSP高校新生报到迎新管理系统
    常见的音频知识
    数据结构学习笔记——树的存储结构以及树、森林与二叉树之间的转换
    2022年陕西省工程师职称申报,基本的职称论文要求您得知道啊
    网络公开课1
    HTML CSS 网页设计作业「体育小站」(梅西足球 6页 )
  • 原文地址:https://blog.csdn.net/fuyouzhiyi/article/details/125503736