home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 March / PCWorld_2007-03_cd.bin / komunikace / nvu / nvu-1.0-cs-CZ.win32.installer.exe / chrome / toolkit.jar / content / global / editMenuOverlay.js < prev    next >
Text File  |  2003-10-14  |  814b  |  35 lines

  1.  
  2. // update menu items that rely on focus
  3. function goUpdateGlobalEditMenuItems()
  4. {
  5.   goUpdateCommand("cmd_undo");
  6.   goUpdateCommand("cmd_redo");
  7.   goUpdateCommand("cmd_cut");
  8.   goUpdateCommand("cmd_copy");
  9.   goUpdateCommand("cmd_paste");
  10.   goUpdateCommand("cmd_selectAll");
  11.   goUpdateCommand("cmd_delete");
  12. }
  13.  
  14. // update menu items that rely on the current selection
  15. function goUpdateSelectEditMenuItems()
  16. {
  17.   goUpdateCommand("cmd_cut");
  18.   goUpdateCommand("cmd_copy");
  19.   goUpdateCommand("cmd_delete");
  20.   goUpdateCommand("cmd_selectAll");
  21. }
  22.  
  23. // update menu items that relate to undo/redo
  24. function goUpdateUndoEditMenuItems()
  25. {
  26.   goUpdateCommand("cmd_undo");
  27.   goUpdateCommand("cmd_redo");
  28. }
  29.  
  30. // update menu items that depend on clipboard contents
  31. function goUpdatePasteMenuItems()
  32. {
  33.   goUpdateCommand("cmd_paste");
  34. }
  35.