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
chxavstringutils.h
Package: 142_61_thumb_advanced.rar [view]
Upload User: dangjiwu
Upload Date: 2013-07-19
Package Size: 42019k
Code Size: 2k
Category:
Symbian
Development Platform:
Visual C++
- /************************************************************************
- * chxavstringutils.h
- * ------------------
- *
- * Synopsis:
- *
- *
- * Target:
- * Symbian OS
- *
- *
- * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
- *
- *****************************************************************************/
- #ifndef _chxavstringutils_h_
- #define _chxavstringutils_h_
- // Symbian includes...
- #include <aknpopup.h>
- #include <akntitle.h>
- #include <eikenv.h>
- #include <coemain.h>
- // Helix includes...
- #include "hxassert.h"
- #include "hxstring.h"
- #include "hlxosstr.h"
- #include "hxprefs.h"
- namespace CHXAvStringUtils
- {
- void GetTruncatedDisplayTextL(const TDesC& textIn, const CFont* pFont, TInt cxDisplay, HBufC*& pTextOut, bool bUseEllipsis);
- void StringToDes(const CHXString& in, TDes& out);
- void DesToString(const TDesC& in, CHXString& out);
- CHXString DescToString(const TDesC& desc);
- HBufC* StringToHBuf(const CHXString& s);
- void Replace(TPtr& ptr, char oldChar, char newChar);
- HBufC* AllocTextL(const CHXString& str);
- HBufC* AllocTextL(const TDesC& one, const TDesC& two = KNullDesC, const TDesC& three = KNullDesC);
- // allocating formatted resource text
- HBufC* AllocResFormatTextL(TInt resId, TInt arg);
- HBufC* AllocResFormatTextL(TInt resId, double arg);
- HBufC* AllocResFormatTextL(TInt resId, const TDesC& desc);
- HBufC* AllocResTextL(TInt resId);
- HBufC* AllocFormatTextL(const TDesC& formatString, TInt arg);
- HBufC* AllocFormatTextHexArgL(const TDesC& formatString, TUint hexArg);
- }
- #endif // _chxavstringutils_h_