-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Enhance side pane toggle #1605
Enhance side pane toggle #1605
Changes from 1 commit
0de22f1
8f454e7
9e07cee
2317d85
7c5179a
b339cd1
00f255b
f6564a8
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 |
---|---|---|
|
@@ -190,11 +190,7 @@ public class JabRefFrame extends JFrame implements OutputPrinter { | |
// for the name and message strings. | ||
|
||
/* References to the toggle buttons in the toolbar */ | ||
// the groups interface | ||
public JToggleButton groupToggle; | ||
private JToggleButton previewToggle; | ||
private JToggleButton fetcherToggle; | ||
|
||
|
||
private final OpenDatabaseAction open = new OpenDatabaseAction(this, true); | ||
private final EditModeAction editModeAction = new EditModeAction(); | ||
|
@@ -351,11 +347,6 @@ public void actionPerformed(ActionEvent e) { | |
} | ||
}); | ||
|
||
private final Action toggleGroups = enableToggle(new GeneralAction(Actions.TOGGLE_GROUPS, | ||
Localization.menuTitle("Toggle groups interface"), | ||
Localization.lang("Toggle groups interface"), | ||
Globals.getKeyPrefs().getKey(KeyBinding.TOGGLE_GROUPS_INTERFACE), | ||
IconTheme.JabRefIcon.TOGGLE_GROUPS.getIcon())); | ||
private final AbstractAction addToGroup = new GeneralAction(Actions.ADD_TO_GROUP, Localization.lang("Add to group") + ELLIPSES); | ||
private final AbstractAction removeFromGroup = new GeneralAction(Actions.REMOVE_FROM_GROUP, | ||
Localization.lang("Remove from group") + ELLIPSES); | ||
|
@@ -394,8 +385,6 @@ public void actionPerformed(ActionEvent e) { | |
Localization.lang("Will write XMP-metadata to the PDFs linked from selected entries."), | ||
Globals.getKeyPrefs().getKey(KeyBinding.WRITE_XMP)); | ||
|
||
private JMenuItem optMenuItem; | ||
|
||
private final AbstractAction openFolder = new GeneralAction(Actions.OPEN_FOLDER, | ||
Localization.menuTitle("Open folder"), Localization.lang("Open folder"), | ||
Globals.getKeyPrefs().getKey(KeyBinding.OPEN_FOLDER)); | ||
|
@@ -481,7 +470,7 @@ public void actionPerformed(ActionEvent e) { | |
private PushToApplications pushApplications; | ||
|
||
private GeneralFetcher generalFetcher; | ||
|
||
private OpenOfficePanel openOfficePanel; | ||
private GroupSelector groupSelector; | ||
|
||
private int previousTabCount = -1; | ||
|
@@ -662,9 +651,10 @@ public void windowClosing(WindowEvent e) { | |
|
||
currentBasePanel.getPreviewPanel().updateLayout(); | ||
|
||
groupToggle.setSelected(sidePaneManager.isComponentVisible("groups")); | ||
groupSelector.getAction().setSelected(sidePaneManager.isComponentVisible(GroupSelector.NAME)); | ||
previewToggle.setSelected(Globals.prefs.getPreviewPreferences().isPreviewPanelEnabled()); | ||
fetcherToggle.setSelected(sidePaneManager.isComponentVisible(generalFetcher.getTitle())); | ||
generalFetcher.getAction().setSelected(sidePaneManager.isComponentVisible(GeneralFetcher.NAME)); | ||
openOfficePanel.getAction().setSelected(sidePaneManager.isComponentVisible(OpenOfficePanel.NAME)); | ||
Globals.getFocusListener().setFocused(currentBasePanel.getMainTable()); | ||
setWindowTitle(); | ||
editModeAction.initName(); | ||
|
@@ -724,10 +714,10 @@ private void initSidePane() { | |
sidePaneManager = new SidePaneManager(this); | ||
|
||
groupSelector = new GroupSelector(this, sidePaneManager); | ||
openOfficePanel = new OpenOfficePanel(this, sidePaneManager); | ||
generalFetcher = new GeneralFetcher(this, sidePaneManager); | ||
|
||
generalFetcher = new GeneralFetcher(sidePaneManager, this); | ||
|
||
sidePaneManager.register("groups", groupSelector); | ||
sidePaneManager.register(groupSelector); | ||
} | ||
|
||
/** | ||
|
@@ -1228,12 +1218,12 @@ private void fillMenu() { | |
search.addSeparator(); | ||
search.add(new JCheckBoxMenuItem(generalFetcher.getAction())); | ||
if (prefs.getBoolean(JabRefPreferences.WEB_SEARCH_VISIBLE)) { | ||
sidePaneManager.register(generalFetcher.getTitle(), generalFetcher); | ||
sidePaneManager.show(generalFetcher.getTitle()); | ||
sidePaneManager.register(generalFetcher); | ||
sidePaneManager.show(GeneralFetcher.NAME); | ||
} | ||
mb.add(search); | ||
|
||
groups.add(new JCheckBoxMenuItem(toggleGroups)); | ||
groups.add(new JCheckBoxMenuItem(groupSelector.getAction())); | ||
groups.addSeparator(); | ||
groups.add(addToGroup); | ||
groups.add(removeFromGroup); | ||
|
@@ -1273,7 +1263,7 @@ private void fillMenu() { | |
view.addSeparator(); | ||
view.add(new JCheckBoxMenuItem(toggleToolbar)); | ||
view.add(new JCheckBoxMenuItem(enableToggle(generalFetcher.getAction()))); | ||
view.add(new JCheckBoxMenuItem(toggleGroups)); | ||
view.add(new JCheckBoxMenuItem(groupSelector.getAction())); | ||
view.add(new JCheckBoxMenuItem(togglePreview)); | ||
view.add(getNextPreviewStyleAction()); | ||
view.add(getPreviousPreviewStyleAction()); | ||
|
@@ -1314,10 +1304,7 @@ private void fillMenu() { | |
|
||
tools.add(newSubDatabaseAction); | ||
tools.add(writeXmpAction); | ||
OpenOfficePanel otp = OpenOfficePanel.getInstance(); | ||
otp.init(this, sidePaneManager); | ||
optMenuItem = otp.getMenuItem(); | ||
tools.add(optMenuItem); | ||
tools.add(new JCheckBoxMenuItem(openOfficePanel.getAction())); | ||
tools.add(pushExternalButton.getMenuAction()); | ||
tools.addSeparator(); | ||
tools.add(openFolder); | ||
|
@@ -1475,14 +1462,12 @@ private void createToolBar() { | |
} | ||
tlb.addSeparator(); | ||
|
||
fetcherToggle = new JToggleButton(generalFetcher.getAction()); | ||
tlb.addJToggleButton(fetcherToggle); | ||
tlb.addJToggleButton(new JToggleButton(generalFetcher.getAction())); | ||
|
||
previewToggle = new JToggleButton(togglePreview); | ||
tlb.addJToggleButton(previewToggle); | ||
|
||
groupToggle = new JToggleButton(toggleGroups); | ||
tlb.addJToggleButton(groupToggle); | ||
tlb.addJToggleButton(new JToggleButton(groupSelector.getAction())); | ||
|
||
tlb.addSeparator(); | ||
|
||
|
@@ -1509,8 +1494,8 @@ private void initActions() { | |
openDatabaseOnlyActions.addAll(Arrays.asList(mergeDatabaseAction, newSubDatabaseAction, save, globalSearch, | ||
saveAs, saveSelectedAs, saveSelectedAsPlain, editModeAction, undo, redo, cut, deleteEntry, copy, paste, mark, markSpecific, unmark, | ||
unmarkAll, rankSubMenu, editEntry, selectAll, copyKey, copyCiteKey, copyKeyAndTitle, copyKeyAndLink, editPreamble, editStrings, | ||
toggleGroups, makeKeyAction, normalSearch, generalFetcher.getAction(), mergeEntries, cleanupEntries, exportToClipboard, replaceAll, | ||
sendAsEmail, downloadFullText, writeXmpAction, optMenuItem, findUnlinkedFiles, addToGroup, removeFromGroup, | ||
groupSelector.getAction(), makeKeyAction, normalSearch, generalFetcher.getAction(), mergeEntries, cleanupEntries, exportToClipboard, replaceAll, | ||
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. Maybe rename getAction -> getToggleAction ? 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. done |
||
sendAsEmail, downloadFullText, writeXmpAction, openOfficePanel.getAction(), findUnlinkedFiles, addToGroup, removeFromGroup, | ||
moveToGroup, autoLinkFile, resolveDuplicateKeys, openUrl, openFolder, openFile, togglePreview, | ||
dupliCheck, autoSetFile, newEntryAction, newSpec, customizeAction, plainTextImport, getMassSetField(), getManageKeywords(), | ||
pushExternalButton.getMenuAction(), closeDatabaseAction, getNextPreviewStyleAction(), getPreviousPreviewStyleAction(), checkIntegrity, | ||
|
@@ -2378,10 +2363,6 @@ public GroupSelector getGroupSelector() { | |
return groupSelector; | ||
} | ||
|
||
public void setFetcherToggle(boolean enabled) { | ||
fetcherToggle.setSelected(enabled); | ||
} | ||
|
||
public void setPreviewToggle(boolean enabled) { | ||
previewToggle.setSelected(enabled); | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,6 @@ public class SidePaneManager { | |
private final SidePane sidep; | ||
|
||
private final Map<String, SidePaneComponent> components = new LinkedHashMap<>(); | ||
private final Map<SidePaneComponent, String> componentNames = new HashMap<>(); | ||
|
||
private final List<SidePaneComponent> visible = new LinkedList<>(); | ||
|
||
|
@@ -67,6 +66,11 @@ public synchronized boolean isComponentVisible(String name) { | |
} | ||
} | ||
|
||
/** | ||
* if panel is visible it will be hidden and the other way around | ||
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. Please start comments with Capital letters. 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. done |
||
* | ||
* @param name name of the panel | ||
*/ | ||
public synchronized void toggle(String name) { | ||
if (isComponentVisible(name)) { | ||
hide(name); | ||
|
@@ -75,6 +79,21 @@ public synchronized void toggle(String name) { | |
} | ||
} | ||
|
||
/** | ||
* if panel is hidden it will be shown and focused | ||
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. Same as above. 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. done |
||
* if panel is visible but not focused it will be focused | ||
* ig panel is visible and focused it will be hidden | ||
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. Typo ig -> 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. done |
||
* | ||
* @param name name of the panel | ||
*/ | ||
public synchronized void toggleThreeWay(String name){ | ||
if (isComponentVisible(name) && Globals.getFocusListener().getFocused() == components.get(name)) { | ||
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. Would be nice if you could add additional brackets here, that would make it clearer. 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. I extracted the second condition |
||
hide(name); | ||
} else { | ||
show(name); | ||
} | ||
} | ||
|
||
public synchronized void show(String name) { | ||
SidePaneComponent sidePaneComponent = components.get(name); | ||
if (sidePaneComponent == null) { | ||
|
@@ -98,9 +117,8 @@ public synchronized void hide(String name) { | |
} | ||
} | ||
|
||
public synchronized void register(String name, SidePaneComponent comp) { | ||
components.put(name, comp); | ||
componentNames.put(comp, name); | ||
public synchronized void register(SidePaneComponent comp) { | ||
components.put(comp.getSidePaneName(), comp); | ||
} | ||
|
||
private synchronized void show(SidePaneComponent component) { | ||
|
@@ -114,16 +132,14 @@ private synchronized void show(SidePaneComponent component) { | |
updateView(); | ||
component.componentOpening(); | ||
} | ||
Globals.getFocusListener().setFocused(component); | ||
component.grabFocus(); | ||
} | ||
|
||
public synchronized SidePaneComponent getComponent(String name) { | ||
return components.get(name); | ||
} | ||
|
||
private synchronized String getComponentName(SidePaneComponent comp) { | ||
return componentNames.get(comp); | ||
} | ||
|
||
public synchronized void hideComponent(SidePaneComponent comp) { | ||
if (visible.contains(comp)) { | ||
comp.componentClosing(); | ||
|
@@ -168,8 +184,7 @@ private void updatePreferredPositions() { | |
// Update the preferred positions of all visible components | ||
int index = 0; | ||
for (SidePaneComponent comp : visible) { | ||
String componentName = getComponentName(comp); | ||
preferredPositions.put(componentName, index); | ||
preferredPositions.put(comp.getSidePaneName(), index); | ||
index++; | ||
} | ||
|
||
|
@@ -195,8 +210,8 @@ public PreferredIndexSort() { | |
|
||
@Override | ||
public int compare(SidePaneComponent comp1, SidePaneComponent comp2) { | ||
int pos1 = preferredPositions.getOrDefault(getComponentName(comp1), 0); | ||
int pos2 = preferredPositions.getOrDefault(getComponentName(comp2), 0); | ||
int pos1 = preferredPositions.getOrDefault(comp1.getSidePaneName(), 0); | ||
int pos2 = preferredPositions.getOrDefault(comp2.getSidePaneName(), 0); | ||
return Integer.valueOf(pos1).compareTo(pos2); | ||
} | ||
} | ||
|
@@ -231,7 +246,6 @@ public synchronized void moveDown(SidePaneComponent comp) { | |
} | ||
|
||
public synchronized void unregisterComponent(String name) { | ||
componentNames.remove(components.get(name)); | ||
components.remove(name); | ||
} | ||
|
||
|
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.
Can one simply return
"fileUpdate"
here and replace all references toNAME
with calls togetSidePaneName
?Applies also to the other side panes.
One probably needs to recode
getComponent
to not use the name but the class (as a generic version<T> T getComponent(Class<T> clazz)
)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.
I used the static
NAME
to change the state of the side panels without having an object of it at hand.I changed the
SidePaneManager
to manage the side panels in a generic way.