00001 #ifndef PLAYLISTVIEW_H_ 00002 #define PLAYLISTVIEW_H_ 00003 00004 // qt 00005 #include <QEvent> 00006 #include <QVector> 00007 00008 // mythui 00009 #include <mythscreentype.h> 00010 00011 // mythmusic 00012 #include <musiccommon.h> 00013 00014 class MythUIButtonList; 00015 class MythUIText; 00016 00017 class PlaylistView : public MusicCommon 00018 { 00019 Q_OBJECT 00020 public: 00021 PlaylistView(MythScreenStack *parent); 00022 ~PlaylistView(void); 00023 00024 bool Create(void); 00025 bool keyPressEvent(QKeyEvent *); 00026 00027 protected: 00028 void customEvent(QEvent *event); 00029 00030 private: 00031 // void showMenu(void); 00032 }; 00033 00034 #endif