Nokia N97 SDK Example Applications Guide |
#include <HsWidgetDocument.h>
Inheritance diagram for CHsWidgetDocument:
Definition at line 27 of file HsWidgetDocument.h.
Public Member Functions | |
virtual | ~CHsWidgetDocument () |
CEikAppUi * | CreateAppUiL () |
Static Public Member Functions | |
static CHsWidgetDocument * | NewL (CEikApplication &aApp) |
static CHsWidgetDocument * | NewLC (CEikApplication &aApp) |
Private Member Functions | |
void | ConstructL () |
CHsWidgetDocument (CEikApplication &aApp) |
|
~CHsWidgetDocument Virtual Destructor. Definition at line 68 of file HsWidgetDocument.cpp.
|
|
CHsWidgetDocument. C++ default constructor.
Definition at line 57 of file HsWidgetDocument.cpp. Referenced by NewLC().
|
|
NewL. Two-phased constructor. Construct a CHsWidgetDocument for the AVKON application aApp using two phase construction, and return a pointer to the created object.
Definition at line 21 of file HsWidgetDocument.cpp. References NewLC(). Referenced by CHsWidgetApplication::CreateDocumentL(). 00022 { 00023 CHsWidgetDocument* self = NewLC(aApp); 00024 CleanupStack::Pop(self); 00025 return self; 00026 }
|
|
NewLC. Two-phased constructor. Construct a CHsWidgetDocument for the AVKON application aApp using two phase construction, and return a pointer to the created object.
Definition at line 33 of file HsWidgetDocument.cpp. References CHsWidgetDocument(). Referenced by NewL(). 00034 { 00035 CHsWidgetDocument* self = new ( ELeave ) CHsWidgetDocument( aApp ); 00036 00037 CleanupStack::PushL(self); 00038 self->ConstructL(); 00039 return self; 00040 }
|
|
CreateAppUiL From CEikDocument, CreateAppUiL. Create a CHsWidgetAppUi object and return a pointer to it. The object returned is owned by the Uikon framework.
Definition at line 78 of file HsWidgetDocument.cpp. 00079 { 00080 // Create the application user interface, and return a pointer to it; 00081 // the framework takes ownership of this object 00082 return new ( ELeave )CHsWidgetAppUi; 00083 }
|
|
ConstructL 2nd phase constructor. Definition at line 47 of file HsWidgetDocument.cpp.
|
© Nokia 2009 |