00001 // -*- Mode: c++ -*- 00002 // vim:set sw=4 ts=4 expandtab: 00003 #ifndef _PLAYBACKBOXLISTITEM_H_ 00004 #define _PLAYBACKBOXLISTITEM_H_ 00005 00006 00007 #include "mythuibuttonlist.h" 00008 00009 class PlaybackBox; 00010 class ProgramInfo; 00011 00012 class PlaybackBoxListItem : public MythUIButtonListItem 00013 { 00014 public: 00015 PlaybackBoxListItem(PlaybackBox *parent, MythUIButtonList *lbtype, ProgramInfo *pi); 00016 00017 // virtual void SetToRealButton(MythUIStateType *button, bool selected); 00018 00019 private: 00020 PlaybackBox *pbbox; 00021 bool needs_update; 00022 }; 00023 00024 #endif // _PLAYBACKBOXLISTITEM_H_