QComboBox 项目文本可以包含 2 种颜色吗?

Can QComboBox items text consist of 2 colors?

例如字符串 "Elon Musk":

提前感谢您提供的任何帮助

是的,可以。事实上,你可以使用 QItemDelegate 在那里做任何你想做的事。在委托中,您可以做任何您想做的疯狂事情,其中​​不仅包括着色,还包括按钮和其他控件。

您可以使用 Qt::ItemDataRole 来提供定制。对于这种特殊情况 -

#include <QApplication>
#include <QComboBox>
#include <QColor>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    QComboBox box;
    box.addItem("Elon");
    box.addItem("Musk");

    box.setItemData(0, QColor(Qt::red), Qt::ForegroundRole);
    box.setItemData(1, QColor(Qt::green), Qt::ForegroundRole);

    box.show();

    return a.exec();
}

截图供参考-

作为使用委托的替代方法,我将使用带有富文本(HTML 编码)的 QLabel 来为组合框项目文本着色。我还需要实现一个事件过滤器来处理单击(选择)"custom" 项。以下示例演示了如何操作:

class Filter : public QObject
{
public:
  Filter(QComboBox *combo)
    :
      m_combo(combo)
  {}
protected:
  bool eventFilter(QObject *watched, QEvent * event) override
  {
    auto lbl = qobject_cast<QLabel *>(watched);
    if (lbl && event->type() == QEvent::MouseButtonRelease)
    {
      // Set the current index
      auto model = m_combo->model();
      for (int r = 0; r < model->rowCount(); ++r)
      {
        if (m_combo->view()->indexWidget(model->index(r, 0)) == lbl)
        {
          m_combo->setCurrentIndex(r);
          break;
        }
      }
      m_combo->hidePopup();
    }
    return false;
  }

private:
  QComboBox *m_combo;
};

下面是如何将 "colored" 项添加到组合框中并处理它们:

QComboBox box;
box.setEditable(true);
Filter filter(&box);

// Add two items: regular and colored.
box.addItem("A regular item");
box.addItem("Elon Musk");

// Handle the colored item. Color strings using HTML tags.
QLabel lbl("<font color=\"red\">Elon </font><font color=\"green\">Musk</font>", &box);
lbl.setAutoFillBackground(true);
lbl.installEventFilter(&filter);
box.view()->setIndexWidget(box.model()->index(1, 0), &lbl);

box.show();