camerauis/cameraapp/generic/GsCamcorderPlugin/data/gscamerapluginrsc.rss
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:30:54 +0100
branchRCL_3
changeset 54 bac7acad7cb3
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201033 Kit: 201035

/*
* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). 
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*        Resource file for GS Camera Plug-in
*
*/


//  RESOURCE IDENTIFIER
NAME    DCAM // 4 letter ID

//  INCLUDES

#include <avkon.rsg>
#include <avkon.hrh>
#include <e32keys.h>
#include <eikon.rh>
#include <avkon.loc>
#include <avkon.rh>
#include <bldvariant.hrh>
#include <eikcore.rsg>
#include <eikon.rsg>
#include <data_caging_paths_strings.hrh>
#include <AiwCommon.rh>
#include <appinfo.rh>
#include <badef.rh>
#include <gscommon.rh>
#include <cameraapp.mbg>
#include "GSCamcorderPlugin.hrh"
#include "Cam.hrh"
#include "CamSettings.hrh"
#include "CamSettingsInternal.hrh"
#include "Cam.rh"
#include "CamConstantsCamcorder.hrh"
#include "CamConstantsViewMode.hrh"
#include "CamConstantsPortrait.hrh"
#include <cam.loc>


//  RESOURCE DEFINITIONS 

//----------------------------------------------------
//   
//    
//    Needed or loading the resource fails!
//
//----------------------------------------------------
//
RESOURCE RSS_SIGNATURE
    {
    }

RESOURCE EIK_APP_INFO
    {
    cba = r_cam_softkeys_options_exit;
    }
//----------------------------------------------------
//   
//    r_cam_saving_image_wait_note
//    Wait note shown when saving image after capture
//
//----------------------------------------------------
//
RESOURCE DIALOG r_cam_processing_wait_note
    {
    flags = EAknWaitNoteFlags | EEikDialogFlagNoBackgroundFade;
    buttons = R_AVKON_SOFTKEYS_EMPTY;
    items=
        {
        DLG_LINE
            {
            type = EAknCtNote;
            id = EGenProcessingWaitNote;
            control = AVKON_NOTE 
                {
                layout = EWaitLayout;
                animation = R_QGN_GRAF_WAIT_BAR_ANIM;
                singular_label = qtn_gen_note_processing;
                };
            }
        };
    }
//----------------------------------------------------
//   
//    r_cam_setting_list_view
//    Video and Photo settings view
//
//----------------------------------------------------
//
RESOURCE AVKON_VIEW r_gs_cam_setting_list_view
    {
    menubar = r_gs_cam_settings_menubar;
    cba = r_cam_setting_softkeys_options_back__open;   
    }
    
//----------------------------------------------------
//   
//    r_gs_menubar_open_exit
//    Options menu with 'Open' and 'Exit' items.
//
//----------------------------------------------------
//
RESOURCE MENU_BAR r_gs_menubar_open_exit
    {
    titles =
        {
        MENU_TITLE 
            { 
            menu_pane = r_gs_menu_item_exit;
            },
        MENU_TITLE 
            {
            menu_pane = r_gs_menu_item_open;
            }
        };
    }
    
//----------------------------------------------------
//   
//    r_gs_menubar_change_exit
//    Options menu with 'Change' and 'Exit' items.
//
//----------------------------------------------------
//
RESOURCE MENU_BAR r_gs_menubar_change_exit
    {
    titles =
        {
        MENU_TITLE 
            { 
            menu_pane = r_gs_menu_item_exit;
            },
        MENU_TITLE 
            {
            menu_pane = r_gs_menu_item_change;
            }
        };
    }
    
//----------------------------------------------------
//   
//    r_gs_menu_item_open
//    Options menu item 'Open'.
//
//----------------------------------------------------
//
RESOURCE MENU_PANE r_gs_menu_item_open
    {
    items =
        {
        MENU_ITEM 
            {
            command = EAknCmdOpen;
            txt = qtn_fldr_open;
            }
        };
    }

//----------------------------------------------------
//   
//    r_gs_menu_item_change
//    Options menu item 'Change'.
//
//----------------------------------------------------
//
RESOURCE MENU_PANE r_gs_menu_item_change
    {
    items =
        {
        MENU_ITEM 
            {
            command = ECamMSKCmdAppChange;
            txt = qtn_options_change;
            }
        };
    }
