]> git.eshelyaron.com Git - emacs.git/commitdiff
Update Android port
authorPo Lu <luangruo@yahoo.com>
Thu, 9 Mar 2023 03:27:00 +0000 (11:27 +0800)
committerPo Lu <luangruo@yahoo.com>
Thu, 9 Mar 2023 03:27:00 +0000 (11:27 +0800)
* java/org/gnu/emacs/EmacsContextMenu.java (EmacsContextMenu)
(addItem): New argument `tooltip'.

java/org/gnu/emacs/EmacsContextMenu.java

index dec5e148a8e8013e803042b57831b6bfd05dca2f..0553ff9d4a3c34c88932afae0027f313e5f791cc 100644 (file)
@@ -139,11 +139,14 @@ public final class EmacsContextMenu
 
      If this is not a submenu and ISCHECKABLE is set, make the item
      checkable.  Likewise, if ISCHECKED is set, make the item
-     checked.  */
+     checked.
+
+     If TOOLTIP is non-NULL, set the menu item tooltip to TOOLTIP.  */
 
   public void
   addItem (int itemID, String itemName, boolean isEnabled,
-          boolean isCheckable, boolean isChecked)
+          boolean isCheckable, boolean isChecked,
+          String tooltip)
   {
     Item item;
 
@@ -153,6 +156,7 @@ public final class EmacsContextMenu
     item.isEnabled = isEnabled;
     item.isCheckable = isCheckable;
     item.isChecked = isChecked;
+    item.tooltip = tooltip;
 
     menuItems.add (item);
   }