Final polisihing for KDE4:
[kdemultimedia.git] / kscd / bwlednum.h
blobcd8a32eba005ab504f464bf1cc1d458e35513b29
1 /*
2 BW_LED_Number a very very primitive LED
4 $Id$
6 Copyright (c) Bernd Johannes Wuebben <wuebben@math.cornell.edu>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 #ifndef BW_LED_NUM_H
24 #define BW_LED_NUM_H
26 #include <QLCDNumber>
27 #include <QMouseEvent>
30 class BW_LED_Number : public QLCDNumber
32 Q_OBJECT
34 public:
36 BW_LED_Number(QWidget *parent = 0);
37 ~BW_LED_Number();
39 signals:
40 void clicked();
42 protected:
43 virtual void mouseReleaseEvent(QMouseEvent *);
47 #endif // BW_LED_NUM_H