Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
chxavfileview.h
Package: helix.src.0812.rar [view]
Upload User: zhongxx05
Upload Date: 2007-06-06
Package Size: 33641k
Code Size: 2k
Category:
Symbian
Development Platform:
C/C++
- /************************************************************************
- * chxavfileview.h
- * ---------------
- *
- * Synopsis:
- * Contains the declaration of the CHXAvFileView class. This class
- * is the object that controls the file view in the player and any
- * controls used within it.
- *
- * Target:
- * Symbian OS
- *
- *
- * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
- *
- ************************************************************************/
- #ifndef _chxavfileview_h_
- #define _chxavfileview_h_
- #include <aknview.h>
- #include <aknconsts.h>
- #include <akntitle.h>
- #include <aknnavide.h>
- #include <akncontext.h>
- #include "hxlist.h"
- #include "chxavfileviewwindow.h"
- #include "chxavviewbase.h"
- #include "chxavrefptr.h"
- class CHXAvPlayerUI;
- class CAknTitlePane;
- // CHXAvFileView
- class CHXAvFileView
- : public CHXAvViewBase
- {
- public:
- friend class CHXAvFileViewWindow;
- public:
- CHXAvFileView(TInt idxView, CHXAvPlayerUI *playerUI);
- virtual ~CHXAvFileView();
- virtual void ConstructL();
- public:
- // CHXAvAppViewBase
- void UpdateViewStateL();
- CCoeControl* CreateViewWindowForActivatingViewL();
- void FinishViewDeactivateL();
- private:
- void UpdateMenuBar();
- CHXAvFileViewWindowPtr m_spWindow;
- refptr<CHXAvFileViewPageInfoVector> m_spPageInfo;
- void AppendPageInfoL();
- UINT32 m_idxInitPage;
- void HandleCommandL(TInt command);
- // CAknView and derived...
- void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);
- // misc implementation
- void InitMainMenuPaneL(CEikMenuPane* pPane);
- void InitMarkMenuPaneL(CEikMenuPane* pPane);
- void InitOpenMenuPaneL(CEikMenuPane* pPane);
- // send ui
- refptr<CSendAppUi> m_spSendAppUi;
- };
- #endif // _chxavfileview_h_