00001 #ifndef TVPLAYWIN_H_ 00002 #define TVPLAYWIN_H_ 00003 00004 #include "mythscreentype.h" 00005 #include "mythgesture.h" 00006 00007 class MythUIProgressBar; 00008 00012 class TvPlayWindow : public MythScreenType 00013 { 00014 Q_OBJECT 00015 00016 public: 00017 TvPlayWindow(MythScreenStack *parent, const char *name); 00018 ~TvPlayWindow(); 00019 00020 virtual void gestureEvent(MythUIType *, MythGestureEvent *); 00021 virtual bool Create(void); 00022 00023 void UpdateProgress(void); 00024 00025 protected: 00026 MythUIProgressBar *m_progressBar; 00027 int m_progress; 00028 }; 00029 00030 #endif