summaryrefslogtreecommitdiffstats
path: root/src/widget/wstatuslight.h
blob: aad96ee7fab0f7906f6883bc0299dc11de4a126d (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
/***************************************************************************
                          wstatuslight.h  -  A general purpose status light
                                        for indicating boolean events
                             -------------------
    begin                : Fri Jul 22 2007
    copyright            : (C) 2003 by Tue & Ken Haste Andersen
                           (C) 2007 by John Sully (derived from WVumeter)
    email                : jsully@scs.ryerson.ca
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 WSTATUSLIGHT_H
#define WSTATUSLIGHT_H

#include "wwidget.h"
#include <qpixmap.h>
#include <qstring.h>
//Added by qt3to4:
#include <QPaintEvent>

/**
  *@author John Sully
  */

class WStatusLight : public WWidget  {
   Q_OBJECT
public:
    WStatusLight(QWidget *parent=0);
    ~WStatusLight();
    void setup(QDomNode node);
    void setPixmap(int iState, const QString &filename);
    void setNoPos(int iNoPos);
public slots:
    void setValue(double v);
private:
    void paintEvent(QPaintEvent *);

    /** Current position */
    int m_iPos;
    /** Number of positions associated with this light */
    int m_iNoPos;
    /** Associated pixmaps */
    QPixmap **m_pPixmapSLs;
};

#endif