PageRenderTime 31ms CodeModel.GetById 14ms RepoModel.GetById 1ms app.codeStats 0ms

/indra/newview/skins/default/xui/en/menu_text_editor.xml

https://bitbucket.org/lindenlab/viewer-beta/
XML | 49 lines | 49 code | 0 blank | 0 comment | 0 complexity | 78eddc79faade10913f3b5ae92147a71 MD5 | raw file
Possible License(s): LGPL-2.1
  1. <?xml version="1.0" encoding="utf-8" standalone="yes" ?>
  2. <context_menu
  3. name="Text editor context menu">
  4. <menu_item_call
  5. label="Cut"
  6. layout="topleft"
  7. name="Cut">
  8. <menu_item_call.on_click
  9. function="Edit.Cut" />
  10. <menu_item_call.on_enable
  11. function="Edit.EnableCut" />
  12. </menu_item_call>
  13. <menu_item_call
  14. label="Copy"
  15. layout="topleft"
  16. name="Copy">
  17. <menu_item_call.on_click
  18. function="Edit.Copy" />
  19. <menu_item_call.on_enable
  20. function="Edit.EnableCopy" />
  21. </menu_item_call>
  22. <menu_item_call
  23. label="Paste"
  24. layout="topleft"
  25. name="Paste">
  26. <menu_item_call.on_click
  27. function="Edit.Paste" />
  28. <menu_item_call.on_enable
  29. function="Edit.EnablePaste" />
  30. </menu_item_call>
  31. <menu_item_call
  32. label="Delete"
  33. layout="topleft"
  34. name="Delete">
  35. <menu_item_call.on_click
  36. function="Edit.Delete" />
  37. <menu_item_call.on_enable
  38. function="Edit.EnableDelete" />
  39. </menu_item_call>
  40. <menu_item_call
  41. label="Select All"
  42. layout="topleft"
  43. name="Select All">
  44. <menu_item_call.on_click
  45. function="Edit.SelectAll" />
  46. <menu_item_call.on_enable
  47. function="Edit.EnableSelectAll" />
  48. </menu_item_call>
  49. </context_menu>