phonebookui/Phonebook/App/rss/GroupsListView.rss
changeset 0 e686773b3f54
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     1 /*
       
     2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *     This file contains all the resources for the module.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 /*
       
    22  * Groups List View's menu pane.
       
    23  */
       
    24 RESOURCE MENU_PANE r_pbk_groupslist_menu
       
    25 	{
       
    26 	items=
       
    27 		{		
       
    28 		MENU_ITEM { command = EPbkCmdOpenGroup;			txt = qtn_fldr_open_group; },
       
    29 		MENU_ITEM { command = EPbkCmdWrite;             txt = qtn_phob_opt_send; },
       
    30 		MENU_ITEM { command = EPbkCmdCreateNewGroup;	txt = qtn_fldr_new_group; },
       
    31 		MENU_ITEM { command = EPbkCmdRemoveGroup;		txt = qtn_fldr_delete_group; },
       
    32 		MENU_ITEM { command = EPbkCmdRenameGroup;		txt = qtn_fldr_rename_group; },
       
    33 		MENU_ITEM { command = EPbkCmdSetRingingTone;	txt = qtn_phob_opt_group_rtone; },
       
    34         	MENU_ITEM { command = EPbkPhonebookInfoSubMenu; txt = qtn_phob_opt_pb_info; 
       
    35                 cascade = r_pbk_phonebook_info_submenu; },
       
    36 		MENU_ITEM { command = EPbkCmdSettings;			txt = qtn_phob_opt_settings; }
       
    37 		};
       
    38 	}
       
    39 
       
    40 /**
       
    41  * Groups List View's menu bar.
       
    42  */
       
    43 RESOURCE MENU_BAR r_pbk_groupslist_menubar
       
    44     {
       
    45     titles = 
       
    46         {
       
    47         // System menu pane
       
    48         MENU_TITLE { menu_pane = r_phonebook_system_menu;      },
       
    49         // Names List View's menu pane
       
    50         MENU_TITLE { menu_pane = r_pbk_groupslist_menu;        },
       
    51         MENU_TITLE { menu_pane = r_phonebook_poc_menu;	       }
       
    52         };
       
    53     }
       
    54 
       
    55 /**
       
    56  * Groups List View's Context sensitive menu pane.
       
    57  */
       
    58 RESOURCE MENU_PANE r_pbk_groupslist_contextmenu
       
    59 	{
       
    60 	items=
       
    61 		{
       
    62 		MENU_ITEM { command = EPbkCmdCreateNewGroup;	txt = qtn_fldr_new_group; }
       
    63 		};
       
    64 	}
       
    65 
       
    66 /**
       
    67  * Groups List View's context sensitive menu bar.
       
    68  */
       
    69 RESOURCE MENU_BAR r_pbk_groupslist_context_menubar
       
    70     {
       
    71     titles = 
       
    72         {
       
    73         // Names List View's context menu pane
       
    74         MENU_TITLE { menu_pane = r_pbk_groupslist_contextmenu;        }
       
    75         };
       
    76     }
       
    77 
       
    78 /**
       
    79  * Groups List View's main resource.
       
    80  */
       
    81 RESOURCE AVKON_VIEW r_phonebook_groupslist_appview
       
    82 	{
       
    83 	menubar = r_pbk_groupslist_menubar;
       
    84 	cba = R_AVKON_SOFTKEYS_EXIT;
       
    85 	}
       
    86 
       
    87 
       
    88 /**
       
    89  * New group Query
       
    90  * @type    data query
       
    91  */
       
    92 RESOURCE DIALOG r_phonebook_grouplist_newgroup_query
       
    93 	{
       
    94 	flags=	EEikDialogFlagWait | EEikDialogFlagNoDrag | 
       
    95 			EEikDialogFlagNoTitleBar | EEikDialogFlagCbaButtons | 
       
    96 			EEikDialogFlagNoShadow;
       
    97 
       
    98 	buttons=R_AVKON_SOFTKEYS_OK_CANCEL;
       
    99     items=
       
   100 		{
       
   101 		DLG_LINE
       
   102 			{
       
   103 			type=EAknCtQuery;
       
   104 			id=EGeneralQuery;
       
   105 			control=AVKON_DATA_QUERY 
       
   106 				{ 
       
   107 				layout = EDataLayout;
       
   108 				label = qtn_fldr_group_name_prmpt;
       
   109 				control = EDWIN 
       
   110 					{ 
       
   111 					max_view_height_in_lines = 1;
       
   112 					flags = KSingleLineHorizontalScrollingEditorFlags | EEikEdwinResizable;				
       
   113 					};
       
   114 				};
       
   115 			}
       
   116 		};
       
   117 	}
       
   118 
       
   119 // ---------------------------------------------------------
       
   120 // Assign ringing tone to group members wait note
       
   121 // ---------------------------------------------------------
       
   122 // 
       
   123 RESOURCE DIALOG r_qtn_phob_wnote_set_rtone
       
   124 	{
       
   125 	flags = EAknProgressNoteFlags;
       
   126     buttons = R_AVKON_SOFTKEYS_EMPTY;
       
   127     items =
       
   128 		{
       
   129 		DLG_LINE
       
   130 			{
       
   131 			type = EAknCtNote;
       
   132 			id = EPbkNoteContactsSetRingingToneToGroup;
       
   133 			control = AVKON_NOTE 
       
   134 				{ 
       
   135 				layout = EProgressLayout;
       
   136 				singular_label = qtn_gen_note_processing;
       
   137 				};
       
   138 			}
       
   139 		};
       
   140 	}
       
   141 
       
   142 ///
       
   143 // Localized strings.
       
   144 //
       
   145 //
       
   146 
       
   147 /// Text: removing atleast one group which contains items
       
   148 RESOURCE TBUF r_qtn_fldr_del_full_groups_query  { buf = qtn_fldr_del_full_groups_query; }
       
   149 
       
   150 // Text: ringing tone assignment selection confirmation note
       
   151 RESOURCE TBUF r_qtn_phob_note_rtone_set_to_grp    { buf = qtn_phob_note_rtone_set_to_grp; }
       
   152 
       
   153 // End of File