camerauis/cameraapp/generic/data/resource_inc/CamEmbeddedViewMode.ra
changeset 19 d9aefe59d544
parent 3 8b2d6d0384b0
child 21 fa6d9f75d6a6
child 28 3075d9b614e6
equal deleted inserted replaced
3:8b2d6d0384b0 19:d9aefe59d544
     1 /*
       
     2 * Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "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 *
       
    14 * Description:  Resource definitions for the Camera Application*
       
    15 */
       
    16 
       
    17 
       
    18 
       
    19 
       
    20 // ---------------------------------------------------------
       
    21 //   
       
    22 //   r_cam_still_embedded_pre_capture_menubar_viewmode
       
    23 //   Menubar for embedded still pre-capture view
       
    24 //
       
    25 // ---------------------------------------------------------
       
    26 //
       
    27 RESOURCE MENU_BAR r_cam_still_embedded_pre_capture_menubar_viewmode
       
    28     {
       
    29     titles =
       
    30         {
       
    31         MENU_TITLE
       
    32             {
       
    33             menu_pane = r_cam_still_embedded_pre_capture_menu_viewmode;
       
    34             }
       
    35         };
       
    36     }
       
    37 
       
    38 // ---------------------------------------------------------
       
    39 //   
       
    40 //   r_cam_still_embedded_pre_capture_menu_viewmode
       
    41 //   Options menu for still pre capture view in embedded mode
       
    42 //
       
    43 // ---------------------------------------------------------
       
    44 //
       
    45 RESOURCE MENU_PANE r_cam_still_embedded_pre_capture_menu_viewmode
       
    46     {
       
    47     items = 
       
    48         {
       
    49         MENU_ITEM
       
    50             {            
       
    51             command = ECamCmdNewVideo;
       
    52             txt = qtn_lcam_options_video_mode;
       
    53             },
       
    54         MENU_ITEM
       
    55             {
       
    56             command = EAknCmdHelp;
       
    57             txt = qtn_options_help;
       
    58             },
       
    59         MENU_ITEM
       
    60             {
       
    61             command = ECamCmdInternalExit;
       
    62             txt = qtn_lcam_options_back;
       
    63             }
       
    64         };
       
    65     }
       
    66 
       
    67 // ---------------------------------------------------------
       
    68 //   
       
    69 //   r_cam_video_embedded_pre_capture_menubar_viewmode
       
    70 //   Menubar for embedded video pre-capture view
       
    71 //
       
    72 // ---------------------------------------------------------
       
    73 //
       
    74 RESOURCE MENU_BAR r_cam_video_embedded_pre_capture_menubar_viewmode
       
    75     {
       
    76     titles =
       
    77         {
       
    78         MENU_TITLE
       
    79             {
       
    80             menu_pane = r_cam_video_embedded_pre_capture_menu_viewmode;
       
    81             }
       
    82         };
       
    83     }
       
    84 
       
    85 
       
    86 
       
    87 // ---------------------------------------------------------
       
    88 //   
       
    89 //   r_cam_video_embedded_pre_capture_menu_viewmode
       
    90 //   Options menu for video pre capture view in embedded mode
       
    91 //
       
    92 // ---------------------------------------------------------
       
    93 //
       
    94 RESOURCE MENU_PANE r_cam_video_embedded_pre_capture_menu_viewmode
       
    95     {
       
    96     items = 
       
    97         {
       
    98         MENU_ITEM
       
    99             {
       
   100             command = ECamCmdNewPhoto;
       
   101             txt = qtn_lcam_options_photo_mode;
       
   102             },      
       
   103         MENU_ITEM
       
   104             {
       
   105             command = ECamCmdMute;
       
   106             txt = qtn_lcam_options_mute;
       
   107             },
       
   108          MENU_ITEM
       
   109             {
       
   110             command = ECamCmdUnmute;
       
   111             txt = qtn_lcam_options_unmute;
       
   112             },
       
   113         MENU_ITEM
       
   114             {
       
   115             command = EAknCmdHelp;
       
   116             txt = qtn_options_help;
       
   117             },
       
   118         MENU_ITEM
       
   119             {
       
   120             command = ECamCmdInternalExit;
       
   121             txt = qtn_lcam_options_back;
       
   122             }
       
   123         };
       
   124     }
       
   125