Fairly large overhaul of the JuK codebase to beat out a lot of the Qt 3 stuff.
[kdemultimedia.git] / kmid / channel3d.h
blob2ef069ac48f89193e41ff0d707a0d8acebb7598c
1 /**************************************************************************
3 channel3d.h - KMidChannel3D widget, a Channel widget with 3D look
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 ***************************************************************************/
25 #ifndef KMIDCHANNEL3D_H
26 #define KMIDCHANNEL3D_H
28 #include "channel.h"
30 class KMidChannel3D : public KMidChannel
32 public:
33 KMidChannel3D(int chn,QWidget *parent);
36 virtual void drawDo (QPainter *qpaint,int x,int p);
37 virtual void drawDo__ (QPainter *qpaint,int x,int p);
38 virtual void drawRe (QPainter *qpaint,int x,int p);
39 virtual void drawRe__ (QPainter *qpaint,int x,int p);
40 virtual void drawMi (QPainter *qpaint,int x,int p);
41 virtual void drawFa (QPainter *qpaint,int x,int p);
42 virtual void drawFa__ (QPainter *qpaint,int x,int p);
43 virtual void drawSol (QPainter *qpaint,int x,int p);
44 virtual void drawSol__(QPainter *qpaint,int x,int p);
45 virtual void drawLa (QPainter *qpaint,int x,int p);
46 virtual void drawLa__ (QPainter *qpaint,int x,int p);
47 virtual void drawSi (QPainter *qpaint,int x,int p);
52 #endif