Lot of fixes for everything.
This commit is contained in:
parent
bdb2d70683
commit
d356989d5e
18 changed files with 253 additions and 47 deletions
32
ShadedDisplay.h
Normal file
32
ShadedDisplay.h
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#ifndef __SHADEDDISPLAY_H__
|
||||
#define __SHADEDDISPLAY_H__
|
||||
|
||||
class ShadedDisplay;
|
||||
|
||||
#include "MainWindow.h"
|
||||
#include "Display.h"
|
||||
#include "SmallNumberDisplay.h"
|
||||
#include "TextBar.h"
|
||||
#include "Button.h"
|
||||
|
||||
class ShadedDisplay : public SkinDisplay
|
||||
{
|
||||
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;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue