kblackbox
kbbgraphicsitemballrepository.h
Go to the documentation of this file.00001 // 00002 // KBlackBox 00003 // 00004 // A simple game inspired by an emacs module 00005 // 00006 /*************************************************************************** 00007 * Copyright (c) 2007, Nicolas Roffet * 00008 * nicolas-kde@roffet.com * 00009 * * 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 * This program is distributed in the hope that it will be useful, * 00017 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00018 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00019 * GNU General Public License for more details. * 00020 * * 00021 * You should have received a copy of the GNU General Public License * 00022 * along with this program; if not, write to the * 00023 * Free Software Foundation, Inc., * 00024 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * 00025 ***************************************************************************/ 00026 00027 #ifndef KBBGRAPHICSITEMBALLREPOSITORY_H 00028 #define KBBGRAPHICSITEMBALLREPOSITORY_H 00029 00030 00031 00032 #include <krandomsequence.h> 00033 00034 00035 #include "kbbgraphicsitem.h" 00036 class KBBGraphicsItemSet; 00037 class KBBScalableGraphicWidget; 00038 class KBBThemeManager; 00039 00040 00041 00045 class KBBGraphicsItemBallRepository : public KBBGraphicsItem 00046 { 00047 Q_OBJECT 00048 00049 00050 public: 00051 KBBGraphicsItemBallRepository(KBBScalableGraphicWidget* parent, KBBThemeManager* themeManager); 00052 ~KBBGraphicsItemBallRepository(); 00053 00054 00055 int ballToTake() const; 00056 void fillBallsOutside(int placed); 00057 void newGame(int columns, int rows, int balls); 00058 void removeBall(int outsidePosition); 00059 00060 00061 private: 00062 KBBGraphicsItemSet* m_ballsOutside; 00063 KBBScalableGraphicWidget* m_parent; 00064 KBBThemeManager* m_themeManager; 00065 00066 KRandomSequence m_random; 00067 00068 int m_columns; 00069 int m_rows; 00070 int m_width; 00071 int m_height; 00072 int m_ballToPlace; 00073 }; 00074 00075 #endif // KBBGRAPHICSITEMBALLREPOSITORY_H
KDE 4.2 API Reference