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

时间:2018-11-23 13:49:57

标签: c++ qt qcombobox

例如字符串“ Elon Musk”:

  • “ Elon”文字颜色为红色;
  • “麝香”文本颜色为绿色;

在此先感谢您提供的帮助

3 个答案:

答案 0 :(得分:1)

是的,可以。实际上,您可以使用QItemDelegate在其中做任何您想做的事情。在委托人内部,您可以执行所有想要的疯狂工作,不仅包括着色,还包括按钮和其他控件。

答案 1 :(得分:1)

您可以使用Qt :: ItemDataRole进行自定义。对于这种特殊情况-

...
import Data.String (fromString)
...
[unpack $ format (fromString "({}, {})\n") (c::(Double, Double))| c <- cs]

屏幕截图以供参考-

enter image description here enter image description here

答案 2 :(得分:1)

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

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;
};

以下是将“彩色”项目添加到组合框中并进行处理的方法:

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();