coreapplicationuis/rfsplugins/tsrc/rfspluginstest/rfstestapp/data/rfstestapp.rss
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 31 Aug 2010 15:24:25 +0300
branchRCL_3
changeset 19 924385140d98
parent 10 469fa8a78de7
child 20 c2c61fdca848
permissions -rw-r--r--
Revision: 201033 Kit: 201035

/*
* Copyright (c) 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 definitions for project RfsTestApp
*
*/


NAME RFST

#include <appinfo.rh>
#include <avkon.rh>
#include <avkon.rsg>
#include <commondialogs.hrh>
#include <commondialogs.rh>
#include <eikon.rh>
#include <avkon.loc>
#include "rfstestappcmds.hrh"

RESOURCE RSS_SIGNATURE { }
RESOURCE TBUF { buf=""; }

// ---------------------------------------------------------------------------
// App info resource structure
// ---------------------------------------------------------------------------
//
RESOURCE EIK_APP_INFO
    {
    menubar = r_rfstestapp_main_menu;
    cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
    }


// ---------------------------------------------------------------------------
// r_rfstestapp_localisable_app_info
// ---------------------------------------------------------------------------
//
RESOURCE LOCALISABLE_APP_INFO r_rfstestapp_localisable_app_info
    {
    short_caption = "RfsTestA";
    caption_and_icon = CAPTION_AND_ICON_INFO
        {
        caption = "RfsTestApp";
        };
    }


// ---------------------------------------------------------------------------
// r_rfstestapp_main_cba
// ---------------------------------------------------------------------------
//
RESOURCE CBA r_rfstestapp_main_cba
    {
    buttons=
        {
	    AVKON_CBA_BUTTON
            {
			id = EAknSoftkeyExit;
			txt = Exit;
            }
        };
    }


// ---------------------------------------------------------------------------
// r_rfstestapp_main_menu
// ---------------------------------------------------------------------------
//
RESOURCE MENU_BAR r_rfstestapp_main_menu
    {
    titles=
        {
        MENU_TITLE
            {
            menu_pane = r_rfstestapp_main_menu_pane;
            txt = "Options";
            }
        };
    }


// ---------------------------------------------------------------------------
// r_rfstestapp_main_menu_pane
// ---------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_rfstestapp_main_menu_pane
    {
    items=
        {
        MENU_ITEM
            {
            command = ESetupTestCmd;
            txt = "Setup Test";
            },
        MENU_ITEM
            {
            command = ESetupAppTestCmd;
            txt = "Setup App Specific Test";
            },
        MENU_ITEM
            {
            command = EListListsCmd;
            txt = "List exclude files";
            }
        };
    }


// ---------------------------------------------------------------------------
// r_rfstestapp_memory_selection
// ---------------------------------------------------------------------------
//
RESOURCE MEMORYSELECTIONDIALOG r_rfstestapp_memory_selection
    {
    title = "";
    softkey_1 = "Ok";
    }


// ---------------------------------------------------------------------------
// r_rfstestapp_specfile_selection
// ---------------------------------------------------------------------------
//
RESOURCE FILESELECTIONDIALOG r_rfstestapp_specfile_selection
    {
    title = "Select Data Specification File";
    softkey_1_file = "Select";
    softkey_1_folder = "Open";
    softkey_2_root_level = "Cancel";
    softkey_2_subfolder = "Back";
    filters =
        {
        FILTER
            {
            filter_type = EFilenameFilter;
            filter_style = EInclusiveFilter;
            filter_data = { "*.spc" };
            }
        };
    }


// ---------------------------------------------------------------------------
// r_rfstestapp_excludelist_selection
// ---------------------------------------------------------------------------
//
RESOURCE FILESELECTIONDIALOG r_rfstestapp_excludelist_selection
    {
    title = "Select Exclude List File";
    softkey_1_file = "Select";
    softkey_1_folder = "Open";
    softkey_2_root_level = "Cancel";
    softkey_2_subfolder = "Back";
    filters =
        {
        FILTER
            {
            filter_type = EFilenameFilter;
            filter_style = EInclusiveFilter;
            filter_data = { "*.exc" };
            }
        };
    }


// ---------------------------------------------------------------------------
// r_rfstestapp_progress
// ---------------------------------------------------------------------------
//
RESOURCE DIALOG r_rfstestapp_progress
    {
    flags = EAknWaitNoteFlags;
    buttons = R_AVKON_SOFTKEYS_CANCEL;
    items =
        {
        DLG_LINE
            {
            type = EAknCtNote;
            id = EAknNoteProgressBar;
            control= AVKON_NOTE
                {
                layout = EWaitLayout;
                singular_label = "Generating data";
                animation = R_QGN_GRAF_WAIT_BAR_ANIM;
                };
            }
        };
    }