imageeditor/EditorProvider/data/ImageEditorProviderInternal.rss
changeset 1 edfc90759b9f
equal deleted inserted replaced
0:57d4cdd99204 1:edfc90759b9f
       
     1 /*
       
     2 * Copyright (c) 2010 Ixonos Plc.
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - Initial contribution
       
    11 *
       
    12 * Contributors:
       
    13 * Ixonos Plc
       
    14 *
       
    15 * Description: 
       
    16 * Resource definitions for EditorProvider.
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 
       
    22 #include <Eikon.rh>
       
    23 #include <avkon.rh>
       
    24 #include <AvkonIcons.hrh>
       
    25 #include <avkon.rsg>
       
    26 #include <avkon.mbg>
       
    27 #include <Avkon.loc>
       
    28 #include <AiwCommon.hrh>
       
    29 
       
    30 #include "ImageEditorUids.hrh"
       
    31 #include "ImageEditorProvider.hrh"
       
    32 #include "editorprovider_gen.loc"
       
    33 
       
    34 #include <ImageEditor.loc>
       
    35 
       
    36 NAME EDPR
       
    37 
       
    38 RESOURCE RSS_SIGNATURE { }
       
    39 
       
    40 RESOURCE MENU_PANE r_editorprovider_menu
       
    41 {
       
    42 	items=
       
    43 	{
       
    44         MENU_ITEM 
       
    45 		{ 
       
    46 			command = AIW_SUBMENU_TITLE; 
       
    47 			txt = qtn_sie_options_edit;  
       
    48 		},
       
    49         MENU_ITEM 
       
    50 		{ 
       
    51 			command = EEditorProviderCmdIdEdit; 
       
    52 			txt = qtn_sie_options_edit;  
       
    53 		}
       
    54 	};
       
    55 }
       
    56 
       
    57 RESOURCE MENU_PANE r_jpeg_rotator_menu
       
    58 {
       
    59 	items=
       
    60 	{
       
    61         MENU_ITEM
       
    62 		{
       
    63 			command = AIW_SUBMENU_TITLE;
       
    64 			txt = qtn_sie_options_rotate;
       
    65 		},
       
    66         MENU_ITEM 
       
    67 		{ 
       
    68 			command = EEditorProviderCmdIdRotateLeft; 
       
    69 			txt = qtn_album_cmd_rotate_left;  
       
    70 		},
       
    71         MENU_ITEM 
       
    72 		{ 
       
    73 			command = EEditorProviderCmdIdRotateRight; 
       
    74 			txt = qtn_album_cmd_rotate_right;  
       
    75 		}
       
    76 	};
       
    77 }
       
    78 
       
    79 //----------------------------------------------------
       
    80 //   
       
    81 //    r_provider_progress_dialog
       
    82 //
       
    83 //----------------------------------------------------
       
    84 //
       
    85 RESOURCE DIALOG r_provider_progress_dialog
       
    86 {
       
    87     flags = EAknWaitNoteFlags|EAknProgressNoteFlags;
       
    88     buttons = R_AVKON_SOFTKEYS_CANCEL;
       
    89     items=
       
    90     {
       
    91         DLG_LINE
       
    92         {
       
    93             type = EAknCtNote;
       
    94             id = EGeneralNote;
       
    95             control= AVKON_NOTE
       
    96             {
       
    97                 layout = EProgressLayout;
       
    98                 singular_label = qtn_gen_note_processing;
       
    99             };
       
   100         }
       
   101     };
       
   102 }
       
   103 
       
   104 //----------------------------------------------------
       
   105 //   
       
   106 //    r_provider_wait_dialog
       
   107 //
       
   108 //----------------------------------------------------
       
   109 //
       
   110 RESOURCE DIALOG r_provider_wait_dialog
       
   111 {
       
   112     flags = EAknWaitNoteFlags;
       
   113     buttons = R_AVKON_SOFTKEYS_CANCEL;
       
   114     items=
       
   115     {
       
   116         DLG_LINE
       
   117         {
       
   118             type = EAknCtNote;
       
   119             id = EGeneralNote;
       
   120             control= AVKON_NOTE
       
   121             {
       
   122                 layout = EWaitLayout;
       
   123                 singular_label = qtn_gen_note_processing;
       
   124                 imagefile = AVKON_ICON_FILE;
       
   125                 imageid = EMbmAvkonQgn_note_progress;
       
   126                 imagemask = EMbmAvkonQgn_note_progress_mask;
       
   127                 animation = R_QGN_GRAF_WAIT_BAR_ANIM;
       
   128             };
       
   129         }
       
   130     };
       
   131 }
       
   132 
       
   133 // End of file
       
   134 
       
   135