Change playlist to use Esperanza's playlistmodel
This commit is contained in:
parent
85cf6a8d1c
commit
503385309b
96 changed files with 2010 additions and 412 deletions
32
src/TimeDisplay.h
Normal file
32
src/TimeDisplay.h
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#ifndef __TIMEDISPLAY_H__
|
||||
#define __TIMEDISPLAY_H__
|
||||
|
||||
class TimeDisplay;
|
||||
|
||||
#include "PixWidget.h"
|
||||
#include "NumberDisplay.h"
|
||||
|
||||
class TimeDisplay : public PixWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
TimeDisplay (QWidget *parent, int time);
|
||||
~TimeDisplay ();
|
||||
void setTime (int);
|
||||
void drawMinus();
|
||||
public slots:
|
||||
void setPixmaps (Skin *skin);
|
||||
signals:
|
||||
void clicked(void);
|
||||
|
||||
protected:
|
||||
void mousePressEvent (QMouseEvent *event);
|
||||
void mouseReleaseEvent (QMouseEvent *event);
|
||||
int m_time;
|
||||
NumberDisplay *m_number_min;
|
||||
NumberDisplay *m_number_sec;
|
||||
|
||||
uint m_w;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue