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
chxavselectsettingsviewwindow.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++
- /************************************************************************
- * chxavselectsettingsviewwindow.h
- * -------------------------------
- *
- * Synopsis:
- * Window for the CHXAvSelectSettingsView view.
- *
- *
- * Target:
- * Symbian OS
- *
- *
- * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
- *
- ************************************************************************/
- #ifndef _chxavselectsettingsviewwindow_h_
- #define _chxavselectsettingsviewwindow_h_
- // Symbian includes...
- #include <eiklbo.h> // MEikListBoxObserver
- #include <aknlists.h>
- // Includes fromt this project...
- #include "chxbody.h"
- #include "chxsmartptr.h"
- #include "chxmakesmartptr.h"
- #include "chxavrefptr.h"
- // forward decl
- class CHXAvSelectSettingsView;
- // class avSelectSettingsViewWindow
- class CHXAvSelectSettingsViewWindow
- : public CCoeControl
- , public MEikListBoxObserver
- , public CHXBody
- {
- public:
- // ctor and dtor
- CHXAvSelectSettingsViewWindow(CHXAvSelectSettingsView* pView);
- virtual ~CHXAvSelectSettingsViewWindow();
- void ConstructL(const TRect& rc, TInt idxInit = 0);
- void UpdateTopAndBottomL();
- private:
- // disallow assignment and copy
- CHXAvSelectSettingsViewWindow(const CHXAvSelectSettingsViewWindow& rhs);
- CHXAvSelectSettingsViewWindow& operator=(const CHXAvSelectSettingsViewWindow& rhs);
- public:
- // methods
- // CCoeControl
- CCoeControl* ComponentControl( TInt aIndex ) const;
- TInt CountComponentControls() const;
- void SizeChanged();
- void GetHelpContext(TCoeHelpContext& aContext) const;
- TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
- // MEikListBoxObserver
- void HandleListBoxEventL(CEikListBox* /*aListBox*/,TListBoxEvent aEventType);
- TInt GetCurrentSelectionIndex() const;
- private:
- // implementation
- void ShowMainSelectionListBoxL(TInt idxInit);
- void SetMainSelectionListBoxIconsL();
- CDesCArrayFlat* AllocListItemsL() const;
- void AddItemHelperL(CDesCArrayFlat* pItems, TInt idxIcon, TInt resId) const;
- private:
- // data
- refptr<CAknSingleLargeStyleListBox> m_spCategoryListBox;
- CHXAvSelectSettingsView* m_wpView;
- };
- typedef CHXSmartPtr<CHXAvSelectSettingsViewWindow> CHXAvSelectSettingsViewWindowPtr;
- #endif // _chxavselectsettingsviewwindow_h_