diff --git a/doc/src/images/appicon_packagecontents.png b/doc/src/images/appicon_packagecontents.png
deleted file mode 100644
index 49cb1e42294..00000000000
Binary files a/doc/src/images/appicon_packagecontents.png and /dev/null differ
diff --git a/doc/src/images/appicon_screenshot.png b/doc/src/images/appicon_screenshot.png
deleted file mode 100644
index c29dd11d46d..00000000000
Binary files a/doc/src/images/appicon_screenshot.png and /dev/null differ
diff --git a/examples/widgets/doc/images/orientation-landscape-ui.png b/examples/widgets/doc/images/orientation-landscape-ui.png
deleted file mode 100644
index c591ff14d28..00000000000
Binary files a/examples/widgets/doc/images/orientation-landscape-ui.png and /dev/null differ
diff --git a/examples/widgets/doc/images/orientation-landscape.png b/examples/widgets/doc/images/orientation-landscape.png
deleted file mode 100644
index e606804d211..00000000000
Binary files a/examples/widgets/doc/images/orientation-landscape.png and /dev/null differ
diff --git a/examples/widgets/doc/images/orientation-portrait-ui.png b/examples/widgets/doc/images/orientation-portrait-ui.png
deleted file mode 100644
index 304835b93e1..00000000000
Binary files a/examples/widgets/doc/images/orientation-portrait-ui.png and /dev/null differ
diff --git a/examples/widgets/doc/images/orientation-portrait.png b/examples/widgets/doc/images/orientation-portrait.png
deleted file mode 100644
index 3d778e8d90c..00000000000
Binary files a/examples/widgets/doc/images/orientation-portrait.png and /dev/null differ
diff --git a/examples/widgets/doc/orientation.qdoc b/examples/widgets/doc/orientation.qdoc
deleted file mode 100644
index df84595885d..00000000000
--- a/examples/widgets/doc/orientation.qdoc
+++ /dev/null
@@ -1,142 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:FDL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Free Documentation License Usage
-** Alternatively, this file may be used under the terms of the GNU Free
-** Documentation License version 1.3 as published by the Free Software
-** Foundation and appearing in the file included in the packaging of
-** this file. Please review the following information to ensure
-** the GNU Free Documentation License version 1.3 requirements
-** will be met: http://www.gnu.org/copyleft/fdl.html.
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-/*! \example widgets/orientation
- \title Orientation Example
-
- \brief The example shows a simple way to use different UIs depending on the screen
- orientation of a mobile device.
-
- \image orientation-landscape.png The UI in landscape mode
- \image orientation-portrait.png The UI in portrait mode
-
- The screen on many mobile devices can be viewed in both portrait and
- landscape orientation. The orientation can be swiched with the help of a
- hardware or software trigger. Due to the often small physical screen size,
- user interfaces has to be very simple and compact to stay usable, and
- applications usually occupy the whole screen. Designing a user interface
- that works equally well in both landscape and portrait mode is not always
- possible, however, so making a different layout for each case usually pays
- off.
-
- The example application makes use of two different UI widgets created with
- the Qt Designer, one for portrait and one for landscape orientation. The
- application has a widget that contains an image and the user is able to
- select one of three images for it to show. In addition to the two UIs, the
- application consists of a \c MainWindow class.
-
- \section1 Landscape UI
-
- If the screen is in landscape mode, the user probably holds the device with
- both hands and is ready to give full attention to the application. The
- landscape UI looks like this:
-
- \image orientation-landscape-ui.png The landscape UI
-
- To the left is a QWidget called \c choiceWidget, which will show the
- current image, and to the right are three QRadioButton instances. The
- active radio button specifies the image to show.
-
- \section1 Portrait UI
-
- When the device is in portrait mode, it usually means that the user holds
- it with one hand, and can comfortably use the thumb for small amounts of
- input. The layout is simpler, and is focused on consuming content. The
- portrait UI looks like this:
-
- \image orientation-portrait-ui.png The portrait UI
-
- Similarly, it contains a QWidget, also called \c choiceWidget, that will
- show the current image. In contrast to the landscape UI, this one doesn't
- provide any controls to change the image.
-
- \section1 MainWindow Class Definition
-
- \c MainWindow inherits from QWidget and acts as the top level widget of the
- application.
-
- \snippet widgets/orientation/mainwindow.h 0
-
- The \c resizeEvent() method is re-implemented, and used to check which
- UI to show. The \c onRadioButtonClicked() slot is connected to the
- landscape UI's radio button group and selects the current image.
-
- \c landscapeWidget and \c portraitWidget will contain the UI layouts. Only
- one of them is visible at a time.
-
- \section1 MainWindow Class Implementation
-
- In the constructor, the widgets that will hold the UIs are created and set
- up.
-
- \snippet widgets/orientation/mainwindow.cpp 0
-
- Since the exit buttons on the layouts are different from each other, both
- of them have to have their \c clicked() signal connected to the \c close()
- slot of the main widget. The first image is also made current with the call
- to \c onRadioButtonClicked().
-
- \snippet widgets/orientation/mainwindow.cpp 1
-
- On the Maemo platform, windows are stuck in landscape mode by default. The
- application has to explicitly say that rotation is supported.
-
- \snippet widgets/orientation/mainwindow.cpp 2
-
- The \c resizeEvent() is called when the main window is first created, and
- also whenever the window has been resized. If the window is shown in
- full screen, this is an indication that the orientation of the screen has
- changed.
-
- The dimensions of \c landscapeWidget is the transpose of the dimensions of
- \c portraitWidget. When the orientation is known, both are set to the
- (possibly transposed) size of the window. Depending on the orientation, one
- widget is made visible and the other invisible.
-
- \snippet widgets/orientation/mainwindow.cpp 3
-
- When the user selects one of the radio buttons in the landscape UI, the
- current image is changed. The image is displayed by specifying the
- background style of the choice widget. Since both \c portrait and
- \c landscape have a \c choiceWidget of their own, the change has to be
- reflected in both instances.
-
- \snippet widgets/orientation/mainwindow.cpp 4
-
- Synchronizing both UIs like this might become unfeasible when there are
- many things that can change. In that case it is better to make use of the
- \l{Introduction to Model/View Programming}{Model-View-Controller pattern}
- more extensively and share the content between both portrait and landscape
- widgets. Then an interface for displaying and manipulating it can be tailor
- made for both orientations.
-
- \section1 The \c main() Function
-
- The main function creates a \c MainWindow instance and shows it full
- screen.
- \snippet widgets/orientation/main.cpp 0
-*/
diff --git a/examples/widgets/doc/src/applicationicon.qdoc b/examples/widgets/doc/src/applicationicon.qdoc
deleted file mode 100644
index 8f9e133e9c1..00000000000
--- a/examples/widgets/doc/src/applicationicon.qdoc
+++ /dev/null
@@ -1,52 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:FDL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Free Documentation License Usage
-** Alternatively, this file may be used under the terms of the GNU Free
-** Documentation License version 1.3 as published by the Free Software
-** Foundation and appearing in the file included in the packaging of
-** this file. Please review the following information to ensure
-** the GNU Free Documentation License version 1.3 requirements
-** will be met: http://www.gnu.org/copyleft/fdl.html.
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-/*! \example widgets/applicationicon
- \title Application Icon Example
-
- \brief The example shows how to add an application icon to a mobile application.
-
- \image appicon_screenshot.png The icon on a Nokia XPressMusic 5800
-
- \section1 Adding the icons to the project
-
- For Maemo, we need to add that the \c .desktop and icon file should be
- installed.
-
- \quotefile widgets/applicationicon/applicationicon.pro
-
- Currently, Qt Creator doesn't include the icon and desktop files in the
- application package for Maemo, merely the executable file is included. As a
- workaround for this, the files can be added manually in the Projects tab.
- In the "Create Package" build step for the Maemo target, the \c .desktop
- file and icon can be added to be a part of the package contents.
- Unfortunately, these additions are only stored as a part of the
- \c .pro.user file. This issue will be resolved in a future release of
- Qt Creator.
-
- \image appicon_packagecontents.png Manual addition of files to the "Create Package" build step
-*/
diff --git a/examples/widgets/widgets/applicationicon/applicationicon.png b/examples/widgets/widgets/applicationicon/applicationicon.png
deleted file mode 100644
index 83a186ee56c..00000000000
Binary files a/examples/widgets/widgets/applicationicon/applicationicon.png and /dev/null differ
diff --git a/examples/widgets/widgets/applicationicon/applicationicon.pro b/examples/widgets/widgets/applicationicon/applicationicon.pro
deleted file mode 100644
index 19f8ac28f77..00000000000
--- a/examples/widgets/widgets/applicationicon/applicationicon.pro
+++ /dev/null
@@ -1,15 +0,0 @@
-
-QT += core gui widgets
-
-TARGET = applicationicon
-TEMPLATE = app
-
-SOURCES += main.cpp
-
-OTHER_FILES += applicationicon.svg \
- applicationicon.png \
- applicationicon.desktop
-
-# install
-target.path = $$[QT_INSTALL_EXAMPLES]/widgets/widgets/applicationicon
-INSTALLS += target
diff --git a/examples/widgets/widgets/applicationicon/applicationicon.svg b/examples/widgets/widgets/applicationicon/applicationicon.svg
deleted file mode 100644
index aa2835b08fd..00000000000
--- a/examples/widgets/widgets/applicationicon/applicationicon.svg
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
\ No newline at end of file
diff --git a/examples/widgets/widgets/applicationicon/main.cpp b/examples/widgets/widgets/applicationicon/main.cpp
deleted file mode 100644
index 6fb2518d98e..00000000000
--- a/examples/widgets/widgets/applicationicon/main.cpp
+++ /dev/null
@@ -1,50 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include
-#include
-
-int main(int argc, char *argv[])
-{
- QApplication a(argc, argv);
- QLabel label(QObject::tr("Hello, world!"));
- label.show();
- return a.exec();
-}
diff --git a/examples/widgets/widgets/orientation/image_a.png b/examples/widgets/widgets/orientation/image_a.png
deleted file mode 100644
index 4a1a0d32527..00000000000
Binary files a/examples/widgets/widgets/orientation/image_a.png and /dev/null differ
diff --git a/examples/widgets/widgets/orientation/image_b.png b/examples/widgets/widgets/orientation/image_b.png
deleted file mode 100644
index 8722d1edee3..00000000000
Binary files a/examples/widgets/widgets/orientation/image_b.png and /dev/null differ
diff --git a/examples/widgets/widgets/orientation/image_c.png b/examples/widgets/widgets/orientation/image_c.png
deleted file mode 100644
index 6c9304fda05..00000000000
Binary files a/examples/widgets/widgets/orientation/image_c.png and /dev/null differ
diff --git a/examples/widgets/widgets/orientation/images.qrc b/examples/widgets/widgets/orientation/images.qrc
deleted file mode 100644
index b258291e6fc..00000000000
--- a/examples/widgets/widgets/orientation/images.qrc
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- image_a.png
- image_b.png
- image_c.png
-
-
diff --git a/examples/widgets/widgets/orientation/landscape.ui b/examples/widgets/widgets/orientation/landscape.ui
deleted file mode 100644
index 4616c041dc2..00000000000
--- a/examples/widgets/widgets/orientation/landscape.ui
+++ /dev/null
@@ -1,114 +0,0 @@
-
-
- LandscapeUI
-
-
-
- 0
- 0
- 514
- 265
-
-
-
- Form
-
-
-
-
-
-
- 0
- 0
-
-
-
- font-weight: bold;
-
-
- Landscape mode
-
-
- Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop
-
-
-
-
-
-
-
- 0
- 0
-
-
-
- Exit
-
-
-
-
-
-
-
- 0
- 0
-
-
-
- Choices
-
-
-
-
-
- Long description explaining choice A
-
-
- true
-
-
- buttonGroup
-
-
-
-
-
-
- Long description explaining choice B
-
-
- buttonGroup
-
-
-
-
-
-
- Long description explaining choice C
-
-
- buttonGroup
-
-
-
-
-
-
-
-
-
-
- 0
- 0
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/widgets/widgets/orientation/main.cpp b/examples/widgets/widgets/orientation/main.cpp
deleted file mode 100644
index 53ac2d4782b..00000000000
--- a/examples/widgets/widgets/orientation/main.cpp
+++ /dev/null
@@ -1,55 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include
-#include "mainwindow.h"
-
-//! [0]
-int main(int argc, char *argv[])
-{
- QApplication a(argc, argv);
-
- MainWindow w;
- w.showFullScreen();
-
- return a.exec();
-}
-//! [0]
-
diff --git a/examples/widgets/widgets/orientation/mainwindow.cpp b/examples/widgets/widgets/orientation/mainwindow.cpp
deleted file mode 100644
index 4c48f2d8451..00000000000
--- a/examples/widgets/widgets/orientation/mainwindow.cpp
+++ /dev/null
@@ -1,112 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include "mainwindow.h"
-#include "ui_landscape.h"
-#include "ui_portrait.h"
-
-#include
-#include
-
-//! [0]
-MainWindow::MainWindow(QWidget *parent) :
- QWidget(parent),
- landscapeWidget(0),
- portraitWidget(0)
-{
- landscapeWidget = new QWidget(this);
- landscape.setupUi(landscapeWidget);
-
- portraitWidget = new QWidget(this);
- portrait.setupUi(portraitWidget);
-//! [0]
-
-//! [1]
- connect(portrait.exitButton, SIGNAL(clicked()), this, SLOT(close()));
- connect(landscape.exitButton, SIGNAL(clicked()), this, SLOT(close()));
- connect(landscape.buttonGroup, SIGNAL(buttonClicked(QAbstractButton*)),
- this, SLOT(onRadioButtonClicked(QAbstractButton*)));
-
- landscape.radioAButton->setChecked(true);
- onRadioButtonClicked(landscape.radioAButton);
-//! [1]
-
-//! [2]
-}
-//! [2]
-
-//! [3]
-void MainWindow::resizeEvent(QResizeEvent *event)
-{
- QSize size = event->size();
- bool isLandscape = size.width() > size.height();
-
- if (!isLandscape)
- size.transpose();
-
- landscapeWidget->setFixedSize(size);
- size.transpose();
- portraitWidget->setFixedSize(size);
-
- landscapeWidget->setVisible(isLandscape);
- portraitWidget->setVisible(!isLandscape);
-}
-//! [3]
-
-//! [4]
-void MainWindow::onRadioButtonClicked(QAbstractButton *button)
-{
- QString styleTemplate = "background-image: url(:/image_%1.png);"
- "background-repeat: no-repeat;"
- "background-position: center center";
-
- QString imageStyle("");
- if (button == landscape.radioAButton)
- imageStyle = styleTemplate.arg("a");
- else if (button == landscape.radioBButton)
- imageStyle = styleTemplate.arg("b");
- else if (button == landscape.radioCButton)
- imageStyle = styleTemplate.arg("c");
-
- portrait.choiceWidget->setStyleSheet(imageStyle);
- landscape.choiceWidget->setStyleSheet(imageStyle);
-}
-//! [4]
-
diff --git a/examples/widgets/widgets/orientation/mainwindow.h b/examples/widgets/widgets/orientation/mainwindow.h
deleted file mode 100644
index c1705804ec2..00000000000
--- a/examples/widgets/widgets/orientation/mainwindow.h
+++ /dev/null
@@ -1,75 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the QtCore module of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#ifndef MAINWINDOW_H
-#define MAINWINDOW_H
-
-#include
-
-#include "ui_landscape.h"
-#include "ui_portrait.h"
-
-QT_BEGIN_NAMESPACE
-class QAbstractButton;
-QT_END_NAMESPACE
-
-//! [0]
-class MainWindow : public QWidget
-{
- Q_OBJECT
-
-public:
- MainWindow(QWidget *parent = 0);
-
-protected:
- void resizeEvent(QResizeEvent *event);
-
-private slots:
- void onRadioButtonClicked(QAbstractButton *button);
-
-private:
- Ui::LandscapeUI landscape;
- Ui::PortraitUI portrait;
- QWidget *landscapeWidget;
- QWidget *portraitWidget;
-};
-//! [0]
-
-#endif // MAINWINDOW_H
diff --git a/examples/widgets/widgets/orientation/orientation.pro b/examples/widgets/widgets/orientation/orientation.pro
deleted file mode 100644
index 47cea596d17..00000000000
--- a/examples/widgets/widgets/orientation/orientation.pro
+++ /dev/null
@@ -1,29 +0,0 @@
-#-------------------------------------------------
-#
-# Project created by QtCreator 2010-08-04T10:27:31
-#
-#-------------------------------------------------
-
-QT += core gui widgets
-
-TARGET = orientation
-TEMPLATE = app
-
-
-SOURCES += main.cpp\
- mainwindow.cpp
-
-HEADERS += mainwindow.h
-
-FORMS += \
- portrait.ui \
- landscape.ui
-
-RESOURCES += \
- images.qrc
-
-# install
-target.path = $$[QT_INSTALL_EXAMPLES]/widgets/widgets/orientation
-INSTALLS += target
-
-simulator: warning(This example might not fully work on Simulator platform)
diff --git a/examples/widgets/widgets/orientation/portrait.ui b/examples/widgets/widgets/orientation/portrait.ui
deleted file mode 100644
index 31a55aff736..00000000000
--- a/examples/widgets/widgets/orientation/portrait.ui
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
- PortraitUI
-
-
-
- 0
- 0
- 201
- 300
-
-
-
- Form
-
-
-
-
-
- font-weight: bold;
-
-
- Portrait mode
-
-
- Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop
-
-
-
-
-
-
- Exit
-
-
-
-
-
-
- Switch to landscape mode. In landscape mode you can change visible image.
-
-
- true
-
-
-
-
-
-
-
- 0
- 0
-
-
-
-
-
-
-
-
-
diff --git a/examples/widgets/widgets/widgets.pro b/examples/widgets/widgets/widgets.pro
index de1cc81ea6e..8d9e15a7e8e 100644
--- a/examples/widgets/widgets/widgets.pro
+++ b/examples/widgets/widgets/widgets.pro
@@ -1,6 +1,5 @@
TEMPLATE = subdirs
SUBDIRS = analogclock \
- applicationicon \
calculator \
calendarwidget \
charactermap \
@@ -13,7 +12,6 @@ SUBDIRS = analogclock \
lineedits \
movie \
mousebuttons \
- orientation \
scribble \
shapedclock \
sliders \