application/data/PodcastDialogs.ra
changeset 2 29cda98b007e
equal deleted inserted replaced
1:5f8e5adbbed9 2:29cda98b007e
       
     1 /*
       
     2  * Copyright (c) 2007-2010 Sebastian Brannstrom, Lars Persson, EmbedDev AB
       
     3  *
       
     4  * All rights reserved.
       
     5  * This component and the accompanying materials are made available
       
     6  * under the terms of the License "Eclipse Public License v1.0"
       
     7  * which accompanies this distribution, and is available
       
     8  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     9  *
       
    10  * Initial Contributors:
       
    11  * EmbedDev AB - initial contribution.
       
    12  *
       
    13  * Contributors:
       
    14  *
       
    15  * Description:
       
    16  *
       
    17  */
       
    18 
       
    19 RESOURCE DIALOG r_messagedlg_ok
       
    20 {
       
    21     flags = EAknInformationNoteFlags;
       
    22     buttons = R_AVKON_SOFTKEYS_OK_EMPTY;
       
    23     items =
       
    24     {
       
    25         DLG_LINE
       
    26         {
       
    27             type = EAknCtNote;
       
    28             id = EGeneralNote;
       
    29             control = AVKON_NOTE
       
    30             {
       
    31                 layout = EGeneralLayout;
       
    32                 imagefile = AVKON_ICON_FILE;
       
    33                 imageid = 	EMbmAvkonQgn_note_ok;
       
    34                 imagemask = 	EMbmAvkonQgn_note_ok_mask;
       
    35             };
       
    36         }
       
    37     };
       
    38 }
       
    39 
       
    40 RESOURCE DIALOG r_errordlg_ok
       
    41 {
       
    42     flags = EAknInformationNoteFlags;
       
    43     buttons = R_AVKON_SOFTKEYS_OK_EMPTY;
       
    44     items =
       
    45     {
       
    46         DLG_LINE
       
    47         {
       
    48             type = EAknCtNote;
       
    49             id = EGeneralNote;
       
    50             control = AVKON_NOTE
       
    51             {
       
    52                 layout = EGeneralLayout;
       
    53                 imagefile = AVKON_ICON_FILE;
       
    54                 imageid = 	EMbmAvkonQgn_note_error;
       
    55                 imagemask = 	EMbmAvkonQgn_note_error_mask;
       
    56             };
       
    57         }
       
    58     };
       
    59 }
       
    60 
       
    61 
       
    62 RESOURCE DIALOG r_querydlg
       
    63   {
       
    64   flags = EGeneralQueryFlags;
       
    65   buttons = R_AVKON_SOFTKEYS_YES_NO;
       
    66   items =
       
    67     {
       
    68     DLG_LINE
       
    69       {
       
    70       type = EAknCtQuery;
       
    71       id = EQueryControl;
       
    72       control = AVKON_CONFIRMATION_QUERY
       
    73         {
       
    74         layout = EConfirmationQueryLayout;
       
    75         label = "";
       
    76         };
       
    77       }
       
    78     };
       
    79   }