summaryrefslogtreecommitdiffstats
path: root/src/gui/doc/snippets/code/src_gui_itemviews_qstandarditemmodel.cpp
blob: a608312424c0155b3fdd90f179e7e590f5f6bedc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include <QStandardItemModel>
#include <QTreeView>
#include <QWidget>

namespace src_gui_itemviews_qstandarditemmodel {
struct MyWidget : public QWidget
{
    void wrapper2();
    void clicked(const QModelIndex &index);
    QModelIndex index() { return QModelIndex(); }
    QStandardItemModel *myStandardItemModel;
};

void wrapper0() {

//! [0]
QStandardItemModel model(4, 4);
for (int row = 0; row < model.rowCount(); ++row) {
    for (int column = 0; column < model.columnCount(); ++column) {
        QStandardItem *item = new QStandardItem(QString("row %0, column %1").arg(row).arg(column));
        model.setItem(row, column, item);
    }
}
//! [0]

} // wrapper0


void wrapper1() {

//! [1]
QStandardItemModel model;
QStandardItem *parentItem = model.invisibleRootItem();
for (int i = 0; i < 4; ++i) {
    QStandardItem *item = new QStandardItem(QString("item %0").arg(i));
    parentItem->appendRow(item);
    parentItem = item;
}
//! [1]

} // wrapper1


void MyWidget::wrapper2() {
//! [2]
QTreeView *treeView = new QTreeView(this);
treeView->setModel(myStandardItemModel);
connect(treeView, &QTreeView::clicked,
        this, &MyWidget::clicked);
//! [2]

} // wrapper2


//! [3]
void MyWidget::clicked(const QModelIndex &index)
{
    QStandardItem *item = myStandardItemModel->itemFromIndex(index);
    // Do stuff with the item ...
}
//! [3]


void wrapper3() {
QTreeView *treeView = nullptr;
MyWidget *item = nullptr;
//! [4]
treeView->scrollTo(item->index());
//! [4]

} // wrapper3
} // src_gui_itemviews_qstandarditemmodel