summaryrefslogtreecommitdiffstats
path: root/examples/widgets/spinboxes
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/widgets/spinboxes
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/widgets/spinboxes')
-rw-r--r--examples/widgets/spinboxes/main.cpp51
-rw-r--r--examples/widgets/spinboxes/spinboxes.desktop11
-rw-r--r--examples/widgets/spinboxes/spinboxes.pro13
-rw-r--r--examples/widgets/spinboxes/window.cpp251
-rw-r--r--examples/widgets/spinboxes/window.h81
5 files changed, 0 insertions, 407 deletions
diff --git a/examples/widgets/spinboxes/main.cpp b/examples/widgets/spinboxes/main.cpp
deleted file mode 100644
index dcbf1c0449..0000000000
--- a/examples/widgets/spinboxes/main.cpp
+++ /dev/null
@@ -1,51 +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 "window.h"
-
-int main(int argc, char *argv[])
-{
- QApplication app(argc, argv);
- Window window;
- window.show();
- return app.exec();
-}
diff --git a/examples/widgets/spinboxes/spinboxes.desktop b/examples/widgets/spinboxes/spinboxes.desktop
deleted file mode 100644
index 7de30383f2..0000000000
--- a/examples/widgets/spinboxes/spinboxes.desktop
+++ /dev/null
@@ -1,11 +0,0 @@
-[Desktop Entry]
-Encoding=UTF-8
-Version=1.0
-Type=Application
-Terminal=false
-Name=Spin Boxes
-Exec=/opt/usr/bin/spinboxes
-Icon=spinboxes
-X-Window-Icon=
-X-HildonDesk-ShowInToolbar=true
-X-Osso-Type=application/x-executable
diff --git a/examples/widgets/spinboxes/spinboxes.pro b/examples/widgets/spinboxes/spinboxes.pro
deleted file mode 100644
index e19e33178d..0000000000
--- a/examples/widgets/spinboxes/spinboxes.pro
+++ /dev/null
@@ -1,13 +0,0 @@
-HEADERS = window.h
-SOURCES = main.cpp \
- window.cpp
-
-# install
-target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/widgets/spinboxes
-sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS spinboxes.pro
-sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/widgets/spinboxes
-INSTALLS += target sources
-
-QT += widgets
-
-simulator: warning(This example might not fully work on Simulator platform)
diff --git a/examples/widgets/spinboxes/window.cpp b/examples/widgets/spinboxes/window.cpp
deleted file mode 100644
index 1e01386d31..0000000000
--- a/examples/widgets/spinboxes/window.cpp
+++ /dev/null
@@ -1,251 +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 "window.h"
-
-//! [0]
-Window::Window()
-{
- createSpinBoxes();
- createDateTimeEdits();
- createDoubleSpinBoxes();
-
- QHBoxLayout *layout = new QHBoxLayout;
- layout->addWidget(spinBoxesGroup);
- layout->addWidget(editsGroup);
- layout->addWidget(doubleSpinBoxesGroup);
- setLayout(layout);
-
- setWindowTitle(tr("Spin Boxes"));
-}
-//! [0]
-
-//! [1]
-void Window::createSpinBoxes()
-{
- spinBoxesGroup = new QGroupBox(tr("Spinboxes"));
-
- QLabel *integerLabel = new QLabel(tr("Enter a value between "
- "%1 and %2:").arg(-20).arg(20));
- QSpinBox *integerSpinBox = new QSpinBox;
- integerSpinBox->setRange(-20, 20);
- integerSpinBox->setSingleStep(1);
- integerSpinBox->setValue(0);
-//! [1]
-
-//! [2]
- QLabel *zoomLabel = new QLabel(tr("Enter a zoom value between "
- "%1 and %2:").arg(0).arg(1000));
-//! [3]
- QSpinBox *zoomSpinBox = new QSpinBox;
- zoomSpinBox->setRange(0, 1000);
- zoomSpinBox->setSingleStep(10);
- zoomSpinBox->setSuffix("%");
- zoomSpinBox->setSpecialValueText(tr("Automatic"));
- zoomSpinBox->setValue(100);
-//! [2] //! [3]
-
-//! [4]
- QLabel *priceLabel = new QLabel(tr("Enter a price between "
- "%1 and %2:").arg(0).arg(999));
- QSpinBox *priceSpinBox = new QSpinBox;
- priceSpinBox->setRange(0, 999);
- priceSpinBox->setSingleStep(1);
- priceSpinBox->setPrefix("$");
- priceSpinBox->setValue(99);
-//! [4] //! [5]
-
- QVBoxLayout *spinBoxLayout = new QVBoxLayout;
- spinBoxLayout->addWidget(integerLabel);
- spinBoxLayout->addWidget(integerSpinBox);
- spinBoxLayout->addWidget(zoomLabel);
- spinBoxLayout->addWidget(zoomSpinBox);
- spinBoxLayout->addWidget(priceLabel);
- spinBoxLayout->addWidget(priceSpinBox);
- spinBoxesGroup->setLayout(spinBoxLayout);
-}
-//! [5]
-
-//! [6]
-void Window::createDateTimeEdits()
-{
- editsGroup = new QGroupBox(tr("Date and time spin boxes"));
-
- QLabel *dateLabel = new QLabel;
- QDateEdit *dateEdit = new QDateEdit(QDate::currentDate());
- dateEdit->setDateRange(QDate(2005, 1, 1), QDate(2010, 12, 31));
- dateLabel->setText(tr("Appointment date (between %0 and %1):")
- .arg(dateEdit->minimumDate().toString(Qt::ISODate))
- .arg(dateEdit->maximumDate().toString(Qt::ISODate)));
-//! [6]
-
-//! [7]
- QLabel *timeLabel = new QLabel;
- QTimeEdit *timeEdit = new QTimeEdit(QTime::currentTime());
- timeEdit->setTimeRange(QTime(9, 0, 0, 0), QTime(16, 30, 0, 0));
- timeLabel->setText(tr("Appointment time (between %0 and %1):")
- .arg(timeEdit->minimumTime().toString(Qt::ISODate))
- .arg(timeEdit->maximumTime().toString(Qt::ISODate)));
-//! [7]
-
-//! [8]
- meetingLabel = new QLabel;
- meetingEdit = new QDateTimeEdit(QDateTime::currentDateTime());
-//! [8]
-
-//! [9]
- QLabel *formatLabel = new QLabel(tr("Format string for the meeting date "
- "and time:"));
- QComboBox *formatComboBox = new QComboBox;
- formatComboBox->addItem("yyyy-MM-dd hh:mm:ss (zzz 'ms')");
- formatComboBox->addItem("hh:mm:ss MM/dd/yyyy");
- formatComboBox->addItem("hh:mm:ss dd/MM/yyyy");
- formatComboBox->addItem("hh:mm:ss");
- formatComboBox->addItem("hh:mm ap");
-//! [9] //! [10]
-
- connect(formatComboBox, SIGNAL(activated(QString)),
- this, SLOT(setFormatString(QString)));
-//! [10]
-
- setFormatString(formatComboBox->currentText());
-
-//! [11]
- QVBoxLayout *editsLayout = new QVBoxLayout;
- editsLayout->addWidget(dateLabel);
- editsLayout->addWidget(dateEdit);
- editsLayout->addWidget(timeLabel);
- editsLayout->addWidget(timeEdit);
- editsLayout->addWidget(meetingLabel);
- editsLayout->addWidget(meetingEdit);
- editsLayout->addWidget(formatLabel);
- editsLayout->addWidget(formatComboBox);
- editsGroup->setLayout(editsLayout);
-}
-//! [11]
-
-//! [12]
-void Window::setFormatString(const QString &formatString)
-{
- meetingEdit->setDisplayFormat(formatString);
-//! [12] //! [13]
- if (meetingEdit->displayedSections() & QDateTimeEdit::DateSections_Mask) {
- meetingEdit->setDateRange(QDate(2004, 11, 1), QDate(2005, 11, 30));
- meetingLabel->setText(tr("Meeting date (between %0 and %1):")
- .arg(meetingEdit->minimumDate().toString(Qt::ISODate))
- .arg(meetingEdit->maximumDate().toString(Qt::ISODate)));
- } else {
- meetingEdit->setTimeRange(QTime(0, 7, 20, 0), QTime(21, 0, 0, 0));
- meetingLabel->setText(tr("Meeting time (between %0 and %1):")
- .arg(meetingEdit->minimumTime().toString(Qt::ISODate))
- .arg(meetingEdit->maximumTime().toString(Qt::ISODate)));
- }
-}
-//! [13]
-
-//! [14]
-void Window::createDoubleSpinBoxes()
-{
- doubleSpinBoxesGroup = new QGroupBox(tr("Double precision spinboxes"));
-
- QLabel *precisionLabel = new QLabel(tr("Number of decimal places "
- "to show:"));
- QSpinBox *precisionSpinBox = new QSpinBox;
- precisionSpinBox->setRange(0, 100);
- precisionSpinBox->setValue(2);
-//! [14]
-
-//! [15]
- QLabel *doubleLabel = new QLabel(tr("Enter a value between "
- "%1 and %2:").arg(-20).arg(20));
- doubleSpinBox = new QDoubleSpinBox;
- doubleSpinBox->setRange(-20.0, 20.0);
- doubleSpinBox->setSingleStep(1.0);
- doubleSpinBox->setValue(0.0);
-//! [15]
-
-//! [16]
- QLabel *scaleLabel = new QLabel(tr("Enter a scale factor between "
- "%1 and %2:").arg(0).arg(1000.0));
- scaleSpinBox = new QDoubleSpinBox;
- scaleSpinBox->setRange(0.0, 1000.0);
- scaleSpinBox->setSingleStep(10.0);
- scaleSpinBox->setSuffix("%");
- scaleSpinBox->setSpecialValueText(tr("No scaling"));
- scaleSpinBox->setValue(100.0);
-//! [16]
-
-//! [17]
- QLabel *priceLabel = new QLabel(tr("Enter a price between "
- "%1 and %2:").arg(0).arg(1000));
- priceSpinBox = new QDoubleSpinBox;
- priceSpinBox->setRange(0.0, 1000.0);
- priceSpinBox->setSingleStep(1.0);
- priceSpinBox->setPrefix("$");
- priceSpinBox->setValue(99.99);
-
- connect(precisionSpinBox, SIGNAL(valueChanged(int)),
-//! [17]
- this, SLOT(changePrecision(int)));
-
-//! [18]
- QVBoxLayout *spinBoxLayout = new QVBoxLayout;
- spinBoxLayout->addWidget(precisionLabel);
- spinBoxLayout->addWidget(precisionSpinBox);
- spinBoxLayout->addWidget(doubleLabel);
- spinBoxLayout->addWidget(doubleSpinBox);
- spinBoxLayout->addWidget(scaleLabel);
- spinBoxLayout->addWidget(scaleSpinBox);
- spinBoxLayout->addWidget(priceLabel);
- spinBoxLayout->addWidget(priceSpinBox);
- doubleSpinBoxesGroup->setLayout(spinBoxLayout);
-}
-//! [18]
-
-//! [19]
-void Window::changePrecision(int decimals)
-{
- doubleSpinBox->setDecimals(decimals);
- scaleSpinBox->setDecimals(decimals);
- priceSpinBox->setDecimals(decimals);
-}
-//! [19]
diff --git a/examples/widgets/spinboxes/window.h b/examples/widgets/spinboxes/window.h
deleted file mode 100644
index 17f18e710d..0000000000
--- a/examples/widgets/spinboxes/window.h
+++ /dev/null
@@ -1,81 +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 WINDOW_H
-#define WINDOW_H
-
-#include <QWidget>
-
-QT_BEGIN_NAMESPACE
-class QDateTimeEdit;
-class QDoubleSpinBox;
-class QGroupBox;
-class QLabel;
-QT_END_NAMESPACE
-
-//! [0]
-class Window : public QWidget
-{
- Q_OBJECT
-
-public:
- Window();
-
-public slots:
- void changePrecision(int decimals);
- void setFormatString(const QString &formatString);
-
-private:
- void createSpinBoxes();
- void createDateTimeEdits();
- void createDoubleSpinBoxes();
-
- QDateTimeEdit *meetingEdit;
- QDoubleSpinBox *doubleSpinBox;
- QDoubleSpinBox *priceSpinBox;
- QDoubleSpinBox *scaleSpinBox;
- QGroupBox *spinBoxesGroup;
- QGroupBox *editsGroup;
- QGroupBox *doubleSpinBoxesGroup;
- QLabel *meetingLabel;
-};
-//! [0]
-
-#endif