summaryrefslogtreecommitdiff
path: root/indra/newview/skins/default/xui/en/menu_text_editor.xml
blob: fe8489166b927c9a490bf6b189b79a279797a27b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<context_menu
 name="Text editor context menu">
  <menu_item_call
   label="Cut"
   layout="topleft"
   name="Cut">
    <menu_item_call.on_click
     function="Edit.Cut" />
    <menu_item_call.on_enable
     function="Edit.EnableCut" />
  </menu_item_call>
  <menu_item_call
   label="Copy"
   layout="topleft"
   name="Copy">
    <menu_item_call.on_click
     function="Edit.Copy" />
    <menu_item_call.on_enable
     function="Edit.EnableCopy" />
  </menu_item_call>
  <menu_item_call
   label="Paste"
   layout="topleft"
   name="Paste">
    <menu_item_call.on_click
     function="Edit.Paste" />
    <menu_item_call.on_enable
     function="Edit.EnablePaste" />
  </menu_item_call>
  <menu_item_call
   label="Delete"
   layout="topleft"
   name="Delete">
    <menu_item_call.on_click
     function="Edit.Delete" />
    <menu_item_call.on_enable
     function="Edit.EnableDelete" />
  </menu_item_call>
  <menu_item_call
   label="Select All"
   layout="topleft"
   name="Select All">
    <menu_item_call.on_click
     function="Edit.SelectAll" />
    <menu_item_call.on_enable
     function="Edit.EnableSelectAll" />
  </menu_item_call>
</context_menu>