标签:inf 更新 指定 包括 超过 代码 调整 用户 注释
默认的qcombobox控件,如果元素item中的内容过长超过控件本身的宽度的话,会自动切掉变成省略号显示,有些应用场景不希望是省略号显示,希望有多长就显示多长,还有一种应用场景是需要设置下拉元素的高度为指定的高度,比如很多触摸屏上,如果程序中的下拉框太小,手指很不好点,很容易误操作,为了杜绝这种误操作,可以将下拉框高度变大,当然更好的办法还是类似于手机app一样弹出一个大大的滑动选择框会更好。
#ifndef COMBOBOX_H
#define COMBOBOX_H
/**
* 自定义宽高下拉框控件 作者:feiyangqingyun(QQ:517216493) 2017-4-11
* 1:可设置下拉框元素高度
* 2:可设置下拉框元素宽度
* 3:可设置是否自动调整下拉框元素宽度,根据元素宽高自动调整
*/
#include <QComboBox>
#ifdef quc
#if (QT_VERSION < QT_VERSION_CHECK(5,7,0))
#include <QtDesigner/QDesignerExportWidget>
#else
#include <QtUiPlugin/QDesignerExportWidget>
#endif
class QDESIGNER_WIDGET_EXPORT ComboBox : public QComboBox
#else
class ComboBox : public QComboBox
#endif
{
Q_OBJECT
Q_PROPERTY(int itemWidth READ getItemWidth WRITE setItemWidth)
Q_PROPERTY(int itemHeight READ getItemHeight WRITE setItemHeight)
Q_PROPERTY(bool autoWidth READ getAutoWidth WRITE setAutoWidth)
public:
explicit ComboBox(QWidget *parent = 0);
protected:
void showEvent(QShowEvent *);
private:
int itemWidth; //元素宽度
int itemHeight; //元素高度
bool autoWidth; //是否自动调整元素宽度
int maxItemWidth; //最大元素宽度
public:
int getItemWidth() const;
int getItemHeight() const;
bool getAutoWidth() const;
public Q_SLOTS:
void setItemWidth(int itemWidth);
void setItemHeight(int itemHeight);
void setAutoWidth(bool autoWidth);
};
#endif // COMBOBOX_H
#pragma execution_character_set("utf-8")
#include "combobox.h"
#include "qlistview.h"
#include "qdebug.h"
ComboBox::ComboBox(QWidget *parent) : QComboBox(parent)
{
itemWidth = 5;
itemHeight = 20;
autoWidth = true;
this->setView(new QListView());
}
void ComboBox::showEvent(QShowEvent *)
{
if (autoWidth) {
//自动计算所有元素,找到最长的元素
QFontMetrics fm = this->fontMetrics();
int count = this->count();
for (int i = 0; i < count; i++) {
int textWidth = fm.width(this->itemText(i));
itemWidth = textWidth > itemWidth ? textWidth : itemWidth;
}
//宽度增加像素,因为有边距
this->view()->setFixedWidth(itemWidth + 20);
}
}
int ComboBox::getItemWidth() const
{
return this->itemWidth;
}
int ComboBox::getItemHeight() const
{
return this->itemHeight;
}
bool ComboBox::getAutoWidth() const
{
return this->autoWidth;
}
void ComboBox::setItemWidth(int itemWidth)
{
if (this->itemWidth != itemWidth) {
this->itemWidth = itemWidth;
if (!autoWidth) {
this->view()->setFixedWidth(itemWidth);
}
}
}
void ComboBox::setItemHeight(int itemHeight)
{
if (this->itemHeight != itemHeight) {
this->itemHeight = itemHeight;
this->setStyleSheet(QString("QComboBox QAbstractItemView::item{min-height:%1px;}").arg(itemHeight));
}
}
void ComboBox::setAutoWidth(bool autoWidth)
{
if (this->autoWidth != autoWidth) {
this->autoWidth = autoWidth;
}
}
标签:inf 更新 指定 包括 超过 代码 调整 用户 注释
原文地址:https://www.cnblogs.com/feiyangqingyun/p/11548808.html