SVN_SILENT made messages (.desktop file)
[kdegames.git] / bovo / gui / view.h
blob998bb3fc618936a7c8449f4703e46bd24b681493
1 /*******************************************************************
3 * This file is part of the KDE project "Bovo"
5 * Bovo is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2, or (at your option)
8 * any later version.
10 * Bovo is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with Bovo; see the file COPYING. If not, write to
17 * the Free Software Foundation, 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
20 ********************************************************************/
22 #ifndef __VIEW_H__
23 #define __VIEW_H__
25 #include <QGraphicsView>
27 namespace gui {
29 class Scene;
30 class bgColor;
32 class View : public QGraphicsView
34 public:
35 View(Scene* scene, const QColor& bgColor, QWidget *parent);
37 private:
38 virtual void resizeEvent( QResizeEvent* );
39 virtual QSize sizeHint() const;
41 Scene* m_scene;
44 } /* namespace gui */
46 #endif /* __VIEW_H__ */