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
39
src/ShadedDisplay.h
Normal file
39
src/ShadedDisplay.h
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
#ifndef __SHADEDDISPLAY_H__
|
||||
#define __SHADEDDISPLAY_H__
|
||||
|
||||
class ShadedDisplay;
|
||||
|
||||
#include <xmmsclient/xmmsclient++.h>
|
||||
#include "Display.h"
|
||||
|
||||
class MainWindow;
|
||||
class Button;
|
||||
class SmallNumberDisplay;
|
||||
class TextScroller;
|
||||
|
||||
class ShadedDisplay : public SkinDisplay
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
ShadedDisplay (QWidget *parent);
|
||||
~ShadedDisplay () { }
|
||||
|
||||
SmallNumberDisplay *m_number;
|
||||
SmallNumberDisplay *m_number2;
|
||||
TextScroller *m_title;
|
||||
|
||||
private:
|
||||
Button *m_prev;
|
||||
Button *m_play;
|
||||
Button *m_pause;
|
||||
Button *m_stop;
|
||||
Button *m_next;
|
||||
Button *m_eject;
|
||||
|
||||
public slots:
|
||||
void setStatus (Xmms::Playback::Status status);
|
||||
void setPlaytime (uint32_t time);
|
||||
void setMediainfo (const Xmms::PropDict &info);
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue