Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. QTreeWidget
Forum Updated to NodeBB v4.3 + New Features

QTreeWidget

Scheduled Pinned Locked Moved General and Desktop
2 Posts 2 Posters 1.7k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • sajis997S Offline
    sajis997S Offline
    sajis997
    wrote on last edited by
    #1

    Hello forum,

    I am pulling out the invisible root item from an qtreewidget with the following command:

    [code]
    QTreeWidgetItem *rootItem = treewidget->invisibleRootItem();
    [/code]

    Then i initilialize another tree widget item where we have the rootitem as the parent

    [code]
    QTreeWidgetItem *new_widget_item = new QTreeWidgetItem(rootItem);
    new_widget_item->setText(0,QString(tree_string.c_str()));
    [/code]

    Now i want to insert the new_widget_item into the qtreewidget object and i do not find any relevant function to it.

    Any hint?

    Regards
    Sajjad

    1 Reply Last reply
    0
    • G Offline
      G Offline
      goetz
      wrote on last edited by
      #2

      You create a toplevel item. Insert this with "QTreeWidget::addTopLevelItem() ":/doc/qt-4.8/qtreewidget.html#addTopLevelItem or "QTreeWidget::insertTopLevelItem() ":/doc/qt-4.8/qtreewidget.html#insertTopLevelItem.

      http://www.catb.org/~esr/faqs/smart-questions.html

      1 Reply Last reply
      0

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved