1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /*
- ========================================================================
- Name : ExpensesListBox.rssi
- Author : Vishal Dharankar
- Copyright : Created by Vishal Dharankar
- Description :
- ========================================================================
- */
- #include "ExpensesListBox.hrh"
- #include "ExpensesListBox.loc"
- RESOURCE AVKON_VIEW r_expenses_list_box_expenses_list_box_view
- {
- cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
- menubar = r_expenses_list_box_options_menu;
- toolbar = 0;
- }
- RESOURCE MENU_BAR r_expenses_list_box_options_menu
- {titles =
- {
- MENU_TITLE
- {
- menu_pane = r_expenses_list_box_menu_pane1_menu_pane;
- }
- };
- }
- RESOURCE STATUS_PANE_APP_MODEL r_expenses_list_box_status_pane
- {
- panes =
- {
- SPANE_PANE
- {
- id = EEikStatusPaneUidTitle;
- type = EAknCtTitlePane;
- resource = r_expenses_list_box_title_resource;
- }
- };
- }
- RESOURCE TITLE_PANE r_expenses_list_box_title_resource
- {
- txt = STR_ExpensesListBoxView_3;
- }
- RESOURCE LISTBOX r_expenses_list_box_list_box
- {
- flags = EAknListBoxSelectionList;
- }
- RESOURCE MENU_PANE r_expenses_list_box_menu_pane1_menu_pane
- {
- items =
- {
- MENU_ITEM
- {
- command = EExpensesListBoxViewTestMenuItemCommand;
- txt = STR_ExpensesListBoxView_7;
- },
- MENU_ITEM
- {
- command = EExpensesListBoxViewAdd_ExpenseMenuItemCommand;
- txt = STR_ExpensesListBoxView_4;
- },
- MENU_ITEM
- {
- command = EExpensesListBoxViewView_MenuItemCommand;
- txt = STR_ExpensesListBoxView_5;
- },
- MENU_ITEM
- {
- command = EExpensesListBoxViewDeleteMenuItemCommand;
- txt = STR_ExpensesListBoxView_6;
- }
- };
- }
|