kblackbox
kbbgraphicsitemblackbox.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) 1999-2000, Robert Cimrman * 00008 * cimrman3@students.zcu.cz * 00009 * * 00010 * Copyright (c) 2007, Nicolas Roffet * 00011 * nicolas-kde@roffet.com * 00012 * * 00013 * * 00014 * This program is free software; you can redistribute it and/or modify * 00015 * it under the terms of the GNU General Public License as published by * 00016 * the Free Software Foundation; either version 2 of the License, or * 00017 * (at your option) any later version. * 00018 * * 00019 * This program is distributed in the hope that it will be useful, * 00020 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00021 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00022 * GNU General Public License for more details. * 00023 * * 00024 * You should have received a copy of the GNU General Public License * 00025 * along with this program; if not, write to the * 00026 * Free Software Foundation, Inc., * 00027 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * 00028 ***************************************************************************/ 00029 00030 00031 00032 #ifndef KBBGRAPHICSITEMBLACKBOX_H 00033 #define KBBGRAPHICSITEMBLACKBOX_H 00034 00035 00036 class QGraphicsLineItem; 00037 #include <QGraphicsRectItem> 00038 class QGraphicsScene; 00039 class QGraphicsView; 00040 #include <QList> 00041 #include <QPen> 00042 00043 00044 class KBBGraphicsItem; 00045 #include "kbbscalablegraphicwidget.h" 00046 00047 00048 00052 class KBBGraphicsItemBlackBox : public QGraphicsRectItem 00053 { 00054 public: 00058 KBBGraphicsItemBlackBox(QGraphicsView* parent, QGraphicsScene* scene, KBBThemeManager* themeManager); 00059 00060 00064 void setKBBScalableGraphicWidget(KBBScalableGraphicWidget* w); 00065 00071 void setSize(const int columns, const int rows); 00072 00073 00074 private: 00075 void mousePressEvent (QGraphicsSceneMouseEvent* event); 00076 00077 KBBGraphicsItem* m_background; 00078 int m_columns; 00079 QList<QGraphicsLineItem*> m_lines; 00080 QPen m_penLines; 00081 int m_rows; 00082 QGraphicsScene* m_scene; 00083 KBBScalableGraphicWidget* m_widget; 00084 int m_zValueLines; 00085 }; 00086 00087 #endif // KBBGRAPHICSITEMBLACKBOX_H
KDE 4.0 API Reference