/*
* Copyright (c) 2005-2006 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 IDENTIFIER
NAME AWIZ // 4 letter ID
// INCLUDES
#include <appinfo.rh>
#include <avkon.loc>
#include <avkon.rh>
#include <avkon.rsg>
#include <data_caging_paths_strings.hrh>
#include <eikon.rh>
#include <eikon.rsg>
#include "TestApp.hrh"
// 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="TTS API test";
}
// ---------------------------------------------------------
//
// Define default menu and CBA key.
//
// ---------------------------------------------------------
//
RESOURCE EIK_APP_INFO
{
menubar = r_test_application_menubar_mainview;
cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
}
//----------------------------------------------------
//
// r_test_application_localisable_app_info
// menu captions and application icon
//
//----------------------------------------------------
//
RESOURCE LOCALISABLE_APP_INFO r_test_application_localisable_app_info
{
short_caption = TTS API test;
caption_and_icon =
CAPTION_AND_ICON_INFO
{
caption = TTS API test;
number_of_icons = 1;
};
}
// ---------------------------------------------------------
//
// r_test_application_mainview
// Define the main view
//
// ---------------------------------------------------------
//
RESOURCE AVKON_VIEW r_test_application_mainview
{
menubar = r_test_application_menubar_mainview;
cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
}
//----------------------------------------------------
//
// r_test_application_menubar_mainview
//
//----------------------------------------------------
//
RESOURCE MENU_BAR r_test_application_menubar_mainview
{
titles =
{
MENU_TITLE
{
menu_pane = r_test_application_menu;
}
};
}
//----------------------------------------------------
//
// r_test_application_menu
//
//----------------------------------------------------
//
RESOURCE MENU_PANE r_test_application_menu
{
items=
{
MENU_ITEM { command = EAknCmdExit; txt = "Exit"; },
MENU_ITEM { command = ETestAppCmdAppConnect; txt = "Connect to server"; },
MENU_ITEM { command = ETestAppCmdAppDisconnect; txt = "Disconnect server"; },
MENU_ITEM { command = ETestAppCmdAppSayText; txt = "Say text"; },
MENU_ITEM { command = ETestAppCmdAppSayTextToFile; txt = "Say text to file"; },
MENU_ITEM { command = ETestAppCmdAppChangeVoice; txt = "Change voice"; },
MENU_ITEM { command = ETestAppCmdAppVolumeDown; txt = "Volume down"; },
MENU_ITEM { command = ETestAppCmdAppVolumeUp; txt = "Volume up"; }
};
}
// End of File