Home · All Classes · Main Classes · Annotated · Grouped Classes · Functions

cannonfield.h Example File
tutorial/t13/cannonfield.h

    /****************************************************************
    **
    ** Definition of CannonField class, Qt tutorial 13
    **
    ****************************************************************/

    #ifndef CANNON_H
    #define CANNON_H

    #include <QWidget>

    class QTimer;

    class CannonField : public QWidget
    {
        Q_OBJECT

    public:
        CannonField(QWidget *parent = 0);

        int angle() const { return ang; }
        int force() const { return f; }
        bool gameOver() const { return gameEnded; }
        bool isShooting() const;

    public slots:
        void setAngle(int angle);
        void setForce(int force);
        void shoot();
        void newTarget();
        void setGameOver();
        void restartGame();

    private slots:
        void moveShot();

    signals:
        void hit();
        void missed();
        void angleChanged(int newAngle);
        void forceChanged(int newForce);
        void canShoot(bool can);

    protected:
        void paintEvent(QPaintEvent *event);

    private:
        void paintShot(QPainter &painter);
        void paintTarget(QPainter &painter);
        void paintCannon(QPainter &painter);
        QRect cannonRect() const;
        QRect shotRect() const;
        QRect targetRect() const;

        int ang;
        int f;

        int timerCount;
        QTimer *autoShootTimer;
        float shoot_ang;
        float shoot_f;

        QPoint target;

        bool gameEnded;
    };

    #endif // CANNON_H


Copyright © 2005 Trolltech Trademarks
Qt 4.0.0-b2