summaryrefslogtreecommitdiffstats
path: root/examples/widgets/itemviews/flattreeview/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/itemviews/flattreeview/main.cpp')
-rw-r--r--examples/widgets/itemviews/flattreeview/main.cpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/examples/widgets/itemviews/flattreeview/main.cpp b/examples/widgets/itemviews/flattreeview/main.cpp
deleted file mode 100644
index f51e24da86..0000000000
--- a/examples/widgets/itemviews/flattreeview/main.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright (C) 2017 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author David Faure <david.faure@kdab.com>
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-/*
- main.cpp
-
- A simple example that shows a multi-column list using QTreeView.
- The data is not a tree, so the first column was made movable.
-*/
-
-#include <QApplication>
-#include <QHeaderView>
-#include <QStandardItemModel>
-#include <QTreeView>
-
-int main(int argc, char *argv[])
-{
- QApplication app(argc, argv);
-
- QStandardItemModel model(4, 2);
- QTreeView treeView;
- treeView.setModel(&model);
- treeView.setRootIsDecorated(false);
- treeView.header()->setFirstSectionMovable(true);
- treeView.header()->setStretchLastSection(true);
-
- for (int row = 0; row < 4; ++row) {
- for (int column = 0; column < 2; ++column) {
- QModelIndex index = model.index(row, column, QModelIndex());
- model.setData(index, QVariant((row + 1) * (column + 1)));
- }
- }
-
- treeView.setWindowTitle(QObject::tr("Flat Tree View"));
- treeView.show();
- return app.exec();
-}