Fairly large overhaul of the JuK codebase to beat out a lot of the Qt 3 stuff.
[kdemultimedia.git] / kmid / rhythmview.h
blob2c47e32f7065ddc541ea999099a70fcfe5f59bb7
1 /**************************************************************************
3 rhythmview.h - The RhythmView widget
4 Copyright (C) 1998 Antonio Larrosa Jimenez
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 Send comments and bug fixes to larrosa@kde.org
21 or to Antonio Larrosa, Rio Arnoya, 10 5B, 29006 Malaga, Spain
23 ***************************************************************************/
24 #ifndef _rhythmview_h_
25 #define _rhythmview_h_
27 #include <QWidget>
28 //Added by qt3to4:
29 #include <QResizeEvent>
30 #include <kled.h>
32 class RhythmView : public QWidget
34 int num,den;
36 KLed **lamps;
38 public:
39 RhythmView (QWidget *parent, const char *name);
40 ~RhythmView();
42 void setRhythm(int numerator,int denominator);
44 void Beat(int i); // Sets the beat number
46 void Beat(void); // Just increase the beat
48 QSize sizeHint() const;
49 QSizePolicy sizePolicy();
51 private:
52 void resizeEvent(QResizeEvent *);
56 #endif