diff -r 48780e181b38 -r 578be2adaf3e Symbian3/PDK/Source/GUID-2BD20EF8-B6B8-4A1B-8B0D-3326B839FD37.dita --- a/Symbian3/PDK/Source/GUID-2BD20EF8-B6B8-4A1B-8B0D-3326B839FD37.dita Tue Jul 20 12:00:49 2010 +0100 +++ b/Symbian3/PDK/Source/GUID-2BD20EF8-B6B8-4A1B-8B0D-3326B839FD37.dita Fri Aug 13 16:47:46 2010 +0100 @@ -1,31 +1,31 @@ - - - - - -Constructing -a dialog -

Constructing and running a dialogs is simple:

-void CDlgappAppUi::ConstructL() - { - BaseConstructL(); - iAppView = new (ELeave) CDlgAppMainView; - iAppView->ExecuteLD(R_DLGAPP_MAIN_DIALOG); // modeless - AddToStackL(iAppView); - } - -

Because the dialog is modeless, CEikDialog::ExecuteLD() returns -immediately after being called. The dialog can (and must) be added to the -control stack with the CCoeAppUi::AddToStackL() method, -because modeless dialogs do not do this for themselves.

-

The application extends the dialog just as it would normally extend -a CCoeControl-derived view in order to achieve the desired -functionality. For more information, see Traditional -Symbian UI application architecture.

+ + + + + +Constructing +a dialog +

Constructing and running a dialogs is simple:

+void CDlgappAppUi::ConstructL() + { + BaseConstructL(); + iAppView = new (ELeave) CDlgAppMainView; + iAppView->ExecuteLD(R_DLGAPP_MAIN_DIALOG); // modeless + AddToStackL(iAppView); + } + +

Because the dialog is modeless, CEikDialog::ExecuteLD() returns +immediately after being called. The dialog can (and must) be added to the +control stack with the CCoeAppUi::AddToStackL() method, +because modeless dialogs do not do this for themselves.

+

The application extends the dialog just as it would normally extend +a CCoeControl-derived view in order to achieve the desired +functionality. For more information, see Traditional +Symbian UI application architecture.

\ No newline at end of file