Change playlist to use Esperanza's playlistmodel

This commit is contained in:
Thomas Frauendorfer 2007-10-07 14:34:53 +02:00
parent 85cf6a8d1c
commit 503385309b
96 changed files with 2010 additions and 412 deletions

34
src/NumberDisplay.h Normal file
View file

@ -0,0 +1,34 @@
#ifndef __NUMBERDISPLAY_H__
#define __NUMBERDISPLAY_H__
class TimeDisplay;
#include "PixWidget.h"
class NumberDisplay : public PixWidget
{
Q_OBJECT
public:
NumberDisplay (QWidget *parent, TimeDisplay *td, uint, uint);
~NumberDisplay ();
void setNumber (uint, uint);
public slots:
void setPixmaps (Skin *skin);
signals:
void clicked(void);
protected:
void mousePressEvent (QMouseEvent *event);
void mouseReleaseEvent (QMouseEvent *event);
int m_w;
int m_startpx;
TimeDisplay *m_td;
uint m_n1;
uint m_n2;
};
#endif