00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include <eikon.rh>
00018 #include <AppInfo.rh>
00019 #include <avkon.rh>
00020 #include <avkon.rsg>
00021
00022 #include "PopulateContact.hrh"
00023 #include "PopulateContact.rls"
00024
00025 NAME CT01
00026
00027 RESOURCE RSS_SIGNATURE { }
00028
00029 RESOURCE TBUF { buf = "CT01"; }
00030
00031 RESOURCE EIK_APP_INFO
00032 {
00033 menubar = r_populatecontact_menubar;
00034 cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
00035 }
00036
00037 RESOURCE MENU_BAR r_populatecontact_menubar
00038 {
00039 titles =
00040 {
00041 MENU_TITLE { menu_pane = r_populatecontact_menupane; }
00042 };
00043 }
00044
00045 RESOURCE MENU_PANE r_populatecontact_menupane
00046 {
00047 items =
00048 {
00049 MENU_ITEM
00050 {
00051 command = EPopulateContact;
00052 txt = string_r_populatecontact;
00053 },
00054 MENU_ITEM
00055 {
00056 command = EDeleteDatabase;
00057 txt = string_r_deletedatabase;
00058 },
00059 MENU_ITEM
00060 {
00061 command = EEikCmdExit;
00062 txt = string_r_exit;
00063 }
00064 };
00065 }
00066
00067 RESOURCE LOCALISABLE_APP_INFO r_populatecontact_localisable_app_info
00068 {
00069 short_caption = string_r_populatecontact_caption;
00070 caption_and_icon =
00071 CAPTION_AND_ICON_INFO
00072 {
00073 caption = string_r_populatecontact_caption;
00074 number_of_icons = 1;
00075 icon_file = "\\resource\\apps\\PopulateContact.mif";
00076 };
00077 }
00078
00079 #include "PopulateContact_string.rss"
00080
00081