ExpensesListBox.rssi 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. ========================================================================
  3. Name : ExpensesListBox.rssi
  4. Author : Vishal Dharankar
  5. Copyright : Created by Vishal Dharankar
  6. Description :
  7. ========================================================================
  8. */
  9. #include "ExpensesListBox.hrh"
  10. #include "ExpensesListBox.loc"
  11. RESOURCE AVKON_VIEW r_expenses_list_box_expenses_list_box_view
  12. {
  13. cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT;
  14. menubar = r_expenses_list_box_options_menu;
  15. toolbar = 0;
  16. }
  17. RESOURCE MENU_BAR r_expenses_list_box_options_menu
  18. {titles =
  19. {
  20. MENU_TITLE
  21. {
  22. menu_pane = r_expenses_list_box_menu_pane1_menu_pane;
  23. }
  24. };
  25. }
  26. RESOURCE STATUS_PANE_APP_MODEL r_expenses_list_box_status_pane
  27. {
  28. panes =
  29. {
  30. SPANE_PANE
  31. {
  32. id = EEikStatusPaneUidTitle;
  33. type = EAknCtTitlePane;
  34. resource = r_expenses_list_box_title_resource;
  35. }
  36. };
  37. }
  38. RESOURCE TITLE_PANE r_expenses_list_box_title_resource
  39. {
  40. txt = STR_ExpensesListBoxView_3;
  41. }
  42. RESOURCE LISTBOX r_expenses_list_box_list_box
  43. {
  44. flags = EAknListBoxSelectionList;
  45. }
  46. RESOURCE MENU_PANE r_expenses_list_box_menu_pane1_menu_pane
  47. {
  48. items =
  49. {
  50. MENU_ITEM
  51. {
  52. command = EExpensesListBoxViewTestMenuItemCommand;
  53. txt = STR_ExpensesListBoxView_7;
  54. },
  55. MENU_ITEM
  56. {
  57. command = EExpensesListBoxViewAdd_ExpenseMenuItemCommand;
  58. txt = STR_ExpensesListBoxView_4;
  59. },
  60. MENU_ITEM
  61. {
  62. command = EExpensesListBoxViewView_MenuItemCommand;
  63. txt = STR_ExpensesListBoxView_5;
  64. },
  65. MENU_ITEM
  66. {
  67. command = EExpensesListBoxViewDeleteMenuItemCommand;
  68. txt = STR_ExpensesListBoxView_6;
  69. }
  70. };
  71. }