将 QLabel Alignment 设置为右侧,并在右侧剪切文本
Set QLabel Alignment to right and also clip text on the right
我正在用 C++ 编写 Qt 4.8(我们不能为这个项目使用更新的 Qt 版本)应用程序,我有各种 QLabel,它们必须右对齐,并且其文本在代码中动态设置。但是,如果文本超过 QLabel 的大小,则会在左侧进行裁剪。然而,所需的行为是剪切右侧的文本。
例如,包含客户名称 "Abraham Lincoln" 的 QLabel 会将文本剪辑为 "aham Lincoln" 而不是 "Abraham Li"。是否有内置方法可以执行此操作,或者我是否必须根据文本长度动态移动和调整 QLabel 的大小?
不幸的是,我不认为仅用 QLabel
就可以实现您想要的效果。但是您可以尝试 管理 一个 QLabel
以使其 aligns/trims 符合您的要求。以下似乎有效...
#include <QFontMetrics>
#include <QLabel>
class label: public QWidget {
using super = QWidget;
public:
explicit label (const QString &text, QWidget *parent = nullptr)
: super(parent)
, m_label(text, this)
{
}
virtual void setText (const QString &text)
{
m_label.setText(text);
fixup();
}
virtual QString text () const
{
return(m_label.text());
}
protected:
virtual void resizeEvent (QResizeEvent *event) override
{
super::resizeEvent(event);
m_label.resize(size());
fixup();
}
private:
void fixup ()
{
/*
* If the text associated with m_label has a width greater than the
* width of this widget then align the text to the left so that it is
* trimmed on the right. Otherwise it should be right aligned.
*/
if (QFontMetrics(font()).boundingRect(m_label.text()).width() > width())
m_label.setAlignment(Qt::AlignLeft | Qt::AlignVCenter);
else
m_label.setAlignment(Qt::AlignRight | Qt::AlignVCenter);
}
QLabel m_label;
};
当然,您可能需要添加额外的成员函数,具体取决于您当前的使用方式 QLabel
。
我正在用 C++ 编写 Qt 4.8(我们不能为这个项目使用更新的 Qt 版本)应用程序,我有各种 QLabel,它们必须右对齐,并且其文本在代码中动态设置。但是,如果文本超过 QLabel 的大小,则会在左侧进行裁剪。然而,所需的行为是剪切右侧的文本。
例如,包含客户名称 "Abraham Lincoln" 的 QLabel 会将文本剪辑为 "aham Lincoln" 而不是 "Abraham Li"。是否有内置方法可以执行此操作,或者我是否必须根据文本长度动态移动和调整 QLabel 的大小?
不幸的是,我不认为仅用 QLabel
就可以实现您想要的效果。但是您可以尝试 管理 一个 QLabel
以使其 aligns/trims 符合您的要求。以下似乎有效...
#include <QFontMetrics>
#include <QLabel>
class label: public QWidget {
using super = QWidget;
public:
explicit label (const QString &text, QWidget *parent = nullptr)
: super(parent)
, m_label(text, this)
{
}
virtual void setText (const QString &text)
{
m_label.setText(text);
fixup();
}
virtual QString text () const
{
return(m_label.text());
}
protected:
virtual void resizeEvent (QResizeEvent *event) override
{
super::resizeEvent(event);
m_label.resize(size());
fixup();
}
private:
void fixup ()
{
/*
* If the text associated with m_label has a width greater than the
* width of this widget then align the text to the left so that it is
* trimmed on the right. Otherwise it should be right aligned.
*/
if (QFontMetrics(font()).boundingRect(m_label.text()).width() > width())
m_label.setAlignment(Qt::AlignLeft | Qt::AlignVCenter);
else
m_label.setAlignment(Qt::AlignRight | Qt::AlignVCenter);
}
QLabel m_label;
};
当然,您可能需要添加额外的成员函数,具体取决于您当前的使用方式 QLabel
。