Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7893887
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T07:14:57+00:00 2026-06-03T07:14:57+00:00

treecombobox.h #ifndef TREECOMBOBOX_H #define TREECOMBOBOX_H #include <QComboBox> #include QAbstractItemView #include QTreeView class TreeComboBox :

  • 0

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

I want to show the second item, but qt gives me the first item.
this->view()->currentIndex() gives me the correct model index, but the widget doesn’t display correct content.

What I want is a combo box with tree view popup box. The popup box works fine. The only problem is it goes wrong when I try to choose an item automatic in program.

Can some one tell me how to do?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T07:14:59+00:00Added an answer on June 3, 2026 at 7:14 am

    A few time ago was meeting with the same question.

    Can offer next solution (based on native QComboBox code and some internet stuff):

    TreeComboBox::presetIndex(QModelIndex index)
    {
    
            setRootModelIndex(index.parent());
            setModelColumn(index.column());
            setCurrentIndex(index.row());
            setRootModelIndex(QModelIndex());
            view->setCurrentIndex(index);
    }
    

    Sorry about formatting, first time and still not know how to make code-highlights here.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

First, fair warning: I am a complete newbie with C# and WPF. I have
I am facing problem to set a perticulat value of a custom JComboBox. If
(This is a duplicate of a post I added to the Telerik forums )
I have a comboBox within a grid. Basically to get it I have to
I am currently attempting to create an Inno script installer which requests a list
I filled up a combobox with the values from an Enum. Now a combobox

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.