123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- /*
- * Copyright (c) 2010-2011 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: Camerality resources.
- *
- */
- // RESOURCE IDENTIFIER
- NAME CAME // 4 letter ID
- // INCLUDES
- #include <eikon.rh>
- #include <avkon.rsg>
- #include <avkon.rh>
- #include <appinfo.rh>
- #include "camerality.hrh"
- #include "camerality.rls"
- // RESOURCE DEFINITIONS
- // -----------------------------------------------------------------------------
- //
- // Define the resource file signature
- // This resource should be empty.
- //
- // -----------------------------------------------------------------------------
- //
- RESOURCE RSS_SIGNATURE
- {
- }
- // -----------------------------------------------------------------------------
- //
- // Default Document Name
- //
- // -----------------------------------------------------------------------------
- //
- RESOURCE TBUF r_default_document_name
- {
- buf="CAME";
- }
- // -----------------------------------------------------------------------------
- //
- // Define default menu and CBA key.
- //
- // -----------------------------------------------------------------------------
- //
- RESOURCE EIK_APP_INFO
- {
- cba = r_softkeys_start_exit;
- }
- // -----------------------------------------------------------------------------
- //
- // CBA key definition
- //
- // -----------------------------------------------------------------------------
- //
- RESOURCE CBA r_softkeys_start_exit
- {
- buttons =
- {
- CBA_BUTTON { id = ECommandStart; txt = qtn_command_start; },
- CBA_BUTTON { id = EAknSoftkeyExit; txt = qtn_exit; }
- };
- }
- // -----------------------------------------------------------------------------
- //
- // CBA key definition
- //
- // -----------------------------------------------------------------------------
- //
- RESOURCE CBA r_softkeys_stop_exit
- {
- buttons =
- {
- CBA_BUTTON { id = ECommandStop; txt = qtn_command_stop; },
- CBA_BUTTON { id = EAknSoftkeyExit; txt = qtn_exit; }
- };
- }
- // ----------------------------------------------------------------------------
- //
- // r_localisable_app_info
- //
- // ----------------------------------------------------------------------------
- //
- RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info
- {
- short_caption = qtn_caption_string;
- caption_and_icon =
- CAPTION_AND_ICON_INFO
- {
- caption = qtn_caption_string;
- number_of_icons = 1;
- icon_file = "\\resource\\apps\\camerality_0xE09A8500.mif";
- };
- }
- // End of File
|