PySide:QComboBox中的格式化文本

时间:2014-12-08 05:57:25

标签: pyside qcombobox

我有这段代码:

import PySide.QtGui

app = PySide.QtGui.QApplication('')
wnd = PySide.QtGui.QWidget()
mly = PySide.QtGui.QVBoxLayout()
combo = PySide.QtGui.QComboBox()

table = [ ('Lorem','ipsum','dolor','sit','amet'),
          ('Aliquam','sodales','nunc','eget','lorem'),
          ('Vivamus','et','sapien','mattis','vulputate'),
          ('Integer','ac','dolor','commodo','cursus'),
          ('Sed','sed','erat','non','magna'),
          ('Duis','vestibulum','eu','tortor','euismod') ]

combo.clear()
for (one,two,three,four,five) in table:
    combo.addItem('%-12s | %-12s | %-12s | %-12s | %-12s' % (one,two,three,four,five))

mly.addWidget(combo)
mly.addStretch(1)
wnd.setLayout(mly)
wnd.show()
app.exec_()

我已获得this (1),我正在寻找类似(2)的内容:列出所有列。

组合框具有标准比例字体(来自QtDesigner的MS Shell Dlg 2)。我不想使用等宽字体。

我尝试使用combo.fontMetrics().boundingRect(text).width()计算每列的最大宽度(以像素为单位),并用空格填充每列:

borde = '  '
unspc = ' '
maxwdt = {0:0, 1:0, 2:0, 3:0, 4:0}
for lstlin in table:
    for (ndx,val) in enumerate(lstlin):
        unwdt = combo.fontMetrics().boundingRect(borde + val + borde).width()
        if (unwdt > maxwdt[ndx]):
            maxwdt[ndx] = unwdt

combo.clear()
for lstlin in table:
    txtlin = ''
    for (ndx,val) in enumerate(lstlin):
        txtcmp = borde + val + borde
        while (combo.fontMetrics().boundingRect(txtcmp).width() < maxwdt[ndx]):
            txtcmp += unspc
        txtlin += txtcmp + '|'
    combo.addItem(txtlin)

我已获得(3)

还有其他方法可以使用比例字体格式化文本以在QComboBox中使用吗?感谢。

1 个答案:

答案 0 :(得分:1)

您的算法很好,但它只能与您使用的比例字体中的标准空间宽度一样准确。

要获得更准确的结果,请使用尽可能最薄的whitespace character。对于具有良好unicode支持的字体,这将是HAIR SPACE U+200A

在Linux上(使用DejaVu Sans字体)我可以通过更改示例脚本中的以下两行来完全重现(3)

# hair-space
unspc = '\u200a'
borde = unspc * 10