summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/widgets/doc/images/draganddroppuzzle-example.pngbin259104 -> 0 bytes
-rw-r--r--examples/widgets/doc/src/draganddroppuzzle.qdoc18
-rw-r--r--examples/widgets/doc/src/itemviewspuzzle.qdoc4
-rw-r--r--examples/widgets/draganddrop/CMakeLists.txt1
-rw-r--r--examples/widgets/draganddrop/draganddrop.pro3
-rw-r--r--tests/manual/examples/widgets/draganddrop/puzzle/CMakeLists.txt (renamed from examples/widgets/draganddrop/puzzle/CMakeLists.txt)0
-rw-r--r--tests/manual/examples/widgets/draganddrop/puzzle/example.jpg (renamed from examples/widgets/draganddrop/puzzle/example.jpg)bin42654 -> 42654 bytes
-rw-r--r--tests/manual/examples/widgets/draganddrop/puzzle/main.cpp (renamed from examples/widgets/draganddrop/puzzle/main.cpp)0
-rw-r--r--tests/manual/examples/widgets/draganddrop/puzzle/mainwindow.cpp (renamed from examples/widgets/draganddrop/puzzle/mainwindow.cpp)0
-rw-r--r--tests/manual/examples/widgets/draganddrop/puzzle/mainwindow.h (renamed from examples/widgets/draganddrop/puzzle/mainwindow.h)0
-rw-r--r--tests/manual/examples/widgets/draganddrop/puzzle/pieceslist.cpp (renamed from examples/widgets/draganddrop/puzzle/pieceslist.cpp)0
-rw-r--r--tests/manual/examples/widgets/draganddrop/puzzle/pieceslist.h (renamed from examples/widgets/draganddrop/puzzle/pieceslist.h)0
-rw-r--r--tests/manual/examples/widgets/draganddrop/puzzle/puzzle.pro (renamed from examples/widgets/draganddrop/puzzle/puzzle.pro)0
-rw-r--r--tests/manual/examples/widgets/draganddrop/puzzle/puzzle.qrc (renamed from examples/widgets/draganddrop/puzzle/puzzle.qrc)0
-rw-r--r--tests/manual/examples/widgets/draganddrop/puzzle/puzzlewidget.cpp (renamed from examples/widgets/draganddrop/puzzle/puzzlewidget.cpp)0
-rw-r--r--tests/manual/examples/widgets/draganddrop/puzzle/puzzlewidget.h (renamed from examples/widgets/draganddrop/puzzle/puzzlewidget.h)0
16 files changed, 1 insertions, 25 deletions
diff --git a/examples/widgets/doc/images/draganddroppuzzle-example.png b/examples/widgets/doc/images/draganddroppuzzle-example.png
deleted file mode 100644
index ca6844581e..0000000000
--- a/examples/widgets/doc/images/draganddroppuzzle-example.png
+++ /dev/null
Binary files differ
diff --git a/examples/widgets/doc/src/draganddroppuzzle.qdoc b/examples/widgets/doc/src/draganddroppuzzle.qdoc
deleted file mode 100644
index c2504b245b..0000000000
--- a/examples/widgets/doc/src/draganddroppuzzle.qdoc
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
-
-/*!
- \example draganddrop/puzzle
- \title Drag and Drop Puzzle Example
-
- \brief The Drag and Drop Puzzle example demonstrates a way of using the drag and drop system with
- item view widgets.
-
- \image draganddroppuzzle-example.png
-
- This example is an implementation of a simple jigsaw puzzle game using Qt's
- drag and drop API.
- The \l{Item Views Puzzle Example}{Item View Puzzle} example shows
- many of the same features, but takes an alternative approach that uses Qt's
- model/view framework to manage drag and drop operations.
-*/
diff --git a/examples/widgets/doc/src/itemviewspuzzle.qdoc b/examples/widgets/doc/src/itemviewspuzzle.qdoc
index c1e0c361d6..9e77caf87e 100644
--- a/examples/widgets/doc/src/itemviewspuzzle.qdoc
+++ b/examples/widgets/doc/src/itemviewspuzzle.qdoc
@@ -12,8 +12,4 @@
This example is an implementation of a simple jigsaw puzzle game using the
built-in support for drag and drop provided by Qt's model/view framework.
- The \l{Drag and Drop Puzzle Example}{Drag and Drop Puzzle} example shows
- many of the same features, but takes an alternative approach that uses Qt's
- drag and drop API at the application level to handle drag and drop
- operations.
*/
diff --git a/examples/widgets/draganddrop/CMakeLists.txt b/examples/widgets/draganddrop/CMakeLists.txt
index c75600f660..88d571d31e 100644
--- a/examples/widgets/draganddrop/CMakeLists.txt
+++ b/examples/widgets/draganddrop/CMakeLists.txt
@@ -5,4 +5,3 @@ qt_internal_add_example(draggableicons)
qt_internal_add_example(draggabletext)
qt_internal_add_example(dropsite)
qt_internal_add_example(fridgemagnets)
-qt_internal_add_example(puzzle)
diff --git a/examples/widgets/draganddrop/draganddrop.pro b/examples/widgets/draganddrop/draganddrop.pro
index 1ecafd33a1..e62a0a59d0 100644
--- a/examples/widgets/draganddrop/draganddrop.pro
+++ b/examples/widgets/draganddrop/draganddrop.pro
@@ -2,5 +2,4 @@ TEMPLATE = subdirs
SUBDIRS = draggableicons \
draggabletext \
dropsite \
- fridgemagnets \
- puzzle
+ fridgemagnets
diff --git a/examples/widgets/draganddrop/puzzle/CMakeLists.txt b/tests/manual/examples/widgets/draganddrop/puzzle/CMakeLists.txt
index 13c6717551..13c6717551 100644
--- a/examples/widgets/draganddrop/puzzle/CMakeLists.txt
+++ b/tests/manual/examples/widgets/draganddrop/puzzle/CMakeLists.txt
diff --git a/examples/widgets/draganddrop/puzzle/example.jpg b/tests/manual/examples/widgets/draganddrop/puzzle/example.jpg
index 023203c57a..023203c57a 100644
--- a/examples/widgets/draganddrop/puzzle/example.jpg
+++ b/tests/manual/examples/widgets/draganddrop/puzzle/example.jpg
Binary files differ
diff --git a/examples/widgets/draganddrop/puzzle/main.cpp b/tests/manual/examples/widgets/draganddrop/puzzle/main.cpp
index 32e219256a..32e219256a 100644
--- a/examples/widgets/draganddrop/puzzle/main.cpp
+++ b/tests/manual/examples/widgets/draganddrop/puzzle/main.cpp
diff --git a/examples/widgets/draganddrop/puzzle/mainwindow.cpp b/tests/manual/examples/widgets/draganddrop/puzzle/mainwindow.cpp
index b34bc24201..b34bc24201 100644
--- a/examples/widgets/draganddrop/puzzle/mainwindow.cpp
+++ b/tests/manual/examples/widgets/draganddrop/puzzle/mainwindow.cpp
diff --git a/examples/widgets/draganddrop/puzzle/mainwindow.h b/tests/manual/examples/widgets/draganddrop/puzzle/mainwindow.h
index 83a441c722..83a441c722 100644
--- a/examples/widgets/draganddrop/puzzle/mainwindow.h
+++ b/tests/manual/examples/widgets/draganddrop/puzzle/mainwindow.h
diff --git a/examples/widgets/draganddrop/puzzle/pieceslist.cpp b/tests/manual/examples/widgets/draganddrop/puzzle/pieceslist.cpp
index 0c7e771e42..0c7e771e42 100644
--- a/examples/widgets/draganddrop/puzzle/pieceslist.cpp
+++ b/tests/manual/examples/widgets/draganddrop/puzzle/pieceslist.cpp
diff --git a/examples/widgets/draganddrop/puzzle/pieceslist.h b/tests/manual/examples/widgets/draganddrop/puzzle/pieceslist.h
index 4c617e7006..4c617e7006 100644
--- a/examples/widgets/draganddrop/puzzle/pieceslist.h
+++ b/tests/manual/examples/widgets/draganddrop/puzzle/pieceslist.h
diff --git a/examples/widgets/draganddrop/puzzle/puzzle.pro b/tests/manual/examples/widgets/draganddrop/puzzle/puzzle.pro
index c462ba1bb8..c462ba1bb8 100644
--- a/examples/widgets/draganddrop/puzzle/puzzle.pro
+++ b/tests/manual/examples/widgets/draganddrop/puzzle/puzzle.pro
diff --git a/examples/widgets/draganddrop/puzzle/puzzle.qrc b/tests/manual/examples/widgets/draganddrop/puzzle/puzzle.qrc
index 4076cec026..4076cec026 100644
--- a/examples/widgets/draganddrop/puzzle/puzzle.qrc
+++ b/tests/manual/examples/widgets/draganddrop/puzzle/puzzle.qrc
diff --git a/examples/widgets/draganddrop/puzzle/puzzlewidget.cpp b/tests/manual/examples/widgets/draganddrop/puzzle/puzzlewidget.cpp
index 7c3f12f7d8..7c3f12f7d8 100644
--- a/examples/widgets/draganddrop/puzzle/puzzlewidget.cpp
+++ b/tests/manual/examples/widgets/draganddrop/puzzle/puzzlewidget.cpp
diff --git a/examples/widgets/draganddrop/puzzle/puzzlewidget.h b/tests/manual/examples/widgets/draganddrop/puzzle/puzzlewidget.h
index d1c00872ec..d1c00872ec 100644
--- a/examples/widgets/draganddrop/puzzle/puzzlewidget.h
+++ b/tests/manual/examples/widgets/draganddrop/puzzle/puzzlewidget.h