#include "ValueControl.h" ValueControl::ValueControl( QWidget* parent, const QPoint& pos, const QSize& size, CONTROL_PROPERTY* pProperty ) : QLineEdit(parent) , VControlObject(pProperty) { // 设置默认属性(初始化值或者外部传入值) if (m_Property.m_strText.isEmpty()) { m_Property.m_strText = "Value"; } QLineEdit::setText(m_Property.m_strText); QLineEdit::setToolTip(m_Property.m_strTip); this->setTextColor(m_Property.m_clrText); this->setBgColor(m_Property.m_clrBg); QLineEdit::setFont(m_Property.m_Font); QLineEdit::setEnabled(m_Property.m_bEnable); // 不可编辑 QLineEdit::setReadOnly(true); // 设置尺寸 if (size == DEFAULT_CONTROL_SIZE) { this->resize(DEFAULT_VALUE_SIZE); } else { this->resize(size); } // 设置中心点坐标 QPoint tempPos; tempPos.setX(pos.x() - width() / 2); tempPos.setY(pos.y() - height() / 2); // 设置位置 this->move(tempPos); m_pWidget = this; m_Type = VALUE_TYPE::Control_Value; //// 2022-9-11 Value控件需要绑定默认的DataLink //this->bindDefaultDataLink(); } ValueControl::~ValueControl() { } // 属性的实现函数 void ValueControl::setText(const QString& title) { // qDebug() << m_Property.m_strText; if (this->m_Property.m_strText != title) { this->m_Property.m_strText = title; QLineEdit::setText(title); } } void ValueControl::setTip(const QString& tip) { if (this->m_Property.m_strTip != tip) { this->m_Property.m_strTip = tip; QLineEdit::setToolTip(tip); } } void ValueControl::setTextColor(const QColor& color) { QString qss = VControlObject::textColorQss(color); this->setStyleSheet(qss); } void ValueControl::setBgColor(const QColor& color) { QString qss = VControlObject::bgColorQss(color); this->setStyleSheet(qss); } void ValueControl::setFont(const QFont& font) { if (this->m_Property.m_Font != font) { this->m_Property.m_Font = font; QLineEdit::setFont(font); } } void ValueControl::setEnable(const bool enable) { if (this->m_Property.m_bEnable != enable) { this->m_Property.m_bEnable = enable; QLineEdit::setEnabled(enable); } }