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
chxavsettingsviewwindow.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++
- /************************************************************************
- * chxavsettingsviewwindow.h
- * -------------------------
- *
- * Synopsis:
- * Contains the declaration of the setting view window.
- * This window entering/altering player settings.
- *
- * Target:
- * Symbian OS
- *
- *
- * (c) 1995-2003 RealNetworks, Inc. Patents pending. All rights reserved.
- *
- ************************************************************************/
- #ifndef _chxavsettingsviewwindow_h_
- #define _chxavsettingsviewwindow_h_
- // Helix includes...
- #include <aknlists.h>
- // Includes from this project...
- #include "chxavrefptr.h"
- #include "chxsmartptr.h"
- #include "comptr.h"
- #include "chxavsettingslist.h"
- // forward decl
- //class CEikColumnListBox;
- //class CAknSearchField;
- //class CEikFormattedCellListBox;
- class CAknNavigationControlContainer;
- class CAknNavigationDecorator;
- class CAknTitlePane;
- class CAknTabGroup;
- class CHXAvSettingsView;
- class CHXLitePrefs;
- // class CHXAvSettingsViewWindow
- class CHXAvSettingsViewWindow
- : public CCoeControl
- , public CHXBody
- {
- public:
- // Construction...
- CHXAvSettingsViewWindow(CHXAvSettingsView* pView);
- ~CHXAvSettingsViewWindow();
- void ConstructL(const TRect& rc, TInt idxInitTab = 0);
- public:
- void EditCurrentItemL();
- void ApplyChangesL();
- void UpdateNaviPaneL();
- void ShowPageL(TInt idxPage);
- TInt GetCurrentPageIndex() const;
- void UpdateTopAndBottomL();
- // CCoeControl
- CCoeControl* ComponentControl( TInt aIndex ) const;
- TInt CountComponentControls() const;
- void SizeChanged();
- TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
- void GetHelpContext(TCoeHelpContext& aContext) const;
- private:
- // implementation helpers
- void CreateTabsL(TInt idxInitTab);
- void CleanUpTabs();
- private:
- // data
- refptr<CHXAvSettingsList> m_spList; // list for active tab
- CAknNavigationControlContainer* m_pNaviPane;
- CAknNavigationDecorator* m_pDecoratedTabGroup;
- CAknTitlePane* m_pTitlePane;
- CAknTabGroup* m_pTabGroup;
- CHXAvSettingsView* m_pView;
- CHXAvSettingsDataPtr m_spData;
- comptr<CHXLitePrefs> m_prefs;
- comptr<IHXCommonClassFactory> m_factory;
- };
- typedef CHXSmartPtr<CHXAvSettingsViewWindow> CHXAvSettingsViewWindowPtr;
- #endif //_chxavsettingsviewwindow_h_