00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 NAME HEWB
00020
00021
00022
00023 #include <eikon.rh>
00024 #include <avkon.rh>
00025 #include <avkon.rsg>
00026 #include <appinfo.rh>
00027 #include "HelloWorldBasic.hrh"
00028 #include "HelloWorldBasic.rls"
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 RESOURCE RSS_SIGNATURE
00039 {
00040 }
00041
00042
00043
00044
00045
00046
00047
00048 RESOURCE TBUF r_default_document_name
00049 {
00050 buf="HEWB";
00051 }
00052
00053
00054
00055
00056
00057
00058
00059 RESOURCE EIK_APP_INFO
00060 {
00061 menubar = r_helloworldbasic_menubar;
00062 cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
00063 }
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073 RESOURCE MENU_BAR r_helloworldbasic_menubar
00074 {
00075 titles =
00076 {
00077 MENU_TITLE { menu_pane = r_helloworldbasic_menu; }
00078 };
00079 }
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089 RESOURCE MENU_PANE r_helloworldbasic_menu
00090 {
00091 items =
00092 {
00093
00094 MENU_ITEM
00095 {
00096 command = EHelloWorldBasicCommand1;
00097 txt = STRING_r_hewb_command1;
00098 },
00099 MENU_ITEM
00100 {
00101 command = EHelloWorldBasicCommand2;
00102 txt = STRING_r_hewb_command2;
00103 },
00104 MENU_ITEM
00105 {
00106 command = EHelloWorldBasicCommand3;
00107 txt = STRING_r_hewb_command3;
00108 },
00109 MENU_ITEM
00110 {
00111 command = EAknSoftkeyExit;
00112 txt = STRING_r_hewb_exit;
00113 }
00114 };
00115 }
00116
00117
00118
00119
00120
00121
00122
00123 RESOURCE TBUF32 r_hewb_command1_text { buf=STRING_r_hewb_command1_text; }
00124 RESOURCE TBUF32 r_hewb_file_text { buf=STRING_r_hewb_file_text; }
00125 RESOURCE TBUF32 r_hewb_caption_string { buf=STRING_r_hewb_caption_string; }
00126
00127
00128
00129
00130
00131
00132
00133 RESOURCE LOCALISABLE_APP_INFO r_helloworldbasic_localisable_app_info
00134 {
00135 short_caption = STRING_r_hewb_caption_string;
00136 caption_and_icon =
00137 CAPTION_AND_ICON_INFO
00138 {
00139 caption = STRING_r_hewb_caption_string;
00140
00141 number_of_icons = 1;
00142 icon_file = "\\resource\\apps\\Helloworldbasic_aif.mif";
00143 };
00144 }
00145
00146
00147
00148
00149
00150
00151
00152 RESOURCE DIALOG r_dialog_text_edit_query
00153 {
00154 flags = EGeneralQueryFlags;
00155 buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
00156 items =
00157 {
00158 DLG_LINE
00159 {
00160 type = EAknCtQuery;
00161 id = EGeneralQuery;
00162 control = AVKON_DATA_QUERY
00163 {
00164 layout = EDataLayout;
00165 label = "";
00166 control = EDWIN
00167 {
00168 width = 32;
00169 maxlength = 32;
00170 lines = 1;
00171 };
00172 };
00173 }
00174 };
00175 }
00176
00177