devicediagnostics/diagplugins/diagbrowserplugin/data/devdiagbrowserpluginrsc.rss
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 17 Dec 2009 08:40:12 +0200
changeset 0 3ce708148e4d
permissions -rw-r--r--
Revision: 200949 Kit: 200951

/*
* Copyright (c) 2007 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 Browser Test.
*
*/


// Resource Name Identifier
NAME DBTP

// Include Files
#include    <AvkonIcons.hrh> // ADO & Platformization Changes
#include <eikon.rh>
#include <avkon.rh>
#include <avkon.loc> // ADO & Platformization Changes
#include <avkon.mbg>
#include <avkon.rsg>

#include    <eikcore.rsg>
#include    <eikon.rsg>

#include    <data_caging_paths_strings.hrh> // changes ends
#include <diagbrowserplugin.loc>

#include "diagbrowserplugin.hrh"   // ADO & Platformization Changes

// Resource Identifiers
RESOURCE RSS_SIGNATURE { }
RESOURCE TBUF { buf="DBTP"; }

// ========================== RESOURCE DEFINITIONS ===========================

// ---------------------------------------------------------------------------
// r_diag_browser_heading_pane
// The test's name in the header of the dialog that is shown when starting
// test execution.
// ---------------------------------------------------------------------------
//
RESOURCE TBUF r_diag_browser_heading_pane
    {
    buf = qtn_diag_msg_title_browser;
    }

// ---------------------------------------------------------------------------
// r_diag_browser_popup_info_pane
// ---------------------------------------------------------------------------
//
RESOURCE TBUF r_diag_browser_popup_info_pane
    {
    buf = qtn_diag_conf_test_failed_browser;
    }

// ---------------------------------------------------------------------------
// r_diag_browser_title_pane
// The title pane shown when the browser test is running.
// ---------------------------------------------------------------------------
//
RESOURCE TBUF r_diag_browser_title_pane
    {
    buf = qtn_diag_title_test_browser;
    }

// ---------------------------------------------------------------------------
// r_diag_browser_list_single_graphic
// Test name in the suite view listbox.
// ---------------------------------------------------------------------------
//
RESOURCE TBUF r_diag_browser_list_single_graphic
    {
    buf = qtn_diag_lst_test_browser;
    }

// ---------------------------------------------------------------------------
// r_diag_browser_list_single
// The test's name in the results view.
// ---------------------------------------------------------------------------
//
RESOURCE TBUF r_diag_browser_list_single
    {
    buf = qtn_diag_lst_browser;
    }
    
// ADO & Platformization Changes


RESOURCE CBA r_cba_browser_single_execution
{
		buttons =
		{
			CBA_BUTTON
			{
					id = EAknSoftkeyOk;
					txt = text_softkey_ok;
			},
			
			
			CBA_BUTTON
			{
					id = EBrowserTestCancel;
					txt = text_softkey_cancel;
			}
			
		};
}


RESOURCE CBA r_cba_browser_group_execution
{
		buttons =
		{
			CBA_BUTTON
			{
					id = EAknSoftkeyOk;
					txt = text_softkey_ok;
			},
			
			
			CBA_BUTTON
			{
					id = EBrowserTestSkip;
					txt = qtn_diag_softk_skip;
			}
			
		};
}


RESOURCE DIALOG r_diag_messagequery_title_browsertest
{
		flags = EGeneralQueryFlags;
		buttons = r_cba_browser_single_execution;
		items =
		{
			DLG_LINE 
			{
					type = EAknCtPopupHeadingPane;
					id = EAknMessageQueryHeaderId;
					control = AVKON_HEADING
                {
                label = qtn_diag_msg_title_browser;
                headinglayout = 0;
                };
			},
			
			DLG_LINE
			{
					type = EAknCtMessageQuery;
					id = EAknMessageQueryContentId;
					control = AVKON_MESSAGE_QUERY
					{
							message = qtn_diag_msg_info_browser;
					};
					
			}
		
		};

}
//----------------------------------------------------
//  r_browser_softkeys_stop__cancel
//
// Buttons shown during the test. Shown when the
// test is run as a part of a suite.
//----------------------------------------------------
//
RESOURCE CBA r_browser_softkeys_stop__cancel
    {
    buttons = 
        {
       CBA_BUTTON 
	        { 
            id  = EAknSoftkeyEmpty; 
            txt = text_softkey_empty;
	        },

        CBA_BUTTON 
	        { 
            id  = EBrowserTestCancel;      // .hrh 
            txt = text_softkey_cancel; // .rls or .loc
	        } 

	
        };
    }

RESOURCE DIALOG r_browser_plugin_wait_note
    {
    flags = EAknWaitNoteFlags | EEikDialogFlagNotifyEsc;
    buttons = r_browser_softkeys_stop__cancel;
    items =
        {
        DLG_LINE
            {
            type = EAknCtNote;
            id = EYBWaitNoteId;
            control= AVKON_NOTE 
                { 
                layout = EWaitLayout;
                singular_label = qtn_diag_msg_testing_browser;
                animation = R_QGN_GRAF_WAIT_BAR_ANIM;
                };
            }
        };
    }
	
// End of File