gameview.h

Go to the documentation of this file.
00001 #ifndef CANVAS_VIEW_H
00002 #define CANVAS_VIEW_H
00003 /*
00004    This file is part of the KDE games lskat program
00005    Copyright (c) 2006 Martin Heni <kde@heni-online.de>
00006 
00007    This library is free software; you can redistribute it and/or
00008    modify it under the terms of the GNU Library General Public
00009    License as published by the Free Software Foundation; either
00010    version 2 of the License, or (at your option) any later version.
00011 
00012    This library is distributed in the hope that it will be useful,
00013    but WITHOUT ANY WARRANTY; without even the implied warranty of
00014    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00015    Library General Public License for more details.
00016 
00017    You should have received a copy of the GNU Library General Public License
00018    along with this library; see the file COPYING.LIB.  If not, write to
00019    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
00020    Boston, MA 02110-1301, USA.
00021 */
00022 
00023 // Qt includes
00024 #include <QWidget>
00025 #include <QPixmap>
00026 #include <QGraphicsView>
00027 #include <QGraphicsScene>
00028 #include <QGraphicsSceneMouseEvent>
00029 #include <QSize>
00030 #include <QPoint>
00031 #include <QHash>
00032 #include <QResizeEvent>
00033 
00034 // Forward declaration
00035 class ThemeManager;
00036 
00041 class GameView : public QGraphicsView
00042 {
00043   Q_OBJECT
00044 
00045   public:
00053     GameView(QSize size, int advancePeriod, QGraphicsScene* scene, ThemeManager* theme, QWidget* parent = 0);
00054 
00055  protected:
00059     void mousePressEvent(QMouseEvent *event);
00060 
00061   public slots:  
00065     void updateAndAdvance();
00066 
00067   signals:
00071     void signalLeftMousePress(QPoint point);
00072 
00073   protected:
00079     void resizeEvent(QResizeEvent* e);
00080 
00084     void paintEvent(QPaintEvent* event);
00085 
00086   private:
00087     // Theme manager
00088     ThemeManager* mTheme;
00089 };
00090 
00091 #endif

Generated on Tue May 1 09:34:40 2007 for LSkat by  doxygen 1.4.6