You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.0 KiB
C++
63 lines
2.0 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2004, 2005 Andi Peredri *
|
|
* andi@ukr.net *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License version 2 *
|
|
* as published by the Free Software Foundation (see COPYING) *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
***************************************************************************/
|
|
|
|
#ifndef CELL_H
|
|
#define CELL_H
|
|
|
|
#include <tqpixmap.h>
|
|
#include <tqwidget.h>
|
|
|
|
class Cell : public TQWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum Dirs { Free = 0, U = 1, R = 2, D = 4, L = 8, None = 16 };
|
|
Cell(TQWidget* parent, int i);
|
|
int index() const;
|
|
void rotate(int a);
|
|
void setDirs(Dirs d);
|
|
void setRoot(bool b);
|
|
void setLight(int l);
|
|
void setConnected(bool b);
|
|
void setLocked( bool newlocked = true );
|
|
bool isConnected() const;
|
|
bool isRotated() const;
|
|
bool isLocked() const;
|
|
Dirs dirs() const;
|
|
static void initPixmaps();
|
|
signals:
|
|
void lClicked(int);
|
|
void rClicked(int);
|
|
void mClicked(int);
|
|
protected:
|
|
virtual void paintEvent(TQPaintEvent*);
|
|
virtual void mousePressEvent(TQMouseEvent*);
|
|
private:
|
|
typedef TQMap<int, TQPixmap*> PixmapMap;
|
|
static PixmapMap connectedpixmap;
|
|
static PixmapMap disconnectedpixmap;
|
|
int angle;
|
|
int light;
|
|
int iindex;
|
|
bool connected;
|
|
bool changed;
|
|
bool root;
|
|
bool locked;
|
|
Dirs ddirs;
|
|
TQPixmap pixmap;
|
|
};
|
|
|
|
#endif
|