picodrive_loc.rss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #include <appinfo.rh>
  2. #include <qikon.hrh>
  3. #define EViewIdPrimaryView 1
  4. // This file localise the applications icons and caption
  5. RESOURCE LOCALISABLE_APP_INFO
  6. {
  7. caption_and_icon =
  8. {
  9. CAPTION_AND_ICON_INFO
  10. {
  11. caption = "PicoDrive";
  12. // Icons are used to represent applications in the
  13. // application launcher and application title bar.
  14. // The number_of_icons value identifies how many icons
  15. // that exist in the icon_file.
  16. number_of_icons = 3;
  17. // Using the application icons.
  18. icon_file = "\\Resource\\Apps\\PicoDrive.mbm";
  19. }
  20. };
  21. view_list =
  22. {
  23. VIEW_DATA
  24. {
  25. uid=EViewIdPrimaryView;
  26. screen_mode=0;
  27. caption_and_icon =
  28. {
  29. CAPTION_AND_ICON_INFO
  30. {
  31. caption = "PicoDrive";
  32. number_of_icons = 3;
  33. icon_file = "\\Resource\\Apps\\PicoDrive.mbm";
  34. }
  35. };
  36. },
  37. VIEW_DATA
  38. {
  39. uid=EViewIdPrimaryView;
  40. screen_mode=EQikScreenModeSmallPortrait;
  41. caption_and_icon =
  42. {
  43. CAPTION_AND_ICON_INFO
  44. {
  45. caption = "PicoDrive";
  46. number_of_icons = 3;
  47. icon_file = "\\Resource\\Apps\\PicoDrive.mbm";
  48. }
  49. };
  50. }
  51. };
  52. }