gssettingsuis/Gs/Data/gscommonresources.rss
author hgs
Thu, 04 Nov 2010 13:38:47 +0800
changeset 68 13e71d907dc3
permissions -rw-r--r--
201044

/*
* Copyright (c) 2005 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:  Common resources for internal GS plugins. This .rss is
*                 included by other .rss files. This should not be compiled
                  alone.
*
*/

//  RESOURCE IDENTIFIER
//NAME    GSCR // 4 letter ID

//  INCLUDES
#include    <gs.loc> // Common localized GS strings
#include    <gscommon.rh> // Common GS resource structures

#include    <bldvariant.hrh>
#include    <eikon.rh>
#include    <eikon.rsg>
#include    <avkon.rh>
#include    <avkon.loc>

// CONSTANTS

// -----------------------------------------------------------------------------
//
// r_gs_menubar_change_exit
// GS menu with 'change' and 'exit' items.
//
// -----------------------------------------------------------------------------
//
RESOURCE MENU_BAR r_gs_menubar_change_exit
    {
    titles =
        {
        MENU_TITLE
            {
            menu_pane = r_gs_menu_item_exit;
            },
        MENU_TITLE
            {
            menu_pane = r_gs_menu_item_help;
            },
        MENU_TITLE
            {
            menu_pane = r_gs_menu_item_change;
            }
        };
    }

// -----------------------------------------------------------------------------
//
// r_gs_menubar_open_exit
// GS menu with 'Open' and 'Exit' items.
//
// -----------------------------------------------------------------------------
//
RESOURCE MENU_BAR r_gs_menubar_open_exit
    {
    titles =
        {
        MENU_TITLE
            {
            menu_pane = r_gs_menu_item_exit;
            },
        MENU_TITLE
            {
            menu_pane = r_gs_menu_item_help;
            },
        MENU_TITLE
            {
            menu_pane = r_gs_menu_item_open;
            }
        };
    }

//----------------------------------------------------
//
// r_gs_menu_item_open
// Open item.
//
//----------------------------------------------------

RESOURCE MENU_PANE r_gs_menu_item_open
    {
    items =
        {
        MENU_ITEM
            {
            command = EAknSoftkeyOpen;
            txt = qtn_set_options_open;
            flags = EEikMenuItemAction; // action command
            }
        };
    }


// -----------------------------------------------------------------------------
//
// r_gs_menu_item_exit
//
// -----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_gs_menu_item_exit
    {
    items =
        {
        MENU_ITEM
            {
            command = EAknCmdExit;
            txt = qtn_options_exit;
            }
        };
    }


// -----------------------------------------------------------------------------
//
// r_gs_menu_item_change
// Change item.
//
// -----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_gs_menu_item_change
    {
    items =
        {
        MENU_ITEM
            {
            command = EGSCmdAppChange;
            txt = qtn_set_options_change;
            flags = EEikMenuItemAction; // action command
            }
        };
    }

// -----------------------------------------------------------------------------
//
// r_gs_menu_item_help
// Change item.
//
// -----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_gs_menu_item_help
    {
    items =
        {
        MENU_ITEM
            {
            command = EAknCmdHelp;
            txt = qtn_options_help;
            }
        };
    }


// -----------------------------------------------------------------------------
//
// r_setting_listbox
// Common listbox editor resource for setting pages.
//
// -----------------------------------------------------------------------------
//
RESOURCE LISTBOX r_setting_listbox
    {
    flags = EEikListBoxMultipleSelection;
    }


// -----------------------------------------------------------------------------
//
// r_gs_cba_exit
// Exit text for RSK
//
// -----------------------------------------------------------------------------
//
RESOURCE TBUF r_gs_cba_exit { buf = text_softkey_exit; }

//End of File