#ifndef _QTDRUM_H_
#define _QTDRUM_H_
#include "qtEditor.h"
class KbPart;
/**
* This qt class presents the contents of a part in a drum presentation
* @short Qt Drum Class
* @author Jan Wuerthner
* @version 0.95
*/
class QtDrum : public QtEditor
{
Q_OBJECT
private:
int wid;
QString help;
int beats;
int xLeft;
int xRight;
KbNote * note;
int xx;
int yy;
int showY;
int showY_old;
QPixmap img[8];
int x;
int y;
public:
QtDrum(KbPart * kbpart);
public slots:
void paintEvent( QPaintEvent * );
void mousePressEvent( QMouseEvent * );
void mouseMoveEvent( QMouseEvent * );
void mouseReleaseEvent( QMouseEvent * );
};
#endif
Documentation generated by wuerthne@clouseau on Sat Feb 20 16:41:13 MST 1999