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/kasteroids/ledmeter.h

56 lines
931 B

/*
* KAsteroids - Copyright (c) Martin R. Jones 1997
*
* Part of the KDE project
*/
#ifndef __LEDMETER_H__
#define __LEDMETER_H__
#include <tqframe.h>
#include <tqptrlist.h>
class KALedMeter : public TQFrame
{
Q_OBJECT
TQ_OBJECT
public:
KALedMeter( TQWidget *parent );
int range() const { return mRange; }
void setRange( int r );
int count() const { return mCount; }
void setCount( int c );
int value () const { return mValue; }
void addColorRange( int pc, const TQColor &c );
public slots:
void setValue( int v );
protected:
virtual void resizeEvent( TQResizeEvent * );
virtual void drawContents( TQPainter * );
void calcColorRanges();
protected:
struct ColorRange
{
int mPc;
int mValue;
TQColor mColor;
};
int mRange;
int mCount;
int mCurrentCount;
int mValue;
TQPtrList<ColorRange> mCRanges;
};
#endif