Hello, WorldThis example brings up the words "Hello, World" moving up and down, and in different colors.
Header file:
/**************************************************************************** ** $Id: $ ** ** Copyright (C) 1992-2000 Trolltech AS. All rights reserved. ** ** This file is part of an example program for Qt. This example ** program may be used, distributed and modified without limitation. ** *****************************************************************************/ #ifndef HELLO_H #define HELLO_H #include <qwidget.h> class Hello : public QWidget { Q_OBJECT public: Hello( const char *text, QWidget *parent=0, const char *name=0 ); signals: void clicked(); protected: void mouseReleaseEvent( QMouseEvent * ); void paintEvent( QPaintEvent * ); private slots: void animate(); private: QString t; int b; }; #endif
Implementation:
/**************************************************************************** ** $Id: $ ** ** Copyright (C) 1992-2000 Trolltech AS. All rights reserved. ** ** This file is part of an example program for Qt. This example ** program may be used, distributed and modified without limitation. ** *****************************************************************************/ #include "hello.h" #include <qpushbutton.h> #include <qtimer.h> #include <qpainter.h> #include <qpixmap.h> /* Constructs a Hello widget. Starts a 40 ms animation timer. */
Main:
/**************************************************************************** ** $Id: $ ** ** Copyright (C) 1992-2000 Trolltech AS. All rights reserved. ** ** This file is part of an example program for Qt. This example ** program may be used, distributed and modified without limitation. ** *****************************************************************************/ #include "hello.h" #include <qapplication.h> /* The program starts here. It parses the command line and builds a message string to be displayed by the Hello widget. */ int main( int argc, char **argv ) { QApplication a(argc,argv); QString s; for ( int i=1; i<argc; i++ ) { s += argv[i]; if ( i<argc-1 ) s += " "; } if ( s.isEmpty() ) s = "Hello, World"; Hello h( s ); #ifndef QT_NO_WIDGET_TOPEXTRA // for Qt/Embedded minimal build h.setCaption( "Qt says hello" ); #endif QObject::connect( &h, SIGNAL(clicked()), &a, SLOT(quit()) ); See also Examples. |
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 3.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 ! |
Copyright © 2000-2012 - www.developpez.com