chxavrecentclipspopuplist.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:1k
源码类别:
Symbian
开发平台:
Visual C++
- /************************************************************************
- * chxavrecentclipspopuplist.h
- * ---------------------------
- *
- * Synopsis:
- * Contains the class declaration of CHXAvRecentClipsPopupList. This
- * put up a dialog with the recently played clips.
- *
- *
- *
- * Target:
- * Symbian OS
- *
- *
- * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
- *
- *****************************************************************************/
- #ifndef _chxavrecentclipspopuplist_h_
- #define _chxavrecentclipspopuplist_h_
- // Symbian includes...
- #include <aknpopup.h>
- #include <aknlists.h>
- // Includes from this project...
- #include "chxavurllist.h"
- #include "chxavmisc.h"
- // class CHXAvRecentClipsPopupList
- class CHXAvRecentClipsPopupList
- : public CAknPopupList
- {
- public:
- CHXAvRecentClipsPopupList(TInt& idxSelected);
- virtual ~CHXAvRecentClipsPopupList();
- void ConstructL(CHXAvURLList *recentClips);
- protected:
- // CAknPopupList
- virtual void AttemptExitL(TBool aAccept);
- protected:
- CAknSingleGraphicPopupMenuStyleListBox* m_pListBox;
- TInt& m_idxSelected;
- };
- #endif // _chxavrecentclipspopuplist_h_