diff -r 43e37759235e -r 51a74ef9ed63 Symbian3/SDK/Source/GUID-5578DF32-65ED-47F9-8A10-7538206AC473.dita --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Symbian3/SDK/Source/GUID-5578DF32-65ED-47F9-8A10-7538206AC473.dita Wed Mar 31 11:11:55 2010 +0100 @@ -0,0 +1,30 @@ + + + + + +Resources +

Using a dialogs as the main view will usually require use of the +entire available client rectangle. It will also often be a Multipage dialogs.

+

The following example has both of these features:

+RESOURCE DIALOG r_dlgapp_main_dialog + { + flags = EEikDialogFlagNoDrag | EEikDialogFlagNoTitleBar | + EEikDialogFlagFillAppClientRect | + EEikDialogFlagCbaButtons | + EEikDialogFlagModeless; + buttons = r_dlgapp_softkeys_options_home; + pages = r_dlgapp_main_pages; + } + +

The modality of the dialog is set to modeless with the EEikDialogFlagModeless flag. +Further flags are set to fill the client rectangle, suppress the status pane, +and use the CBA buttons +(softkeys).

+
\ No newline at end of file