| Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions |  | 
This example brings up the words "Hello, World" moving up and down, and in different colors.
Header file:
/****************************************************************************
** $Id: qt/hello.h   3.3.8   edited Jan 11 14:37 $
**
** Copyright (C) 1992-2007 Trolltech ASA.  All rights reserved.
**
** This file is part of an example program for TQt.  This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#ifndef HELLO_H
#define HELLO_H
#include <ntqwidget.h>
class Hello : public TQWidget
{
    TQ_OBJECT
public:
    Hello( const char *text, TQWidget *parent=0, const char *name=0 );
signals:
    void clicked();
protected:
    void mouseReleaseEvent( TQMouseEvent * );
    void paintEvent( TQPaintEvent * );
private slots:
    void animate();
private:
    TQString t;
    int     b;
};
#endif
Implementation:
/****************************************************************************
** $Id: qt/hello.cpp   3.3.8   edited Jan 11 14:37 $
**
** Copyright (C) 1992-2007 Trolltech ASA.  All rights reserved.
**
** This file is part of an example program for TQt.  This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#include "hello.h"
#include <ntqpushbutton.h>
#include <ntqtimer.h>
#include <ntqpainter.h>
#include <ntqpixmap.h>
/*
  Constructs a Hello widget. Starts a 40 ms animation timer.
*/
Hello::Hello( const char *text, TQWidget *parent, const char *name )
    : TQWidget(parent,name), t(text), b(0)
{
    TQTimer *timer = new TQTimer(this);
    connect( timer, TQ_SIGNAL(timeout()), TQ_SLOT(animate()) );
    timer->start( 40 );
    resize( 260, 130 );
}
/*
  This private slot is called each time the timer fires.
*/
void Hello::animate()
{
    b = (b + 1) & 15;
    repaint( FALSE );
}
/*
  Handles mouse button release events for the Hello widget.
  We emit the clicked() signal when the mouse is released inside
  the widget.
*/
void Hello::mouseReleaseEvent( TQMouseEvent *e )
{
    if ( rect().contains( e->pos() ) )
        emit clicked();
}
/*
  Handles paint events for the Hello widget.
  Flicker-free update. The text is first drawn in the pixmap and the
  pixmap is then blt'ed to the screen.
*/
void Hello::paintEvent( TQPaintEvent * )
{
    static int sin_tbl[16] = {
        0, 38, 71, 92, 100, 92, 71, 38, 0, -38, -71, -92, -100, -92, -71, -38};
    if ( t.isEmpty() )
        return;
    // 1: Compute some sizes, positions etc.
    TQFontMetrics fm = fontMetrics();
    int w = fm.width(t) + 20;
    int h = fm.height() * 2;
    int pmx = width()/2 - w/2;
    int pmy = height()/2 - h/2;
    // 2: Create the pixmap and fill it with the widget's background
    TQPixmap pm( w, h );
    pm.fill( this, pmx, pmy );
    // 3: Paint the pixmap. Cool wave effect
    TQPainter p;
    int x = 10;
    int y = h/2 + fm.descent();
    int i = 0;
    p.begin( &pm );
    p.setFont( font() );
    while ( !t[i].isNull() ) {
        int i16 = (b+i) & 15;
        p.setPen( TQColor((15-i16)*16,255,255,TQColor::Hsv) );
        p.drawText( x, y-sin_tbl[i16]*h/800, t.mid(i,1), 1 );
        x += fm.width( t[i] );
        i++;
    }
    p.end();
    // 4: Copy the pixmap to the Hello widget
    bitBlt( this, pmx, pmy, &pm );
}
Main:
/****************************************************************************
** $Id: qt/main.cpp   3.3.8   edited Jan 11 14:37 $
**
** Copyright (C) 1992-2007 Trolltech ASA.  All rights reserved.
**
** This file is part of an example program for TQt.  This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#include "hello.h"
#include <ntqapplication.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 )
{
    TQApplication a(argc,argv);
    TQString 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 TQT_NO_WIDGET_TOPEXTRA   // for TQt/Embedded minimal build
    h.setCaption( "TQt says hello" );
#endif
    TQObject::connect( &h, TQ_SIGNAL(clicked()), &a, TQ_SLOT(quit()) );
    h.setFont( TQFont("times",32,TQFont::Bold) );         // default font
    h.setBackgroundColor( TQt::white );                  // default bg color
    a.setMainWidget( &h );
    h.show();
    return a.exec();
}
See also Examples.
| Copyright © 2007 Trolltech | Trademarks | TQt 3.3.8 |