aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp
blob: 1f20c3be354e0852cc322d70954326919b618ce7 (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
//! [0]
beginInsertRows(parent, 2, 4)
//! [0]


//! [1]
beginInsertRows(parent, 4, 5)
//! [1]


//! [2]
beginRemoveRows(parent, 2, 3)
//! [2]


//! [3]
beginInsertColumns(parent, 4, 6)
//! [3]


//! [4]
beginInsertColumns(parent, 6, 8)
//! [4]


//! [5]
beginRemoveColumns(parent, 4, 6)
//! [5]


//! [6]
beginMoveRows(sourceParent, 2, 4, destinationParent, 2)
//! [6]


//! [7]
beginMoveRows(sourceParent, 2, 4, destinationParent, 6)
//! [7]


//! [8]
beginMoveRows(parent, 2, 2, parent, 0)
//! [8]


//! [9]
beginMoveRows(parent, 2, 2, parent, 4)
//! [9]