00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 NAME FIND
00020
00021
00022
00023 #include <eikon.rh>
00024 #include <avkon.rsg>
00025 #include <avkon.rh>
00026 #include <appinfo.rh>
00027 #include "FindMe.hrh"
00028 #include "FindMe.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="FIND";
00051 }
00052
00053
00054
00055
00056
00057
00058
00059 RESOURCE EIK_APP_INFO
00060 {
00061 menubar = r_menubar;
00062 cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
00063 }
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073 RESOURCE MENU_BAR r_menubar
00074 {
00075 titles =
00076 {
00077 MENU_TITLE { menu_pane = r_menu; }
00078 };
00079 }
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089 RESOURCE MENU_PANE r_menu
00090 {
00091 }
00092
00093
00094
00095
00096
00097
00098
00099 RESOURCE DIALOG r_about_query_dialog
00100 {
00101 flags = EGeneralQueryFlags | EEikDialogFlagNoBorder | EEikDialogFlagNoShadow;
00102 buttons = R_AVKON_SOFTKEYS_OK_EMPTY;
00103 items=
00104 {
00105 DLG_LINE
00106 {
00107 type = EAknCtPopupHeadingPane;
00108 id = EAknMessageQueryHeaderId;
00109 itemflags = EEikDlgItemNonFocusing;
00110 control = AVKON_HEADING
00111 {
00112 };
00113 },
00114 DLG_LINE
00115 {
00116 type = EAknCtMessageQuery;
00117 id = EAknMessageQueryContentId;
00118 control = AVKON_MESSAGE_QUERY
00119 {
00120 };
00121 }
00122 };
00123 }
00124
00125
00126
00127
00128
00129
00130
00131
00132 RESOURCE TBUF32 r_caption_string { buf=qtn_caption_string; }
00133 RESOURCE TBUF32 r_about_dialog_title { buf=qtn_about_dialog_title; }
00134 RESOURCE TBUF r_about_dialog_text { buf=qtn_about_dialog_text; }
00135 RESOURCE TBUF r_command1_text { buf=qtn_command1_text; }
00136
00137
00138
00139
00140
00141
00142
00143
00144 RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info
00145 {
00146 short_caption = qtn_caption_string;
00147 caption_and_icon =
00148 CAPTION_AND_ICON_INFO
00149 {
00150 caption = qtn_caption_string;
00151
00152 number_of_icons = 1;
00153 icon_file = "\\resource\\apps\\FindMe_0xE5F14158.mif";
00154 };
00155 }
00156
00157