S60 5th Edition SDK Example Applications Guide |
#include <helloworldbasicdocument.h>
Inheritance diagram for CHelloWorldBasicDocument:
Definition at line 34 of file helloworldbasicdocument.h.
Public Member Functions | |
virtual | ~CHelloWorldBasicDocument () |
CEikAppUi * | CreateAppUiL () |
Static Public Member Functions | |
static CHelloWorldBasicDocument * | NewL (CEikApplication &aApp) |
static CHelloWorldBasicDocument * | NewLC (CEikApplication &aApp) |
Private Member Functions | |
void | ConstructL () |
CHelloWorldBasicDocument (CEikApplication &aApp) |
|
~CHelloWorldBasicDocument Virtual Destructor. Definition at line 77 of file helloworldbasicdocument.cpp.
|
|
CHelloWorldBasicDocument. C++ default constructor.
Definition at line 66 of file helloworldbasicdocument.cpp. Referenced by NewLC().
|
|
NewL. Two-phased constructor. Construct a CHelloWorldBasicDocument for the AVKON application aApp using two phase construction, and return a pointer to the created object.
Definition at line 27 of file helloworldbasicdocument.cpp. References NewLC(). Referenced by CHelloWorldBasicApplication::CreateDocumentL(). 00029 { 00030 CHelloWorldBasicDocument* self = NewLC( aApp ); 00031 CleanupStack::Pop( self ); 00032 return self; 00033 }
|
|
NewLC. Two-phased constructor. Construct a CHelloWorldBasicDocument for the AVKON application aApp using two phase construction, and return a pointer to the created object.
Definition at line 40 of file helloworldbasicdocument.cpp. References CHelloWorldBasicDocument(). Referenced by NewL(). 00042 { 00043 CHelloWorldBasicDocument* self = 00044 new ( ELeave ) CHelloWorldBasicDocument( aApp ); 00045 00046 CleanupStack::PushL( self ); 00047 self->ConstructL(); 00048 return self; 00049 }
|
|
CreateAppUiL From CEikDocument, CreateAppUiL. Create a CHelloWorldBasicAppUi object and return a pointer to it. The object returned is owned by the Uikon framework.
Definition at line 87 of file helloworldbasicdocument.cpp. 00088 { 00089 // Create the application user interface, and return a pointer to it; 00090 // the framework takes ownership of this object 00091 return ( static_cast <CEikAppUi*> ( new ( ELeave ) 00092 CHelloWorldBasicAppUi ) ); 00093 }
|
|
ConstructL 2nd phase constructor. Definition at line 56 of file helloworldbasicdocument.cpp.
|
© Nokia 2009 |