2cfe125f32f0e59376651046344c533d317213e8
[nikiroo-utils.git] / src / jexer / bits / MnemonicString.java
1 /*
2 * Jexer - Java Text User Interface
3 *
4 * License: LGPLv3 or later
5 *
6 * This module is licensed under the GNU Lesser General Public License
7 * Version 3. Please see the file "COPYING" in this directory for more
8 * information about the GNU Lesser General Public License Version 3.
9 *
10 * Copyright (C) 2015 Kevin Lamonte
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public License
14 * as published by the Free Software Foundation; either version 3 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this program; if not, see
24 * http://www.gnu.org/licenses/, or write to the Free Software
25 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
26 * 02110-1301 USA
27 *
28 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
29 * @version 1
30 */
31 package jexer.bits;
32
33 /**
34 * MnemonicString is used to render a string like "&File" into a highlighted
35 * 'F' and the rest of 'ile'. To insert a literal '&', use two '&&'
36 * characters, e.g. "&File && Stuff" would be "File & Stuff" with the first
37 * 'F' highlighted.
38 */
39 public final class MnemonicString {
40
41 /**
42 * Keyboard shortcut to activate this item.
43 */
44 private char shortcut;
45
46 /**
47 * Get the keyboard shortcut character.
48 *
49 * @return the highlighted character
50 */
51 public char getShortcut() {
52 return shortcut;
53 }
54
55 /**
56 * Location of the highlighted character.
57 */
58 private int shortcutIdx = -1;
59
60 /**
61 * Get location of the highlighted character.
62 *
63 * @return location of the highlighted character
64 */
65 public int getShortcutIdx() {
66 return shortcutIdx;
67 }
68
69 /**
70 * The raw (uncolored) string.
71 */
72 private String rawLabel;
73
74 /**
75 * Get the raw (uncolored) string.
76 *
77 * @return the raw (uncolored) string
78 */
79 public String getRawLabel() {
80 return rawLabel;
81 }
82
83 /**
84 * Public constructor.
85 *
86 * @param label widget label or title. Label must contain a keyboard
87 * shortcut, denoted by prefixing a letter with "&", e.g. "&File"
88 */
89 public MnemonicString(final String label) {
90
91 // Setup the menu shortcut
92 String newLabel = "";
93 boolean foundAmp = false;
94 boolean foundShortcut = false;
95 int scanShortcutIdx = 0;
96 for (int i = 0; i < label.length(); i++) {
97 char c = label.charAt(i);
98 if (c == '&') {
99 if (foundAmp) {
100 newLabel += '&';
101 scanShortcutIdx++;
102 } else {
103 foundAmp = true;
104 }
105 } else {
106 newLabel += c;
107 if (foundAmp) {
108 if (!foundShortcut) {
109 shortcut = c;
110 foundAmp = false;
111 foundShortcut = true;
112 shortcutIdx = scanShortcutIdx;
113 }
114 } else {
115 scanShortcutIdx++;
116 }
117 }
118 }
119 this.rawLabel = newLabel;
120 }
121 }