X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fmenu%2FTMenuItem.java;h=d9dfc2ac5482b64123713f45e8b58f7f9abf3e3d;hb=12b90437b5f22c2ae6e9b9b14c3b62b60f6143e5;hp=6e455d8e99c2bc2756ff0ae23302e73fdbc001ae;hpb=a69ed767c9c07cf35cf1c5f7821fc009cfe79cd2;p=nikiroo-utils.git diff --git a/src/jexer/menu/TMenuItem.java b/src/jexer/menu/TMenuItem.java index 6e455d8..d9dfc2a 100644 --- a/src/jexer/menu/TMenuItem.java +++ b/src/jexer/menu/TMenuItem.java @@ -33,6 +33,7 @@ import jexer.TWidget; import jexer.bits.CellAttributes; import jexer.bits.GraphicsChars; import jexer.bits.MnemonicString; +import jexer.bits.StringUtils; import jexer.event.TKeypressEvent; import jexer.event.TMouseEvent; import jexer.event.TMenuEvent; @@ -104,7 +105,7 @@ public class TMenuItem extends TWidget { setY(y); setHeight(1); this.label = mnemonic.getRawLabel(); - setWidth(label.length() + 4); + setWidth(StringUtils.width(label) + 4); this.id = id; // Default state for some known menu items @@ -227,12 +228,12 @@ public class TMenuItem extends TWidget { putStringXY(2, 0, mnemonic.getRawLabel(), menuColor); if (key != null) { String keyLabel = key.toString(); - putStringXY((getWidth() - keyLabel.length() - 2), 0, keyLabel, - menuColor); + putStringXY((getWidth() - StringUtils.width(keyLabel) - 2), 0, + keyLabel, menuColor); } - if (mnemonic.getShortcutIdx() >= 0) { - putCharXY(2 + mnemonic.getShortcutIdx(), 0, mnemonic.getShortcut(), - menuMnemonicColor); + if (mnemonic.getScreenShortcutIdx() >= 0) { + putCharXY(2 + mnemonic.getScreenShortcutIdx(), 0, + mnemonic.getShortcut(), menuMnemonicColor); } if (checked) { assert (checkable); @@ -263,6 +264,30 @@ public class TMenuItem extends TWidget { this.checkable = checkable; } + /** + * Get checkable flag. + * + * @return true if this menu item is both checkable and checked + */ + public final boolean getChecked() { + return ((checkable == true) && (checked == true)); + } + + /** + * Set checked flag. Note that setting checked on an item checkable will + * do nothing. + * + * @param checked if true, and if this menu item is checkable, then + * getChecked() will return true + */ + public final void setChecked(final boolean checked) { + if (checkable) { + this.checked = checked; + } else { + this.checked = false; + } + } + /** * Get the mnemonic string for this menu item. * @@ -291,7 +316,8 @@ public class TMenuItem extends TWidget { this.key = key; if (key != null) { - int newWidth = (label.length() + 4 + key.toString().length() + 2); + int newWidth = (StringUtils.width(label) + 4 + + StringUtils.width(key.toString()) + 2); if (newWidth > getWidth()) { setWidth(newWidth); }