#include "VListBox.h" VListBox::VListBox( QWidget* parent, const QPoint& pos, const QSize& size, CONTROL_PROPERTY* pProperty ) : QListWidget(parent) , VControlObject(pProperty) { // 设置默认属性(初始化值或者外部传入值) // QListBox::setText(m_Property.m_strText); QListWidget::setToolTip(m_Property.m_strTip); this->setTextColor(m_Property.m_clrText); this->setBgColor(m_Property.m_clrBg); QListWidget::setFont(m_Property.m_Font); QListWidget::setEnabled(m_Property.m_bEnable); // 设置尺寸 if (size == DEFAULT_CONTROL_SIZE) { this->resize(DEFAULT_LIST_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_Listbox; } VListBox::~VListBox() { } // 属性的实现函数 //// 暂未实现 //void VListBox::setText(const QString& title) //{ // Q_UNUSED(title); // // //} void VListBox::setTip(const QString& tip) { if (this->m_Property.m_strTip != tip) { this->m_Property.m_strTip = tip; QListWidget::setToolTip(tip); } } void VListBox::setTextColor(const QColor& color) { QString qss = VControlObject::textColorQss(color); this->setStyleSheet(qss); } void VListBox::setBgColor(const QColor& color) { QString qss = VControlObject::bgColorQss(color); this->setStyleSheet(qss); } void VListBox::setFont(const QFont& font) { if (this->m_Property.m_Font != font) { this->m_Property.m_Font = font; QListWidget::setFont(font); } } void VListBox::setEnable(const bool enable) { if (this->m_Property.m_bEnable != enable) { this->m_Property.m_bEnable = enable; QListWidget::setEnabled(enable); } }