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. How to create attribute for QStrandardItem?
Forum Updated to NodeBB v4.3 + New Features

How to create attribute for QStrandardItem?

Scheduled Pinned Locked Moved General and Desktop
2 Posts 2 Posters 1.8k 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.
  • T Offline
    T Offline
    tyapkov
    wrote on last edited by
    #1

    Good evening! I am using QStandardItemModel for the QTreeView and want to set hidden attributes for the QStandardItems to distinguish them. Is there a good solution for that? thanks!

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

      You can define your own "Qt::ItemDataRoles":/doc/qt-4.8/qt.html#ItemDataRole-enum and use data() and setData() methods of the items.

      For example:

      @
      enum MyItemDataRoles { MyIdRole = Qt::UserRole + 1, MyStringDataRole };

      QStandardItem *item = ...;

      item->setData(23, MyIdRole);
      int id = item->data(MyIdRole).toInt();

      item->setData("blubb", MyStringDataRole);
      qDebug() << item->data(MyStringDataRole).toString();
      @

      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