devicediagnostics/diagplugins/diagdatanetworkplugin/data/devdiagdatanetworktestpluginrsc.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 file for DiagDataNetworkTestPlugin
*
*/



//  RESOURCE IDENTIFIER
NAME    DGDN // 4 letter ID // this has to be unique for each plugin

//  INCLUDES
#include <eikon.rh>
#include <avkon.rh>
#include <avkon.rsg>
#include <avkon.mbg>
#include <appinfo.rh>
#include <avkon.loc>
#include <AvkonIcons.hrh>
#include <bldvariant.hrh>
#include <uikon.rh>
#include  <data_caging_paths_strings.hrh>

#include    <diagdatanetworktestplugin.loc>
#include	"diagdatanetworktestplugin.hrh"


// CONSTANTS

//  RESOURCE DEFINITIONS

RESOURCE RSS_SIGNATURE
    {
    }

RESOURCE TBUF
    {
    buf="DGDN";
    }

// ---------------------------------------------------------------------------
//  r_diag_data_network_test_heading_pane
//
// The plugin name in the header of the dialog that 
// is shown when starting test execution.
// ---------------------------------------------------------------------------
//
RESOURCE TBUF r_diag_data_network_test_heading_pane
    {
    buf = qtn_diag_msg_title_data_network;
    }
    
    
// ---------------------------------------------------------------------------
//  r_diag_data_network_test_info_pane
//  The body text of the dialog that is shown when 
//  starting test execution.
// ---------------------------------------------------------------------------
//
RESOURCE TBUF r_diag_data_network_test_info_pane
    {
    buf = qtn_diag_conf_test_failed_data_coverage;
    }
    

// ---------------------------------------------------------------------------
//  r_diag_data_network_test_title_pane
//  The title pane shown when Data network test is running
// ---------------------------------------------------------------------------
//
RESOURCE TBUF r_diag_data_network_test_title_pane
    {
    buf = qtn_diag_title_test_data_network;
    }

// ---------------------------------------------------------------------------
// r_diag_data_network_test_single_graphic
// Plugin name in the suite view listbox.
// ---------------------------------------------------------------------------
//
RESOURCE TBUF r_diag_data_network_test_single_graphic
    {
    buf = qtn_diag_lst_test_data_network;
    }


//----------------------------------------------------
//  r_diag_data_network_test_single
//
// Plugin's name in results view
//----------------------------------------------------
//
RESOURCE TBUF r_diag_data_network_test_single
    {
    buf = qtn_diag_lst_data_coverage;          
    }
    
    
// ADO & Platformization Changes


RESOURCE CBA r_cba_datanetwork_group_execution
{
		buttons =
		{
			CBA_BUTTON
			{
					id = EAknSoftkeyOk;
					txt = text_softkey_ok;
			},
			
			
			CBA_BUTTON
			{
					id = EDataNetworkTestSkip;
					txt = qtn_diag_softk_skip;
			}
			
		};
}



RESOURCE CBA r_cba_datanetwork_single_execution
{
		buttons =
		{
			CBA_BUTTON
			{
					id = EAknSoftkeyOk;
					txt = text_softkey_ok;
			},
			
			
			CBA_BUTTON
			{
					id = EDataNetworkTestCancel;
					txt = text_softkey_cancel;
			}
			
		};
}


RESOURCE DIALOG r_diag_messagequery_title_datanetwork
{
		flags = EGeneralQueryFlags;
		buttons = r_cba_datanetwork_single_execution;
		items =
		{
			DLG_LINE 
			{
					type = EAknCtPopupHeadingPane;
					id = EAknMessageQueryHeaderId;
					control = AVKON_HEADING
                {
                label = qtn_diag_msg_title_data_network;
                headinglayout = 0;
                };
			},
			
			DLG_LINE
			{
					type = EAknCtMessageQuery;
					id = EAknMessageQueryContentId;
					control = AVKON_MESSAGE_QUERY
					{
							message = qtn_diag_msg_info_data_network;
					};
					
			}
		
		};

}

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

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

	
        };
    }
	
//----------------------------------------------------
//  r_datanw_plugin_progress_note
//
//  Plugin progress note
//----------------------------------------------------
/*
RESOURCE DIALOG r_datanw_plugin_progress_note
    {
    flags   = EAknProgressNoteFlags;
    buttons = R_AVKON_SOFTKEYS_EMPTY;

    items =
        {
        DLG_LINE
            {
            type = EAknCtNote;
            id   = EGeneralNote;

            control = AVKON_NOTE
                {
                layout         = EProgressLayout;
                singular_label = qtn_diag_msg_testing_data_coverage;
                
                imageid = EMbmAvkonQgn_note_progress;
                imagemask = EMbmAvkonQgn_note_progress_mask;
                };
            }
        };
    }
*/

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