summaryrefslogtreecommitdiffstats
path: root/kasteroids/ledmeter.h
blob: c913350b7cfde077c8e26ffce9813099c9cab61b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
 * 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