/****************************************************************************
**
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** 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 <QtGui>#include "window.h"
Window::Window()
{
createSpinBoxes();
createDateTimeEdits();
createDoubleSpinBoxes();
QHBoxLayout*layout =newQHBoxLayout;
layout->addWidget(spinBoxesGroup);
layout->addWidget(editsGroup);
layout->addWidget(doubleSpinBoxesGroup);
setLayout(layout);
setWindowTitle(tr("Spin Boxes"));
}
void Window::createSpinBoxes()
{
spinBoxesGroup =newQGroupBox(tr("Spinboxes"));
QLabel*integerLabel =newQLabel(tr("Enter a value between ""%1 and %2:").arg(-20).arg(20));
QSpinBox*integerSpinBox =newQSpinBox;
integerSpinBox->setRange(-20,20);
integerSpinBox->setSingleStep(1);
integerSpinBox->setValue(0);
QLabel*zoomLabel =newQLabel(tr("Enter a zoom value between ""%1 and %2:").arg(0).arg(1000));
QSpinBox*zoomSpinBox =newQSpinBox;
zoomSpinBox->setRange(0,1000);
zoomSpinBox->setSingleStep(10);
zoomSpinBox->setSuffix("%");
zoomSpinBox->setSpecialValueText(tr("Automatic"));
zoomSpinBox->setValue(100);
QLabel*priceLabel =newQLabel(tr("Enter a price between ""%1 and %2:").arg(0).arg(999));
QSpinBox*priceSpinBox =newQSpinBox;
priceSpinBox->setRange(0,999);
priceSpinBox->setSingleStep(1);
priceSpinBox->setPrefix("$");
priceSpinBox->setValue(99);
QVBoxLayout*spinBoxLayout =newQVBoxLayout;
spinBoxLayout->addWidget(integerLabel);
spinBoxLayout->addWidget(integerSpinBox);
spinBoxLayout->addWidget(zoomLabel);
spinBoxLayout->addWidget(zoomSpinBox);
spinBoxLayout->addWidget(priceLabel);
spinBoxLayout->addWidget(priceSpinBox);
spinBoxesGroup->setLayout(spinBoxLayout);
}
void Window::createDateTimeEdits()
{
editsGroup =newQGroupBox(tr("Date and time spin boxes"));
QLabel*dateLabel =newQLabel;
QDateEdit*dateEdit =newQDateEdit(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)));
QLabel*timeLabel =newQLabel;
QTimeEdit*timeEdit =newQTimeEdit(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)));
meetingLabel =newQLabel;
meetingEdit =newQDateTimeEdit(QDateTime::currentDateTime());
QLabel*formatLabel =newQLabel(tr("Format string for the meeting date ""and time:"));
QComboBox*formatComboBox =newQComboBox;
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");
connect(formatComboBox, SIGNAL(activated(QString)),this, SLOT(setFormatString(QString)));
setFormatString(formatComboBox->currentText());
QVBoxLayout*editsLayout =newQVBoxLayout;
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);
}
void Window::setFormatString(constQString&formatString)
{
meetingEdit->setDisplayFormat(formatString);
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)));
}
}
void Window::createDoubleSpinBoxes()
{
doubleSpinBoxesGroup =newQGroupBox(tr("Double precision spinboxes"));
QLabel*precisionLabel =newQLabel(tr("Number of decimal places ""to show:"));
QSpinBox*precisionSpinBox =newQSpinBox;
precisionSpinBox->setRange(0,100);
precisionSpinBox->setValue(2);
QLabel*doubleLabel =newQLabel(tr("Enter a value between ""%1 and %2:").arg(-20).arg(20));
doubleSpinBox =newQDoubleSpinBox;
doubleSpinBox->setRange(-20.0,20.0);
doubleSpinBox->setSingleStep(1.0);
doubleSpinBox->setValue(0.0);
QLabel*scaleLabel =newQLabel(tr("Enter a scale factor between ""%1 and %2:").arg(0).arg(1000.0));
scaleSpinBox =newQDoubleSpinBox;
scaleSpinBox->setRange(0.0,1000.0);
scaleSpinBox->setSingleStep(10.0);
scaleSpinBox->setSuffix("%");
scaleSpinBox->setSpecialValueText(tr("No scaling"));
scaleSpinBox->setValue(100.0);
QLabel*priceLabel =newQLabel(tr("Enter a price between ""%1 and %2:").arg(0).arg(1000));
priceSpinBox =newQDoubleSpinBox;
priceSpinBox->setRange(0.0,1000.0);
priceSpinBox->setSingleStep(1.0);
priceSpinBox->setPrefix("$");
priceSpinBox->setValue(99.99);
connect(precisionSpinBox, SIGNAL(valueChanged(int)),this, SLOT(changePrecision(int)));
QVBoxLayout*spinBoxLayout =newQVBoxLayout;
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);
}
void Window::changePrecision(int decimals)
{
doubleSpinBox->setDecimals(decimals);
scaleSpinBox->setDecimals(decimals);
priceSpinBox->setDecimals(decimals);
}
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter
ou par MP !