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
chxavinfolist.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++
- /*****************************************************************************
- * chxavinfolist.h
- * ---------------
- *
- * Synopsis:
- * Represents a list of descriptor text formatted for display in a Series60-style
- * info list layout (which uses CAknSingleHeadingPopupMenuStyleListBox). If long
- * fields are added they are broken up so they wrap nicely.
- *
- *
- *
- * Target:
- * Symbian OS
- *
- *
- * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
- *
- *****************************************************************************/
- #ifndef _chxavinfolist_h_
- #define _chxavinfolist_h_
- // Symbian includes...
- #include <e32base.h>
- #include <badesca.h>
- #include <bamdesca.h>
- #include <coeutils.h>
- #include <aknenv.h>
- // Includes from this project...
- #include "chxavrefptr.h"
- // class CHXAvInfoList
- class CHXAvInfoList
- : public CBase
- , public MDesCArray
- {
- public:
- enum AddLineFlag
- {
- skipEmptyLine,
- includeEmptyLine
- };
- // ctor and dtor
- CHXAvInfoList();
- virtual ~CHXAvInfoList();
- void ConstructL();
- void AddLineL(const TDesC& caption, const TDesC& fieldText, AddLineFlag flag = skipEmptyLine);
- void AddLineL(TInt idCaptionText, const TDesC& fieldText, AddLineFlag flag = skipEmptyLine);
- void AddLinesL(const MDesCArray* pCaptions, const MDesCArray* pFields, AddLineFlag flag = skipEmptyLine);
- // MDesCArray
- TInt MdcaCount() const;
- TPtrC MdcaPoint(TInt aIndex) const;
- public:
- // methods
- private:
- // implementation
- const CFont* m_pFont; // not owned
- refptr<CDesCArray> m_pLabels;
- refptr<CDesCArray> m_pFields;
- refptr<HBufC> m_pbuff;
- };
- #endif // _chxavinfolist_h_