chxavrecentclipspopuplist.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:1k
源码类别:

Symbian

开发平台:

Visual C++

  1. /************************************************************************
  2.  * chxavrecentclipspopuplist.h
  3.  * ---------------------------
  4.  *
  5.  * Synopsis:
  6.  * Contains the class declaration of CHXAvRecentClipsPopupList.  This 
  7.  * put up a dialog with the recently played clips.
  8.  *
  9.  *
  10.  *
  11.  * Target:
  12.  * Symbian OS
  13.  *
  14.  *
  15.  * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
  16.  *
  17.  *****************************************************************************/
  18. #ifndef _chxavrecentclipspopuplist_h_
  19. #define _chxavrecentclipspopuplist_h_
  20. // Symbian includes...
  21. #include <aknpopup.h>
  22. #include <aknlists.h> 
  23. // Includes from this project...
  24. #include "chxavurllist.h"
  25. #include "chxavmisc.h" 
  26. // class CHXAvRecentClipsPopupList
  27. class CHXAvRecentClipsPopupList
  28. : public CAknPopupList 
  29. {
  30. public:
  31.     CHXAvRecentClipsPopupList(TInt& idxSelected);
  32.     virtual ~CHXAvRecentClipsPopupList();
  33.     void ConstructL(CHXAvURLList *recentClips);
  34. protected:
  35.     // CAknPopupList
  36.     virtual void AttemptExitL(TBool aAccept);
  37. protected:
  38.     CAknSingleGraphicPopupMenuStyleListBox* m_pListBox;
  39.     TInt& m_idxSelected;
  40. };
  41. #endif // _chxavrecentclipspopuplist_h_