Lines Matching refs:mnemonic

1228      * Returns the keyboard mnemonic for accessing the specified tab.
1229 * The mnemonic is the key which when combined with the look and feel's
1234 * @param tabIndex the index of the tab that the mnemonic refers to
1235 * @return the key code which represents the mnemonic;
1236 * -1 if a mnemonic is not specified for the tab
1252 * provide decoration for as representing the mnemonic character.
1255 * @param tabIndex the index of the tab that the mnemonic refers to
1256 * @return index representing mnemonic character if one exists;
1586 * text should be decorated to represent the mnemonic. Not all look and
1588 * no mnemonic for this tab, or you do not wish the mnemonic to be
1592 * mnemonic change (such as the mnemonic itself, the text...).
1595 * the text at tab index 3 was 'Apple Price', with a mnemonic of 'p',
1601 * that each tab has a unique mnemonic or unpredictable results may
1605 * @param tabIndex the index of the tab that the mnemonic refers to
1620 * mnemonic at
1631 * Sets the keyboard mnemonic for accessing the specified tab.
1632 * The mnemonic is the key which when combined with the look and feel's
1636 * A mnemonic must correspond to a single key on the keyboard
1645 * This will update the displayed mnemonic property for the specified
1649 * @param tabIndex the index of the tab that the mnemonic refers to
1650 * @param mnemonic the key code which represents the mnemonic
1662 public void setMnemonicAt(int tabIndex, int mnemonic) {
1666 page.setMnemonic(mnemonic);
2044 int mnemonic = -1;
2080 void setMnemonic(int mnemonic) {
2081 this.mnemonic = mnemonic;
2086 return mnemonic;
2090 * Sets the page displayed mnemonic index
2098 "Invalid mnemonic index: " + mnemonicIndex);
2107 * Returns the page displayed mnemonic index
2115 SwingUtilities.findDisplayedMnemonicIndex(title, mnemonic));