diff -r 89d6a7a84779 -r 25a17d01db0c Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/class_c_event_handler.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/class_c_event_handler.html Fri Jan 22 18:26:19 2010 +0000 @@ -0,0 +1,157 @@ + +
+Public Member Functions | |
virtual | ~CEventHandler () |
void | HandlePointerEvent (TPointerEvent &aPointerEvent) |
void | InfoMessage (const TDesC &aMsg) |
void | IssueRequest () |
Static Public Member Functions | |
static CEventHandler * | NewL (RWsSession &aWs) |
Definition at line 140 of file transparent.h.
+CEventHandler::~CEventHandler | +( | ++ | ) | + [virtual] |
+
+Destructor +
Definition at line 58 of file eventhandler.cpp.
+ ++
CEventHandler * CEventHandler::NewL | +( | +RWsSession & | +aWs | +) | + [static] |
+
+Allocates and constructs a CEventHandler object using two phase construction.
aWs | Current window server session |
Definition at line 30 of file eventhandler.cpp.
+ +void CEventHandler::HandlePointerEvent | +( | +TPointerEvent & | +aPointerEvent | +) | ++ |
+Determines the type of pointer event and prints out which button was pressed as an info message.
aPointerEvent | Event determined by RunL() |
Definition at line 103 of file eventhandler.cpp.
+ +void CEventHandler::InfoMessage | +( | +const TDesC & | +aMsg | +) | ++ |
+Displays a message in the system default corner of the screen.
TDesC& | aMsg A descriptor message |
Definition at line 146 of file eventhandler.cpp.
+ +void CEventHandler::IssueRequest | +( | ++ | ) | ++ |
+Indicates that the active object has issued a request and that the request is now outstanding. +
Definition at line 133 of file eventhandler.cpp.
+ ++