Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

window.cpp Example File
widgets/spinboxes/window.cpp

 /****************************************************************************
 **
 ** Copyright (C) 2004-2007 Trolltech ASA. All rights reserved.
 **
 ** This file is part of the example classes of the Qt Toolkit.
 **
 ** This file may be used under the terms of the GNU General Public
 ** License version 2.0 as published by the Free Software Foundation
 ** and appearing in the file LICENSE.GPL included in the packaging of
 ** this file.  Please review the following information to ensure GNU
 ** General Public Licensing requirements will be met:
 ** http://www.trolltech.com/products/qt/opensource.html
 **
 ** If you are unsure which license is appropriate for your use, please
 ** review the following information:
 ** http://www.trolltech.com/products/qt/licensing.html or contact the
 ** sales department at sales@trolltech.com.
 **
 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 **
 ****************************************************************************/

 #include <QtGui>

 #include "window.h"

 Window::Window()
 {
     createSpinBoxes();
     createDateTimeEdits();
     createDoubleSpinBoxes();

     QHBoxLayout *layout = new QHBoxLayout;
     layout->addWidget(spinBoxesGroup);
     layout->addWidget(editsGroup);
     layout->addWidget(doubleSpinBoxesGroup);
     setLayout(layout);

     setWindowTitle(tr("Spin Boxes"));
 }

 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);

     QLabel *zoomLabel = new QLabel(tr("Enter a zoom value between "
         "%1 and %2:").arg(0).arg(1000));
     QSpinBox *zoomSpinBox = new QSpinBox;
     zoomSpinBox->setRange(0, 1000);
     zoomSpinBox->setSingleStep(10);
     zoomSpinBox->setSuffix("%");
     zoomSpinBox->setSpecialValueText(tr("Automatic"));
     zoomSpinBox->setValue(100);

     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);

     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);
 }

 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)));

     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)));

     meetingLabel = new QLabel;
     meetingEdit = new QDateTimeEdit(QDateTime::currentDateTime());

     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");

     connect(formatComboBox, SIGNAL(activated(const QString &)),
             this, SLOT(setFormatString(const QString &)));

     setFormatString(formatComboBox->currentText());

     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);
 }

 void Window::setFormatString(const QString &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 = new QGroupBox(tr("Double precision spinboxes"));

     QLabel *precisionLabel = new QLabel(tr("Number of decimal places "
                                            "to show:"));
     QSpinBox *precisionSpinBox = new QSpinBox;
     precisionSpinBox->setRange(0, 13);
     precisionSpinBox->setValue(2);

     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);

     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);

     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)),
             this, SLOT(changePrecision(int)));

     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);
 }

 void Window::changePrecision(int decimals)
 {
     doubleSpinBox->setDecimals(decimals);
     scaleSpinBox->setDecimals(decimals);
     priceSpinBox->setDecimals(decimals);
 }

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 53
  2. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  3. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  4. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  5. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  6. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
  7. La rubrique Qt a besoin de vous ! 1
Page suivante

Le blog Digia au hasard

Logo

Déploiement d'applications Qt Commercial sur les tablettes Windows 8

Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

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. Qt 4.2
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
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 !
 
 
 
 
Partenaires

Hébergement Web