#ifdef __SERIES60_HELP
//----------------------------------------------------
//   
//    r_gs_menu_item_exit
//    Options menu items 'Help' and 'Exit'.
//    Used instead of plain 'Exit' when help is wanted
//    to be shown in UI.
//
//----------------------------------------------------
//
RESOURCE MENU_PANE r_gs_menu_item_exit
    {
    items =
        {
        MENU_ITEM
            {
            command = EAknCmdHelp;
            txt = qtn_options_help;
            },
        MENU_ITEM 
            {
            command = EAknCmdExit;
            txt = qtn_options_exit;
            }
        };
    }
#else // if __SERIES60_HELP not defined
//----------------------------------------------------
//   
//    r_gs_menu_item_exit
//    Options menu item 'Exit'.
//
//----------------------------------------------------
//
RESOURCE MENU_PANE r_gs_menu_item_exit
    {
    items =
        {
        MENU_ITEM 
            {
            command = EAknCmdExit;
            txt = qtn_options_exit;
            }
        };
    }
#endif  // __SERIES60_HELP

//----------------------------------------------------
//   
//    r_gs_cam_settings_menubar
//    Menubar visible in the main setting view
//
//----------------------------------------------------
//
RESOURCE MENU_BAR r_gs_cam_settings_menubar
    {
    titles = 
        {
        MENU_TITLE
            {
            menu_pane = r_gs_cam_settings_menu;
            }
        };
    }
//----------------------------------------------------
//   
//    r_gs_cam_settings_menu
//    Menu visible in the main setting view
//
//----------------------------------------------------
//
RESOURCE MENU_PANE r_gs_cam_settings_menu
    {
    items = 
        {
        MENU_ITEM
            { 
            command = EAknCmdOpen; 
            txt = qtn_msk_open; 
            flags = EEikMenuItemAction;
            },
#ifdef __SERIES60_HELP
        MENU_ITEM
            {
            command = EAknCmdHelp; 
            txt = qtn_options_help; 
            },
#endif
        MENU_ITEM 
            {
            command = EAknCmdExit;
            txt = qtn_options_exit;
            }
        };
    }



//----------------------------------------------------
//   
//    r_cam_settings_title_name
//    Title name used in all settings views
//
//----------------------------------------------------
//
RESOURCE TBUF r_cam_gs_settings_title_name
    {
    buf = qtn_lcam_gen_sett_title_camera;
    }
   
    

//-----------------------------------------------------------------------------
//    
//    r_cam_lbx
//    Camera listbox items
//
//-----------------------------------------------------------------------------
//
RESOURCE GS_FEATURE_ARRAY r_cam_lbx
    {
    items =
        {
        GS_FEATURE
            {
            txt = "0\t"qtn_lcam_gen_sett_camera_folder_image;
            item = EImageSettingsFolder;
            },
        GS_FEATURE
            {
            txt = "1\t"qtn_lcam_gen_sett_camera_folder_video;
            item = EVideoSettingsFolder;
            }
        };    
    }
 
//----------------------------------------------------
//   
//    r_cam_setting_softkeys_options_back__open
//    Softkeys for settings main view    
//
//----------------------------------------------------
//
RESOURCE CBA r_cam_setting_softkeys_options_back__open
    {
    buttons  = 
        {
        CBA_BUTTON { id = EAknSoftkeyOptions; txt = text_softkey_option; },
        CBA_BUTTON { id = EAknSoftkeyBack; txt = text_softkey_back; },
        CBA_BUTTON { id = EAknCmdOpen; txt = qtn_msk_open; }  
        };
    }

//----------------------------------------------------
//   
//    r_gs_camcorder_view_title
//    Camcorder view's title.
//
//----------------------------------------------------
//
RESOURCE TITLE_PANE r_gs_camcorder_view_title
    {
    txt = qtn_lcam_gen_sett_list;
    }

//----------------------------------------------------
//   
//    r_cam_namebase_video
//    Base name for video files
//
//----------------------------------------------------
//
RESOURCE TBUF r_cam_namebase_video
    {
    buf = qtn_lcam_namebase_video;
    }


//----------------------------------------------------
//   
//    r_cam_namebase_image
//    Base name for image files
//
//----------------------------------------------------
//
RESOURCE TBUF r_cam_namebase_image
    {
    buf = qtn_lcam_namebase_image;
    }


//***********************************************************
// VIDEO QUALITY RESOURCE DEFINITIONS
//***********************************************************

