@@ -1424,15 +1424,45 @@ protected void onIndexesUpdated() throws Exception {
1424
1424
onBoardOrPortChange ();
1425
1425
}
1426
1426
1427
+ public static void setMenuItemMnemonicAlphaNum (JMenuItem item , int i , Boolean repeat ) {
1428
+ char c ;
1429
+ // JMenu hotkeys treats lower and upper case the same,
1430
+ // so we only do lower, then digits, for visibility
1431
+ if (i >=26 +10 ) {
1432
+ if (!repeat ) return ;
1433
+ i = i %(26 +10 );
1434
+ }
1435
+ if (i >=0 && i <26 ) {
1436
+ c = (char )(i +'a' );
1437
+ } else if (i >=26 && i <(26 +10 )) {
1438
+ c = (char )(i -26 +'0' );
1439
+ } else {
1440
+ return ;
1441
+ }
1442
+ item .setText (c + ". " + item .getText ());
1443
+ item .setMnemonic (c );
1444
+ }
1445
+
1446
+ public static void setMenuItemMnemonicNum10 (JMenuItem item , int i , Boolean repeat ) {
1447
+ char c ;
1448
+ if (i >=0 && (repeat || i <10 )) {
1449
+ c = (char )((i %10 )+'0' );
1450
+ item .setText (c + ". " + item .getText ());
1451
+ item .setMnemonic (c );
1452
+ }
1453
+ }
1454
+
1455
+
1427
1456
public void rebuildBoardsMenu () throws Exception {
1428
1457
boardsCustomMenus = new LinkedList <>();
1429
1458
1430
1459
// The first custom menu is the "Board" selection submenu
1431
1460
JMenu boardMenu = new JMenu (tr ("Board" ));
1461
+ boardMenu .setMnemonic ('B' );
1432
1462
boardMenu .putClientProperty ("removeOnWindowDeactivation" , true );
1433
1463
MenuScroller .setScrollerFor (boardMenu ).setTopFixedCount (1 );
1434
1464
1435
- boardMenu . add ( new JMenuItem (new AbstractAction (tr ("Boards Manager..." )) {
1465
+ JMenuItem menuItem = new JMenuItem (new AbstractAction (tr ("Boards Manager..." )) {
1436
1466
public void actionPerformed (ActionEvent actionevent ) {
1437
1467
String filterText = "" ;
1438
1468
String dropdownItem = "" ;
@@ -1448,7 +1478,9 @@ public void actionPerformed(ActionEvent actionevent) {
1448
1478
e .printStackTrace ();
1449
1479
}
1450
1480
}
1451
- }));
1481
+ });
1482
+ menuItem .setMnemonic ('M' );
1483
+ boardMenu .add (menuItem );
1452
1484
boardsCustomMenus .add (boardMenu );
1453
1485
1454
1486
// If there are no platforms installed we are done
@@ -1497,12 +1529,15 @@ public void actionPerformed(ActionEvent actionevent) {
1497
1529
platformMenus .add (platformBoardsMenu );
1498
1530
1499
1531
// Cycle through all boards of this platform
1532
+ int i =0 ;
1500
1533
for (TargetBoard board : targetPlatform .getBoards ().values ()) {
1501
1534
if (board .getPreferences ().get ("hide" ) != null )
1502
1535
continue ;
1503
1536
JMenuItem item = createBoardMenusAndCustomMenus (boardsCustomMenus , menuItemsToClickAfterStartup ,
1504
1537
buttonGroupsMap ,
1505
1538
board , targetPlatform , targetPackage );
1539
+ setMenuItemMnemonicAlphaNum (item , i , true );
1540
+ i ++;
1506
1541
platformBoardsMenu .add (item );
1507
1542
boardsButtonGroup .add (item );
1508
1543
}
@@ -1515,16 +1550,26 @@ public void actionPerformed(ActionEvent actionevent) {
1515
1550
if (platformMenus .size () == 1 ) {
1516
1551
// When just one platform exists, add the board items directly,
1517
1552
// rather than using a submenu
1553
+ int i =0 ;
1518
1554
for (Component boardItem : platformMenus .get (0 ).getMenuComponents ()) {
1555
+ // For mnemonics, need to test single-platform setups:
1556
+ // Eg. setMenuItemMnemonicAlphaNum((JMenuItem)boardItem, i, true); i++;
1519
1557
boardMenu .add (boardItem );
1520
1558
if (firstBoardItem == null )
1521
1559
firstBoardItem = (JMenuItem )boardItem ;
1522
1560
}
1523
1561
} else {
1524
1562
// For multiple platforms, use submenus
1563
+ // int i=0;
1564
+ String keys ="" ;
1565
+ int i =0 ;
1525
1566
for (JMenu platformMenu : platformMenus ) {
1526
1567
if (firstBoardItem == null && platformMenu .getItemCount () > 0 )
1527
1568
firstBoardItem = platformMenu .getItem (0 );
1569
+ // Ideally we'd exclude the manually-assigned "Board (M)anager" key
1570
+ // when assigning a mnemonic to this item
1571
+ setMenuItemMnemonicAlphaNum (platformMenu , i , true );
1572
+ i ++;
1528
1573
boardMenu .add (platformMenu );
1529
1574
}
1530
1575
}
0 commit comments