-
-
Notifications
You must be signed in to change notification settings - Fork 7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add per-session recently used boards list #8607
base: master
Are you sure you want to change the base?
Changes from 2 commits
0096b38
94f6bb5
9083508
b21cfa0
c0710e0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -117,6 +117,13 @@ public class Base { | |
List<Editor> editors = Collections.synchronizedList(new ArrayList<Editor>()); | ||
Editor activeEditor; | ||
|
||
private static JMenu boardMenu; | ||
private static ButtonGroup boardsButtonGroup; | ||
private static ButtonGroup recentBoardsButtonGroup; | ||
private static Map<String, ButtonGroup> buttonGroupsMap; | ||
private static List<JMenuItem> menuItemsToClickAfterStartup; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why make this a static variable? It used to be a local variable, but now it is used in two places to pass to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note that this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh, seems you partially fixed this in your next commit, where one of the occurences is again a local variable, but the other one now still uses the instance variable for no apparent reason. I would make both a local variable, and revert the name change with the leading |
||
private static MenuScroller boardMenuScroller; | ||
|
||
// these menus are shared so that the board and serial port selections | ||
// are the same for all windows (since the board and serial port that are | ||
// actually used are determined by the preferences, which are shared) | ||
|
@@ -1313,6 +1320,63 @@ public void rebuildExamplesMenu(JMenu menu) { | |
private static String priorPlatformFolder; | ||
private static boolean newLibraryImported; | ||
|
||
public void selectTargetBoard(TargetBoard targetBoard) { | ||
for (int i = 0; i < boardMenu.getItemCount(); i++) { | ||
JMenuItem menuItem = boardMenu.getItem(i); | ||
if (!(menuItem instanceof JRadioButtonMenuItem)) { | ||
continue; | ||
} | ||
|
||
JRadioButtonMenuItem radioButtonMenuItem = ((JRadioButtonMenuItem) menuItem); | ||
if (targetBoard.getName().equals(radioButtonMenuItem.getText())) { | ||
radioButtonMenuItem.setSelected(true); | ||
break; | ||
} | ||
} | ||
|
||
BaseNoGui.selectBoard(targetBoard); | ||
filterVisibilityOfSubsequentBoardMenus(boardsCustomMenus, targetBoard, 1); | ||
|
||
onBoardOrPortChange(); | ||
rebuildImportMenu(Editor.importMenu); | ||
rebuildExamplesMenu(Editor.examplesMenu); | ||
try { | ||
rebuildRecentBoardsMenu(); | ||
} catch (Exception e) { | ||
// fail silently | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do we need this? Please don't eat exceptions... |
||
} | ||
} | ||
|
||
public void rebuildRecentBoardsMenu() throws Exception { | ||
|
||
Enumeration<AbstractButton> btns = recentBoardsButtonGroup.getElements(); | ||
while (btns.hasMoreElements()) { | ||
AbstractButton x = btns.nextElement(); | ||
if (x.isSelected()) { | ||
return; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why this return? |
||
} | ||
} | ||
btns = recentBoardsButtonGroup.getElements(); | ||
while (btns.hasMoreElements()) { | ||
AbstractButton x = btns.nextElement(); | ||
boardMenu.remove(x); | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why all this bookkeeping? It seems that |
||
int index = 0; | ||
for (TargetBoard board : BaseNoGui.getRecentlyUsedBoards()) { | ||
JMenuItem item = createBoardMenusAndCustomMenus(boardsCustomMenus, menuItemsToClickAfterStartup, | ||
buttonGroupsMap, | ||
board, board.getContainerPlatform(), board.getContainerPlatform().getContainerPackage()); | ||
boardMenu.insert(item, 3); | ||
item.setAccelerator(KeyStroke.getKeyStroke('0' + index, | ||
Toolkit.getDefaultToolkit().getMenuShortcutKeyMask() | | ||
ActionEvent.SHIFT_MASK)); | ||
recentBoardsButtonGroup.add(item); | ||
boardsButtonGroup.add(item); | ||
index ++; | ||
} | ||
boardMenuScroller.setTopFixedCount(3 + index); | ||
} | ||
|
||
public void onBoardOrPortChange() { | ||
BaseNoGui.onBoardOrPortChange(); | ||
|
||
|
@@ -1406,9 +1470,10 @@ public void rebuildBoardsMenu() throws Exception { | |
boardsCustomMenus = new LinkedList<>(); | ||
|
||
// The first custom menu is the "Board" selection submenu | ||
JMenu boardMenu = new JMenu(tr("Board")); | ||
boardMenu = new JMenu(tr("Board")); | ||
boardMenu.putClientProperty("removeOnWindowDeactivation", true); | ||
MenuScroller.setScrollerFor(boardMenu).setTopFixedCount(1); | ||
boardMenuScroller = MenuScroller.setScrollerFor(boardMenu); | ||
boardMenuScroller.setTopFixedCount(1); | ||
|
||
boardMenu.add(new JMenuItem(new AbstractAction(tr("Boards Manager...")) { | ||
public void actionPerformed(ActionEvent actionevent) { | ||
|
@@ -1448,21 +1513,26 @@ public void actionPerformed(ActionEvent actionevent) { | |
boardsCustomMenus.add(customMenu); | ||
} | ||
|
||
List<JMenuItem> menuItemsToClickAfterStartup = new LinkedList<>(); | ||
menuItemsToClickAfterStartup = new LinkedList<>(); | ||
boardsButtonGroup = new ButtonGroup(); | ||
recentBoardsButtonGroup = new ButtonGroup(); | ||
buttonGroupsMap = new HashMap<>(); | ||
|
||
ButtonGroup boardsButtonGroup = new ButtonGroup(); | ||
Map<String, ButtonGroup> buttonGroupsMap = new HashMap<>(); | ||
if (BaseNoGui.getRecentlyUsedBoards() != null) { | ||
JMenuItem recentLabel = new JMenuItem(tr("Recently used boards")); | ||
recentLabel.setEnabled(false); | ||
boardMenu.add(recentLabel); | ||
rebuildRecentBoardsMenu(); | ||
//rebuildRecentBoardsMenu(null); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This commented line can be dropped? |
||
} | ||
|
||
// Cycle through all packages | ||
boolean first = true; | ||
for (TargetPackage targetPackage : BaseNoGui.packages.values()) { | ||
// For every package cycle through all platform | ||
for (TargetPlatform targetPlatform : targetPackage.platforms()) { | ||
|
||
// Add a separator from the previous platform | ||
if (!first) | ||
boardMenu.add(new JSeparator()); | ||
first = false; | ||
boardMenu.add(new JSeparator()); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this separator be present for the first platform when there are no recently used boards? Rather than checking that, perhaps this could just see if There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems you fixed this in the next commit by always including the LRU header, I believe? I guess it will always have a value, since on startup some board will be selected. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And a newer commit makes the LRU header again optional (when the preference is set to 0), so I again wonder if that produces a duplicate separator? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Love to see that feature... |
||
|
||
// Add a title for each platform | ||
String platformLabel = targetPlatform.getPreferences().get("name"); | ||
|
@@ -1512,12 +1582,7 @@ private JRadioButtonMenuItem createBoardMenusAndCustomMenus( | |
@SuppressWarnings("serial") | ||
Action action = new AbstractAction(board.getName()) { | ||
public void actionPerformed(ActionEvent actionevent) { | ||
BaseNoGui.selectBoard((TargetBoard) getValue("b")); | ||
filterVisibilityOfSubsequentBoardMenus(boardsCustomMenus, (TargetBoard) getValue("b"), 1); | ||
|
||
onBoardOrPortChange(); | ||
rebuildImportMenu(Editor.importMenu); | ||
rebuildExamplesMenu(Editor.examplesMenu); | ||
selectTargetBoard((TargetBoard) getValue("b")); | ||
} | ||
}; | ||
action.putValue("b", board); | ||
|
@@ -1533,6 +1598,9 @@ public void actionPerformed(ActionEvent actionevent) { | |
for (final String menuId : customMenus.keySet()) { | ||
String title = customMenus.get(menuId); | ||
JMenu menu = getBoardCustomMenu(tr(title)); | ||
if (menu == null) { | ||
continue; | ||
} | ||
|
||
if (board.hasMenu(menuId)) { | ||
PreferencesMap boardCustomMenu = board.getMenuLabels(menuId); | ||
|
@@ -1595,13 +1663,13 @@ private static boolean ifThereAreVisibleItemsOn(JMenu menu) { | |
return false; | ||
} | ||
|
||
private JMenu getBoardCustomMenu(String label) throws Exception { | ||
private JMenu getBoardCustomMenu(String label) { | ||
for (JMenu menu : boardsCustomMenus) { | ||
if (label.equals(menu.getText())) { | ||
return menu; | ||
} | ||
} | ||
throw new Exception("Custom menu not found!"); | ||
return null; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why this change? Is this case suddenly a normal occurence with this LRU list? Or is this just an unrelated improvement (that would perhaps be better in a separate commit)? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's indeed a separate commit, thanks |
||
} | ||
|
||
public List<JMenuItem> getProgrammerMenus() { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -915,6 +915,12 @@ static public void saveFile(String str, File file) throws IOException { | |
} | ||
} | ||
|
||
static private LinkedList<TargetBoard> recentlyUsedBoards = new LinkedList<TargetBoard>(); | ||
|
||
static public LinkedList<TargetBoard> getRecentlyUsedBoards() { | ||
return recentlyUsedBoards; | ||
} | ||
|
||
static public void selectBoard(TargetBoard targetBoard) { | ||
TargetPlatform targetPlatform = targetBoard.getContainerPlatform(); | ||
TargetPackage targetPackage = targetPlatform.getContainerPackage(); | ||
|
@@ -926,6 +932,13 @@ static public void selectBoard(TargetBoard targetBoard) { | |
File platformFolder = targetPlatform.getFolder(); | ||
PreferencesData.set("runtime.platform.path", platformFolder.getAbsolutePath()); | ||
PreferencesData.set("runtime.hardware.path", platformFolder.getParentFile().getAbsolutePath()); | ||
|
||
if (!recentlyUsedBoards.contains(targetBoard)) { | ||
recentlyUsedBoards.add(targetBoard); | ||
} | ||
if (recentlyUsedBoards.size() > 4) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should the size of the LRU list be a preference? I'm pretty sure people will be asking for more entries soon :-) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Agree, a preference will not hurt and will be future proof 🙂 |
||
recentlyUsedBoards.remove(); | ||
} | ||
} | ||
|
||
public static void selectSerialPort(String port) { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does
recentBoardsButtonGroup
need to be a ButtonGroup? AFAIU, a ButtonGroup is intended to group radio buttons so only one of them can be selected at once, but all recent-boards radiobuttons are also added toboardsButtonGroup
, so they are already mutually exclusive. It seems you are usingrecentBoardsButtonGroup
just to keep track of all recent-boards menu items, and then it is probably better to use a plain LinkedList or other collection?