treecombobox.h
#ifndef TREECOMBOBOX_H
#define TREECOMBOBOX_H
#include <QComboBox>
#include "QAbstractItemView"
#include "QTreeView"
class TreeComboBox : public QComboBox
{
Q_OBJECT
public:
explicit TreeComboBox(QWidget *parent = 0);
~TreeComboBox();
protected:
QTreeView* internalView;
signals:
public slots:
};
#endif // TREECOMBOBOX_H
treecombobox.cpp
#include "treecombobox.h"
TreeComboBox::TreeComboBox(QWidget *parent) :
QComboBox(parent){
this->internalView = new QTreeView( parent );
this->setView( this->internalView );
QAbstractItemModel* model = this->internalView->model();
model->insertRows( 0, 2 );
model->setData( model->index(0,0), "First" );
model->setData( model->index(1,0), "Second" );
this->view()->setCurrentIndex( model->index(1,0) );
}
TreeComboBox::~TreeComboBox(){
if( this->internalView ){
delete this->internalView;
this->internalView = 0;
}
}
我想显示第二项,但qt给了我第一项。 this-&gt; view() - &gt; currentIndex()为我提供了正确的模型索引,但窗口小部件没有显示正确的内容。
我想要的是一个带有树形视图弹出框的组合框。弹出框工作正常。唯一的问题是当我尝试在程序中自动选择项目时出错。
有人可以告诉我该怎么办?
答案 0 :(得分:2)
前几天遇到了同样的问题。
可以提供下一个解决方案(基于原生的QComboBox代码和一些互联网资料):
TreeComboBox::presetIndex(QModelIndex index)
{
setRootModelIndex(index.parent());
setModelColumn(index.column());
setCurrentIndex(index.row());
setRootModelIndex(QModelIndex());
view->setCurrentIndex(index);
}
很抱歉格式化,第一次仍然不知道如何在此处制作代码高亮。