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
chxsymsysagentwatcher.cpp
Package: 142_61_thumb_advanced.rar [view]
Upload User: dangjiwu
Upload Date: 2013-07-19
Package Size: 42019k
Code Size: 3k
Category:
Symbian
Development Platform:
Visual C++
- /*============================================================================*
- *
- * (c) 1995-2002 RealNetworks, Inc. Patents pending. All rights reserved.
- *
- *============================================================================*/
- //
- // central repository of information about the state, particularly
- // relating to power and communications, of the Symbian OS phone
- //
- // each event has a UID
- //
- // see "Using the System Agent interface" in docs; also "SACLS.H"
- //
- // e.g., these variables can be queried or watched:
- //
- // KUidNetworkStatus
- // KUidNetworkStrength
- // KUidIrdaStatus
- // KUidCurrentCall
- //
- // *** KUidCurrentCall event types are:
- //
- // ESACallNone,
- // ESACallVoice,
- // ESACallFax,
- // ESACallData,
- // ESACallAlerting,
- // ESACallRinging,
- // ESACallAlternating
- //
- #include "chxsymsysagentwatcher.h"
- #include "hxsym_leaveutil.h"
- #include "chxavutil.h"
- ///////////////////////////////////
- // ctor
- CHXSymSysAgentWatcher::CHXSymSysAgentWatcher()
- {
- }
- ///////////////////////////////////
- // dtor
- CHXSymSysAgentWatcher::~CHXSymSysAgentWatcher()
- {
- StopWatching();
- m_sa.Close();
- }
- ////////////////////////////////////////////////////////
- // event defined in sacls.h
- void CHXSymSysAgentWatcher::ConstructL(const TUid& idEvent, TInt activePriority)
- {
- BaseConstructL(activePriority);
- HXSYM_LEAVE_IF_ERR(m_sa.Connect());
- // type of event we are watching (e.g., phone event)
- m_event.SetUid(idEvent);
- }
- ////////////////////////////////////////////////////////
- //
- void CHXSymSysAgentWatcher::DoCancelRequest(const CHXAvActiveCmplPtr& spActive)
- {
- m_sa.NotifyEventCancel();
- }
- ////////////////////////////////////////////////////////
- // issue request for event notification:
- //
- // when event occurs, use GetSaEvent() to get event info
- //
- void CHXSymSysAgentWatcher::DoIssueRequest(const CHXAvActiveCmplPtr& spActive)
- {
- m_event.SetRequestStatus(spActive->Status());
- // request notification when state of variable changes
- m_sa.NotifyOnEvent(m_event);
- }
- ////////////////////////////////////////////////////////
- // primarily so you can call State() to get current state
- // of a variable after an event occurs
- //
- const TSysAgentEvent& CHXSymSysAgentWatcher::GetSaEvent() const
- {
- return m_event;
- }
- ////////////////////////////////////////////////////////
- // primarily so you can query current values (GetState, GetStates)
- // and possibly set event buffering
- //
- RSystemAgent& CHXSymSysAgentWatcher::GetSa()
- {
- return m_sa;
- }