You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/kbattleship/kbattleship/kgridwidget.h

67 lines
2.3 KiB

/***************************************************************************
kgridwidget.h
-------------------
Developers: (c) 2000-2001 Nikolas Zimmermann <wildfox@kde.org>
(c) 2000-2001 Daniel Molkentin <molkentin@kde.org>
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef KGRIDWIDGET_H
#define KGRIDWIDGET_H
#include <tqpixmap.h>
class KGridWidget
{
public:
KGridWidget(TQWidget *parent, bool draw);
~KGridWidget();
void enableGrid() { m_drawGrid = true; }
void disableGrid() { m_drawGrid = false; }
protected:
void cleanBuffer();
void finished();
void setValues(int x, int y, int size);
void drawSquare();
void drawWaterIcon();
void drawDeathBorder();
void drawDeathIcon();
void drawHitIcon();
void drawShipIcon(int type, bool rotate = false, bool hit = false, bool water = false);
void drawShipIcon(int ship, int part, bool rotate = false, bool hit = false);
private:
void cacheImages();
void drawIcon(const TQPixmap &icon, bool hitBlend = false, bool waterBlend = false, bool rotate = false);
TQString findIcon(const TQString &name) const;
bool m_drawGrid;
int m_x, m_y, m_size;
TQPixmap *m_doubleBuffer;
TQPixmap seaPng, waterPng, hitPng, borderPng,deathPng;
TQPixmap ship1p1Png, ship1p1rPng;
TQPixmap ship2p1Png, ship2p1rPng;
TQPixmap ship2p2Png, ship2p2rPng;
TQPixmap ship3p1Png, ship3p1rPng;
TQPixmap ship3p2Png, ship3p2rPng;
TQPixmap ship3p3Png, ship3p3rPng;
TQPixmap ship4p1Png, ship4p1rPng;
TQPixmap ship4p2Png, ship4p2rPng;
TQPixmap ship4p3Png, ship4p3rPng;
TQPixmap ship4p4Png, ship4p4rPng;
TQWidget *m_parent;
};
#endif