camerauis/cameraapp/generic/data/resource_inc/CamStandby.ra
branchRCL_3
changeset 24 bac7acad7cb3
equal deleted inserted replaced
23:61bc0f252b2b 24:bac7acad7cb3
       
     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 //   
       
    23 //    r_cam_standby_camera_in_use_text
       
    24 //    Text string displayed in standby container
       
    25 //    when camera is in use by another application
       
    26 //
       
    27 //----------------------------------------------------
       
    28 //
       
    29 RESOURCE TBUF r_cam_standby_camera_in_use_text
       
    30      {
       
    31      buf = qtn_lcam_standby_camera_in_use;
       
    32      }
       
    33 
       
    34 //----------------------------------------------------
       
    35 //   
       
    36 //    r_cam_standby_camera_unavailable_text
       
    37 //    Text string displayed in standby container
       
    38 //    when camera hardware failure reported
       
    39 //
       
    40 //----------------------------------------------------
       
    41 //
       
    42 RESOURCE TBUF r_cam_standby_camera_unavailable_text
       
    43      {
       
    44      buf = qtn_lcam_standby_hardware_failure;
       
    45      }
       
    46 
       
    47 //----------------------------------------------------
       
    48 //   
       
    49 //    r_cam_standby_camera_storage_inaccessible
       
    50 //    Text string displayed in standby container
       
    51 //    when all storages are inacessible/not ready
       
    52 //
       
    53 //----------------------------------------------------
       
    54 //
       
    55 RESOURCE TBUF r_cam_standby_camera_storage_inaccessible
       
    56      {
       
    57      buf = qtn_lcam_storage_inaccessible_note;
       
    58      }
       
    59 
       
    60 //----------------------------------------------------
       
    61 //   
       
    62 //    r_cam_standby_camera_insert_mmc
       
    63 //    When a device has no mass memory and memory card is not 
       
    64 //    inserted when opening the camera, the user will get a note
       
    65 //
       
    66 //----------------------------------------------------
       
    67 //
       
    68 RESOURCE TBUF r_cam_standby_camera_insert_mmc
       
    69      {
       
    70      buf = qtn_lcam_insert_mmc_note;
       
    71      }
       
    72 
       
    73 
       
    74 
       
    75 //----------------------------------------------------
       
    76 //   
       
    77 //    r_cam_standby_empty_text
       
    78 //    Text string displayed in standby container
       
    79 //
       
    80 //----------------------------------------------------
       
    81 //
       
    82 RESOURCE TBUF r_cam_standby_empty_text
       
    83      {
       
    84      buf = " ";
       
    85      }     
       
    86 
       
    87 // ---------------------------------------------------------
       
    88 //   
       
    89 //   r_cam_standby_menubar
       
    90 //   Menubar for standby mode
       
    91 //
       
    92 // ---------------------------------------------------------
       
    93 //
       
    94 RESOURCE MENU_BAR r_cam_standby_menubar
       
    95     {
       
    96     titles =
       
    97         {
       
    98         MENU_TITLE
       
    99             {
       
   100             menu_pane = r_cam_standby_menu;
       
   101             }
       
   102         };
       
   103     }
       
   104 
       
   105 // ---------------------------------------------------------
       
   106 //   
       
   107 //   r_cam_standby_menu
       
   108 //   Options menu for standby mode
       
   109 //
       
   110 // ---------------------------------------------------------
       
   111 //
       
   112 RESOURCE MENU_PANE r_cam_standby_menu
       
   113     {
       
   114     items = 
       
   115         {
       
   116         MENU_ITEM
       
   117             {
       
   118             command = ECamCmdExitStandby;
       
   119             txt = qtn_lcam_cmd_continue;
       
   120             },
       
   121         MENU_ITEM
       
   122             {
       
   123             command = EAknCmdHelp;
       
   124             txt = qtn_options_help;
       
   125             },
       
   126         MENU_ITEM
       
   127             {
       
   128             command = ECamCmdInternalExit;
       
   129             txt = qtn_options_exit;
       
   130             }
       
   131         };
       
   132     }
       
   133 
       
   134 //----------------------------------------------------
       
   135 //   
       
   136 //    r_cam_standby_text
       
   137 //    Text string displayed in standby container
       
   138 //
       
   139 //----------------------------------------------------
       
   140 //
       
   141 RESOURCE TBUF r_cam_standby_text
       
   142      {
       
   143      buf = qtn_lcam_standby_timeout_expired;
       
   144      }
       
   145 
       
   146 //----------------------------------------------------
       
   147 //   
       
   148 //    r_cam_standby_camera_disabled_text
       
   149 //    Text string displayed in standby container
       
   150 //
       
   151 //----------------------------------------------------
       
   152 //
       
   153 RESOURCE TBUF r_cam_standby_camera_disabled_text
       
   154      {
       
   155      buf = qtn_camera_disabled_info_note;
       
   156      }
       
   157