summaryrefslogtreecommitdiffstats
path: root/examples/dialogs/standarddialogs
diff options
context:
space:
mode:
authorGabriel de Dietrich <gabriel.dietrich-de@nokia.com>2012-08-17 13:23:19 +0200
committerQt by Nokia <qt-info@nokia.com>2012-08-20 12:20:55 +0200
commit806dda08d685bc5f9ed71dfe8b61f21848d48066 (patch)
treea63533a1c4a335ae17adc105abb0ae4e62e2f26e /examples/dialogs/standarddialogs
parent9f942014e31842b512c3198de035d041c59f54a9 (diff)
Moving .qdoc files under examples/widgets/doc
Updated those .qdoc files to refer to the new relative examples emplacement. Images and snippets to be moved later. Also grouped all widgets related examples under widgets. Change-Id: Ib29696e2d8948524537f53e8dda88f9ee26a597f Reviewed-by: J-P Nurmi <j-p.nurmi@nokia.com>
Diffstat (limited to 'examples/dialogs/standarddialogs')
-rw-r--r--examples/dialogs/standarddialogs/dialog.cpp471
-rw-r--r--examples/dialogs/standarddialogs/dialog.h101
-rw-r--r--examples/dialogs/standarddialogs/main.cpp62
-rw-r--r--examples/dialogs/standarddialogs/standarddialogs.desktop11
-rw-r--r--examples/dialogs/standarddialogs/standarddialogs.pro13
5 files changed, 0 insertions, 658 deletions
diff --git a/examples/dialogs/standarddialogs/dialog.cpp b/examples/dialogs/standarddialogs/dialog.cpp
deleted file mode 100644
index bde96c516b..0000000000
--- a/examples/dialogs/standarddialogs/dialog.cpp
+++ /dev/null
@@ -1,471 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/
-**
-** This file is part of the examples 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 Nokia Corporation 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 <QtWidgets>
-
-#include "dialog.h"
-
-#define MESSAGE \
- Dialog::tr("<p>Message boxes have a caption, a text, " \
- "and any number of buttons, each with standard or custom texts." \
- "<p>Click a button to close the message box. Pressing the Esc button " \
- "will activate the detected escape button (if any).")
-
-
-class DialogOptionsWidget : public QGroupBox
-{
-public:
- explicit DialogOptionsWidget(QWidget *parent = 0);
-
- void addCheckBox(const QString &text, int value);
- void addSpacer();
- int value() const;
-
-private:
- typedef QPair<QCheckBox *, int> CheckBoxEntry;
- QVBoxLayout *layout;
- QList<CheckBoxEntry> checkBoxEntries;
-};
-
-DialogOptionsWidget::DialogOptionsWidget(QWidget *parent) :
- QGroupBox(parent) , layout(new QVBoxLayout)
-{
- setTitle(Dialog::tr("Options"));
- setLayout(layout);
-}
-
-void DialogOptionsWidget::addCheckBox(const QString &text, int value)
-{
- QCheckBox *checkBox = new QCheckBox(text);
- layout->addWidget(checkBox);
- checkBoxEntries.append(CheckBoxEntry(checkBox, value));
-}
-
-void DialogOptionsWidget::addSpacer()
-{
- layout->addItem(new QSpacerItem(0, 0, QSizePolicy::Ignored, QSizePolicy::MinimumExpanding));
-}
-
-int DialogOptionsWidget::value() const
-{
- int result = 0;
- foreach (const CheckBoxEntry &checkboxEntry, checkBoxEntries)
- if (checkboxEntry.first->isChecked())
- result |= checkboxEntry.second;
- return result;
-}
-
-Dialog::Dialog(QWidget *parent)
- : QWidget(parent)
-{
- QVBoxLayout *mainLayout = new QVBoxLayout(this);
- QToolBox *toolbox = new QToolBox;
- mainLayout->addWidget(toolbox);
-
- errorMessageDialog = new QErrorMessage(this);
-
- int frameStyle = QFrame::Sunken | QFrame::Panel;
-
- integerLabel = new QLabel;
- integerLabel->setFrameStyle(frameStyle);
- QPushButton *integerButton =
- new QPushButton(tr("QInputDialog::get&Int()"));
-
- doubleLabel = new QLabel;
- doubleLabel->setFrameStyle(frameStyle);
- QPushButton *doubleButton =
- new QPushButton(tr("QInputDialog::get&Double()"));
-
- itemLabel = new QLabel;
- itemLabel->setFrameStyle(frameStyle);
- QPushButton *itemButton = new QPushButton(tr("QInputDialog::getIte&m()"));
-
- textLabel = new QLabel;
- textLabel->setFrameStyle(frameStyle);
- QPushButton *textButton = new QPushButton(tr("QInputDialog::get&Text()"));
-
- colorLabel = new QLabel;
- colorLabel->setFrameStyle(frameStyle);
- QPushButton *colorButton = new QPushButton(tr("QColorDialog::get&Color()"));
-
- fontLabel = new QLabel;
- fontLabel->setFrameStyle(frameStyle);
- QPushButton *fontButton = new QPushButton(tr("QFontDialog::get&Font()"));
-
- directoryLabel = new QLabel;
- directoryLabel->setFrameStyle(frameStyle);
- QPushButton *directoryButton =
- new QPushButton(tr("QFileDialog::getE&xistingDirectory()"));
-
- openFileNameLabel = new QLabel;
- openFileNameLabel->setFrameStyle(frameStyle);
- QPushButton *openFileNameButton =
- new QPushButton(tr("QFileDialog::get&OpenFileName()"));
-
- openFileNamesLabel = new QLabel;
- openFileNamesLabel->setFrameStyle(frameStyle);
- QPushButton *openFileNamesButton =
- new QPushButton(tr("QFileDialog::&getOpenFileNames()"));
-
- saveFileNameLabel = new QLabel;
- saveFileNameLabel->setFrameStyle(frameStyle);
- QPushButton *saveFileNameButton =
- new QPushButton(tr("QFileDialog::get&SaveFileName()"));
-
- criticalLabel = new QLabel;
- criticalLabel->setFrameStyle(frameStyle);
- QPushButton *criticalButton =
- new QPushButton(tr("QMessageBox::critica&l()"));
-
- informationLabel = new QLabel;
- informationLabel->setFrameStyle(frameStyle);
- QPushButton *informationButton =
- new QPushButton(tr("QMessageBox::i&nformation()"));
-
- questionLabel = new QLabel;
- questionLabel->setFrameStyle(frameStyle);
- QPushButton *questionButton =
- new QPushButton(tr("QMessageBox::&question()"));
-
- warningLabel = new QLabel;
- warningLabel->setFrameStyle(frameStyle);
- QPushButton *warningButton = new QPushButton(tr("QMessageBox::&warning()"));
-
- errorLabel = new QLabel;
- errorLabel->setFrameStyle(frameStyle);
- QPushButton *errorButton =
- new QPushButton(tr("QErrorMessage::showM&essage()"));
-
- connect(integerButton, SIGNAL(clicked()), this, SLOT(setInteger()));
- connect(doubleButton, SIGNAL(clicked()), this, SLOT(setDouble()));
- connect(itemButton, SIGNAL(clicked()), this, SLOT(setItem()));
- connect(textButton, SIGNAL(clicked()), this, SLOT(setText()));
- connect(colorButton, SIGNAL(clicked()), this, SLOT(setColor()));
- connect(fontButton, SIGNAL(clicked()), this, SLOT(setFont()));
- connect(directoryButton, SIGNAL(clicked()),
- this, SLOT(setExistingDirectory()));
- connect(openFileNameButton, SIGNAL(clicked()),
- this, SLOT(setOpenFileName()));
- connect(openFileNamesButton, SIGNAL(clicked()),
- this, SLOT(setOpenFileNames()));
- connect(saveFileNameButton, SIGNAL(clicked()),
- this, SLOT(setSaveFileName()));
- connect(criticalButton, SIGNAL(clicked()), this, SLOT(criticalMessage()));
- connect(informationButton, SIGNAL(clicked()),
- this, SLOT(informationMessage()));
- connect(questionButton, SIGNAL(clicked()), this, SLOT(questionMessage()));
- connect(warningButton, SIGNAL(clicked()), this, SLOT(warningMessage()));
- connect(errorButton, SIGNAL(clicked()), this, SLOT(errorMessage()));
-
- QWidget *page = new QWidget;
- QGridLayout *layout = new QGridLayout(page);
- layout->setColumnStretch(1, 1);
- layout->setColumnMinimumWidth(1, 250);
- layout->addWidget(integerButton, 0, 0);
- layout->addWidget(integerLabel, 0, 1);
- layout->addWidget(doubleButton, 1, 0);
- layout->addWidget(doubleLabel, 1, 1);
- layout->addWidget(itemButton, 2, 0);
- layout->addWidget(itemLabel, 2, 1);
- layout->addWidget(textButton, 3, 0);
- layout->addWidget(textLabel, 3, 1);
- layout->addItem(new QSpacerItem(0, 0, QSizePolicy::Ignored, QSizePolicy::MinimumExpanding), 4, 0);
- toolbox->addItem(page, tr("Input Dialogs"));
-
- const QString doNotUseNativeDialog = tr("Do not use native dialog");
-
- page = new QWidget;
- layout = new QGridLayout(page);
- layout->setColumnStretch(1, 1);
- layout->addWidget(colorButton, 0, 0);
- layout->addWidget(colorLabel, 0, 1);
- colorDialogOptionsWidget = new DialogOptionsWidget;
- colorDialogOptionsWidget->addCheckBox(doNotUseNativeDialog, QColorDialog::DontUseNativeDialog);
- colorDialogOptionsWidget->addCheckBox(tr("Show alpha channel") , QColorDialog::ShowAlphaChannel);
- colorDialogOptionsWidget->addCheckBox(tr("No buttons") , QColorDialog::NoButtons);
- layout->addItem(new QSpacerItem(0, 0, QSizePolicy::Ignored, QSizePolicy::MinimumExpanding), 1, 0);
- layout->addWidget(colorDialogOptionsWidget, 2, 0, 1 ,2);
-
- toolbox->addItem(page, tr("Color Dialog"));
-
- page = new QWidget;
- layout = new QGridLayout(page);
- layout->setColumnStretch(1, 1);
- layout->addWidget(fontButton, 0, 0);
- layout->addWidget(fontLabel, 0, 1);
- fontDialogOptionsWidget = new DialogOptionsWidget;
- fontDialogOptionsWidget->addCheckBox(doNotUseNativeDialog, QFontDialog::DontUseNativeDialog);
- fontDialogOptionsWidget->addCheckBox(tr("No buttons") , QFontDialog::NoButtons);
- layout->addItem(new QSpacerItem(0, 0, QSizePolicy::Ignored, QSizePolicy::MinimumExpanding), 1, 0);
- layout->addWidget(fontDialogOptionsWidget, 2, 0, 1 ,2);
- toolbox->addItem(page, tr("Font Dialog"));
-
- page = new QWidget;
- layout = new QGridLayout(page);
- layout->setColumnStretch(1, 1);
- layout->addWidget(directoryButton, 0, 0);
- layout->addWidget(directoryLabel, 0, 1);
- layout->addWidget(openFileNameButton, 1, 0);
- layout->addWidget(openFileNameLabel, 1, 1);
- layout->addWidget(openFileNamesButton, 2, 0);
- layout->addWidget(openFileNamesLabel, 2, 1);
- layout->addWidget(saveFileNameButton, 3, 0);
- layout->addWidget(saveFileNameLabel, 3, 1);
- fileDialogOptionsWidget = new DialogOptionsWidget;
- fileDialogOptionsWidget->addCheckBox(doNotUseNativeDialog, QFileDialog::DontUseNativeDialog);
- fileDialogOptionsWidget->addCheckBox(tr("Show directories only"), QFileDialog::ShowDirsOnly);
- fileDialogOptionsWidget->addCheckBox(tr("Do not resolve symlinks"), QFileDialog::DontResolveSymlinks);
- fileDialogOptionsWidget->addCheckBox(tr("Do not confirm overwrite"), QFileDialog::DontConfirmOverwrite);
- fileDialogOptionsWidget->addCheckBox(tr("Do not use sheet"), QFileDialog::DontUseSheet);
- fileDialogOptionsWidget->addCheckBox(tr("Readonly"), QFileDialog::ReadOnly);
- fileDialogOptionsWidget->addCheckBox(tr("Hide name filter details"), QFileDialog::HideNameFilterDetails);
- layout->addItem(new QSpacerItem(0, 0, QSizePolicy::Ignored, QSizePolicy::MinimumExpanding), 4, 0);
- layout->addWidget(fileDialogOptionsWidget, 5, 0, 1 ,2);
- toolbox->addItem(page, tr("File Dialogs"));
-
- page = new QWidget;
- layout = new QGridLayout(page);
- layout->setColumnStretch(1, 1);
- layout->addWidget(criticalButton, 0, 0);
- layout->addWidget(criticalLabel, 0, 1);
- layout->addWidget(informationButton, 1, 0);
- layout->addWidget(informationLabel, 1, 1);
- layout->addWidget(questionButton, 2, 0);
- layout->addWidget(questionLabel, 2, 1);
- layout->addWidget(warningButton, 3, 0);
- layout->addWidget(warningLabel, 3, 1);
- layout->addWidget(errorButton, 4, 0);
- layout->addWidget(errorLabel, 4, 1);
- layout->addItem(new QSpacerItem(0, 0, QSizePolicy::Ignored, QSizePolicy::MinimumExpanding), 5, 0);
- toolbox->addItem(page, tr("Message Boxes"));
-
- setWindowTitle(tr("Standard Dialogs"));
-}
-
-void Dialog::setInteger()
-{
-//! [0]
- bool ok;
- int i = QInputDialog::getInt(this, tr("QInputDialog::getInteger()"),
- tr("Percentage:"), 25, 0, 100, 1, &ok);
- if (ok)
- integerLabel->setText(tr("%1%").arg(i));
-//! [0]
-}
-
-void Dialog::setDouble()
-{
-//! [1]
- bool ok;
- double d = QInputDialog::getDouble(this, tr("QInputDialog::getDouble()"),
- tr("Amount:"), 37.56, -10000, 10000, 2, &ok);
- if (ok)
- doubleLabel->setText(QString("$%1").arg(d));
-//! [1]
-}
-
-void Dialog::setItem()
-{
-//! [2]
- QStringList items;
- items << tr("Spring") << tr("Summer") << tr("Fall") << tr("Winter");
-
- bool ok;
- QString item = QInputDialog::getItem(this, tr("QInputDialog::getItem()"),
- tr("Season:"), items, 0, false, &ok);
- if (ok && !item.isEmpty())
- itemLabel->setText(item);
-//! [2]
-}
-
-void Dialog::setText()
-{
-//! [3]
- bool ok;
- QString text = QInputDialog::getText(this, tr("QInputDialog::getText()"),
- tr("User name:"), QLineEdit::Normal,
- QDir::home().dirName(), &ok);
- if (ok && !text.isEmpty())
- textLabel->setText(text);
-//! [3]
-}
-
-void Dialog::setColor()
-{
- const QColorDialog::ColorDialogOptions options = QFlag(colorDialogOptionsWidget->value());
- const QColor color = QColorDialog::getColor(Qt::green, this, "Select Color", options);
-
- if (color.isValid()) {
- colorLabel->setText(color.name());
- colorLabel->setPalette(QPalette(color));
- colorLabel->setAutoFillBackground(true);
- }
-}
-
-void Dialog::setFont()
-{
- const QFontDialog::FontDialogOptions options = QFlag(fontDialogOptionsWidget->value());
- bool ok;
- QFont font = QFontDialog::getFont(&ok, QFont(fontLabel->text()), this, "Select Font", options);
- if (ok) {
- fontLabel->setText(font.key());
- fontLabel->setFont(font);
- }
-}
-
-void Dialog::setExistingDirectory()
-{
- QFileDialog::Options options = QFlag(fileDialogOptionsWidget->value());
- options |= QFileDialog::DontResolveSymlinks | QFileDialog::ShowDirsOnly;
- QString directory = QFileDialog::getExistingDirectory(this,
- tr("QFileDialog::getExistingDirectory()"),
- directoryLabel->text(),
- options);
- if (!directory.isEmpty())
- directoryLabel->setText(directory);
-}
-
-void Dialog::setOpenFileName()
-{
- const QFileDialog::Options options = QFlag(fileDialogOptionsWidget->value());
- QString selectedFilter;
- QString fileName = QFileDialog::getOpenFileName(this,
- tr("QFileDialog::getOpenFileName()"),
- openFileNameLabel->text(),
- tr("All Files (*);;Text Files (*.txt)"),
- &selectedFilter,
- options);
- if (!fileName.isEmpty())
- openFileNameLabel->setText(fileName);
-}
-
-void Dialog::setOpenFileNames()
-{
- const QFileDialog::Options options = QFlag(fileDialogOptionsWidget->value());
- QString selectedFilter;
- QStringList files = QFileDialog::getOpenFileNames(
- this, tr("QFileDialog::getOpenFileNames()"),
- openFilesPath,
- tr("All Files (*);;Text Files (*.txt)"),
- &selectedFilter,
- options);
- if (files.count()) {
- openFilesPath = files[0];
- openFileNamesLabel->setText(QString("[%1]").arg(files.join(", ")));
- }
-}
-
-void Dialog::setSaveFileName()
-{
- const QFileDialog::Options options = QFlag(fileDialogOptionsWidget->value());
- QString selectedFilter;
- QString fileName = QFileDialog::getSaveFileName(this,
- tr("QFileDialog::getSaveFileName()"),
- saveFileNameLabel->text(),
- tr("All Files (*);;Text Files (*.txt)"),
- &selectedFilter,
- options);
- if (!fileName.isEmpty())
- saveFileNameLabel->setText(fileName);
-}
-
-void Dialog::criticalMessage()
-{
- QMessageBox::StandardButton reply;
- reply = QMessageBox::critical(this, tr("QMessageBox::critical()"),
- MESSAGE,
- QMessageBox::Abort | QMessageBox::Retry | QMessageBox::Ignore);
- if (reply == QMessageBox::Abort)
- criticalLabel->setText(tr("Abort"));
- else if (reply == QMessageBox::Retry)
- criticalLabel->setText(tr("Retry"));
- else
- criticalLabel->setText(tr("Ignore"));
-}
-
-void Dialog::informationMessage()
-{
- QMessageBox::StandardButton reply;
- reply = QMessageBox::information(this, tr("QMessageBox::information()"), MESSAGE);
- if (reply == QMessageBox::Ok)
- informationLabel->setText(tr("OK"));
- else
- informationLabel->setText(tr("Escape"));
-}
-
-void Dialog::questionMessage()
-{
- QMessageBox::StandardButton reply;
- reply = QMessageBox::question(this, tr("QMessageBox::question()"),
- MESSAGE,
- QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel);
- if (reply == QMessageBox::Yes)
- questionLabel->setText(tr("Yes"));
- else if (reply == QMessageBox::No)
- questionLabel->setText(tr("No"));
- else
- questionLabel->setText(tr("Cancel"));
-}
-
-void Dialog::warningMessage()
-{
- QMessageBox msgBox(QMessageBox::Warning, tr("QMessageBox::warning()"),
- MESSAGE, 0, this);
- msgBox.addButton(tr("Save &Again"), QMessageBox::AcceptRole);
- msgBox.addButton(tr("&Continue"), QMessageBox::RejectRole);
- if (msgBox.exec() == QMessageBox::AcceptRole)
- warningLabel->setText(tr("Save Again"));
- else
- warningLabel->setText(tr("Continue"));
-
-}
-
-void Dialog::errorMessage()
-{
- errorMessageDialog->showMessage(
- tr("This dialog shows and remembers error messages. "
- "If the checkbox is checked (as it is by default), "
- "the shown message will be shown again, "
- "but if the user unchecks the box the message "
- "will not appear again if QErrorMessage::showMessage() "
- "is called with the same message."));
- errorLabel->setText(tr("If the box is unchecked, the message "
- "won't appear again."));
-}
diff --git a/examples/dialogs/standarddialogs/dialog.h b/examples/dialogs/standarddialogs/dialog.h
deleted file mode 100644
index 2b14d793d6..0000000000
--- a/examples/dialogs/standarddialogs/dialog.h
+++ /dev/null
@@ -1,101 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/
-**
-** This file is part of the examples 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 Nokia Corporation 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 DIALOG_H
-#define DIALOG_H
-
-#include <QWidget>
-
-QT_BEGIN_NAMESPACE
-class QCheckBox;
-class QLabel;
-class QErrorMessage;
-QT_END_NAMESPACE
-
-class DialogOptionsWidget;
-
-class Dialog : public QWidget
-{
- Q_OBJECT
-
-public:
- Dialog(QWidget *parent = 0);
-
-private slots:
- void setInteger();
- void setDouble();
- void setItem();
- void setText();
- void setColor();
- void setFont();
- void setExistingDirectory();
- void setOpenFileName();
- void setOpenFileNames();
- void setSaveFileName();
- void criticalMessage();
- void informationMessage();
- void questionMessage();
- void warningMessage();
- void errorMessage();
-
-private:
- QLabel *integerLabel;
- QLabel *doubleLabel;
- QLabel *itemLabel;
- QLabel *textLabel;
- QLabel *colorLabel;
- QLabel *fontLabel;
- QLabel *directoryLabel;
- QLabel *openFileNameLabel;
- QLabel *openFileNamesLabel;
- QLabel *saveFileNameLabel;
- QLabel *criticalLabel;
- QLabel *informationLabel;
- QLabel *questionLabel;
- QLabel *warningLabel;
- QLabel *errorLabel;
- QErrorMessage *errorMessageDialog;
- DialogOptionsWidget *fileDialogOptionsWidget;
- DialogOptionsWidget *colorDialogOptionsWidget;
- DialogOptionsWidget *fontDialogOptionsWidget;
- QString openFilesPath;
-};
-
-#endif
diff --git a/examples/dialogs/standarddialogs/main.cpp b/examples/dialogs/standarddialogs/main.cpp
deleted file mode 100644
index 001239929e..0000000000
--- a/examples/dialogs/standarddialogs/main.cpp
+++ /dev/null
@@ -1,62 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/
-**
-** This file is part of the examples 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 Nokia Corporation 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 <QApplication>
-#include <QTranslator>
-#include <QLocale>
-#include <QLibraryInfo>
-
-#include "dialog.h"
-
-int main(int argc, char *argv[])
-{
- QApplication app(argc, argv);
-
- QString translatorFileName = QLatin1String("qt_");
- translatorFileName += QLocale::system().name();
- QTranslator *translator = new QTranslator(&app);
- if (translator->load(translatorFileName, QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
- app.installTranslator(translator);
-
- Dialog dialog;
- dialog.show();
-
- return app.exec();
-}
diff --git a/examples/dialogs/standarddialogs/standarddialogs.desktop b/examples/dialogs/standarddialogs/standarddialogs.desktop
deleted file mode 100644
index f74830317a..0000000000
--- a/examples/dialogs/standarddialogs/standarddialogs.desktop
+++ /dev/null
@@ -1,11 +0,0 @@
-[Desktop Entry]
-Encoding=UTF-8
-Version=1.0
-Type=Application
-Terminal=false
-Name=Standard Dialogs
-Exec=/opt/usr/bin/standarddialogs
-Icon=standarddialogs
-X-Window-Icon=
-X-HildonDesk-ShowInToolbar=true
-X-Osso-Type=application/x-executable
diff --git a/examples/dialogs/standarddialogs/standarddialogs.pro b/examples/dialogs/standarddialogs/standarddialogs.pro
deleted file mode 100644
index cbcb4d7302..0000000000
--- a/examples/dialogs/standarddialogs/standarddialogs.pro
+++ /dev/null
@@ -1,13 +0,0 @@
-HEADERS = dialog.h
-SOURCES = dialog.cpp \
- main.cpp
-
-# install
-target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/dialogs/standarddialogs
-sources.files = $$SOURCES $$HEADERS *.pro
-sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/dialogs/standarddialogs
-INSTALLS += target sources
-
-wince50standard-x86-msvc2005: LIBS += libcmt.lib corelibc.lib ole32.lib oleaut32.lib uuid.lib commctrl.lib coredll.lib winsock.lib ws2.lib
-
-QT += widgets