00001 #ifndef MINIPLAYER_H_ 00002 #define MINIPLAYER_H_ 00003 00004 #include <mythscreentype.h> 00005 00006 #include "musiccommon.h" 00007 00008 class QTimer; 00009 00010 class MPUBLIC MiniPlayer : public MusicCommon 00011 { 00012 Q_OBJECT 00013 00014 public: 00015 MiniPlayer(MythScreenStack *parent); 00016 ~MiniPlayer(); 00017 00018 bool Create(void); 00019 bool keyPressEvent(QKeyEvent *); 00020 00021 public slots: 00022 void timerTimeout(void); 00023 00024 private: 00025 QTimer *m_displayTimer; 00026 }; 00027 00028 #endif