//----------------------------------------------------
//
//    r_gs_video_quality_tvhigh
//    Video Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_video_quality_tvhigh
    {
    buf = qtn_lcam_set_type_tvhigh;
    }


//----------------------------------------------------
//
//    r_gs_video_quality_high
//    Video Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_video_quality_high
    {
    buf = qtn_lcam_set_type_high;
    }

//----------------------------------------------------
//
//    r_gs_video_quality_widescreen_high
//    Video Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_video_quality_widescreen_high
    {
    buf = qtn_lcam_set_type_widescreen; 
    }

//----------------------------------------------------
//
//    r_gs_video_quality_widescreen_normal
//    Video Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_video_quality_widescreen_normal
    {
    buf = qtn_lcam_set_type_widescr_normal; 
    }

//----------------------------------------------------
//
//    r_gs_video_quality_tvnorm
//    Video Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_video_quality_tvnorm
    {
    buf = qtn_lcam_set_type_tvnorm;
    }
    
//----------------------------------------------------
//
//    r_gs_video_quality_norm
//    Video Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_video_quality_norm
    {
    buf = qtn_lcam_set_type_normal;
    }

//----------------------------------------------------
//
//    r_gs_video_quality_webhigh
//    Video Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_video_quality_webhigh
    {
    buf = qtn_lcam_set_type_webhigh;
    }


//----------------------------------------------------
//
//    r_gs_video_quality_webnorm
//    Video Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_video_quality_webnorm
    {
    buf = qtn_lcam_set_type_webnorm;
    }


//----------------------------------------------------
//
//    r_gs_video_quality_mms
//    Video Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_video_quality_mms
    {
    buf = qtn_lcam_set_type_mms;
    }

//----------------------------------------------------
//
//    r_gs_video_quality_sharing
//    Video Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_video_quality_sharing
    {
    buf = qtn_lcam_set_type_sharing;
    }


//*********************************************************
// GS Cusotm IMAGE QUALITY SETTINGS resource definitions
//**********************************************************


//----------------------------------------------------
//
//    r_gs_image_quality_print5mlarge
//    Image Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_image_quality_print5mlarge
    {
    buf = qtn_lcam_sett_attr_quality_print5mlarge;
    }
    

//----------------------------------------------------
//
//    r_gs_image_quality_print3mlarge
//    Image Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_image_quality_print3mlarge
    {
    buf = qtn_lcam_sett_attr_quality_print3mlarge;
    }


//----------------------------------------------------
//
//    r_gs_image_quality_print2mlarge
//    Image Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_image_quality_print2mlarge
    {
    buf = qtn_lcam_sett_attr_quality_print2mlarge;
    }


//----------------------------------------------------
//
//    r_gs_image_quality_print3mmed
//    Image Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_image_quality_print3mmed
    {
    buf = qtn_lcam_sett_attr_quality_print3mmed;
    }


//----------------------------------------------------
//
//    r_gs_image_quality_print2mmed
//    Image Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_image_quality_print2mmed
    {
    buf = qtn_lcam_sett_attr_quality_print2mmed;
    }


//----------------------------------------------------
//
//    r_gs_image_quality_print1mmed
//    Image Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_image_quality_print1mmed
    {
    buf = qtn_lcam_sett_attr_quality_print1mmed;
    }


//----------------------------------------------------
//
//    r_gs_image_quality_print1_3small
//    Image Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_image_quality_print1_3small
    {
    buf = qtn_lcam_sett_attr_quality_print1_3small;
    }


//----------------------------------------------------
//
//    r_gs_image_quality_print1_0small
//    Image Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_image_quality_print1_0small
    {
    buf = qtn_lcam_sett_attr_quality_print1_0small;
    }


//----------------------------------------------------
//
//    r_gs_image_quality_print0_8small
//    Image Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_image_quality_print0_8small
    {
    buf = qtn_lcam_sett_attr_quality_print0_8med;
    }

//----------------------------------------------------
//
//    r_gs_image_quality_mms
//    Image Quality
//
//----------------------------------------------------
//
RESOURCE TBUF r_gs_image_quality_mms
    {
    buf = qtn_lcam_sett_attr_quality_mms;
    }

// The following are the resources shared between camera application
// and camera settings pluin refer to \generic\common folder for details
#include "CamSettings.ra"
#include "CamAppWide.ra"
#include "CamCapture.ra"
#include "CamCaptureSetup.ra"
#include "CamStillCaptureCamcorder.ra"
#include "CamVideoCaptureCamcorder.ra"


//End of File