-
Notifications
You must be signed in to change notification settings - Fork 194
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 support for alternative tagging of the presets. #126
base: master
Are you sure you want to change the base?
Changes from all commits
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 | ||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -18,7 +18,6 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||
import java.util.LinkedHashSet; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
import java.util.List; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
import java.util.Map; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
import java.util.Objects; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
import java.util.Set; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
import java.util.concurrent.CompletableFuture; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
import java.util.function.Predicate; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -419,23 +418,43 @@ public void applyComponentOrientation(ComponentOrientation o) { | |||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
JPanel linkPanel = new JPanel(new GridBagLayout()); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
TaggingPresetItem previous = null; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
List<PresetLink> alternativeTags = new ArrayList<>(); //list to store PresetLinks with alternative="true" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
List<PresetLink> editAlsoTags = new ArrayList<>(); //list to store other presetLinks | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
for (TaggingPresetItem i : data) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (i instanceof Link) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
i.addToPanel(linkPanel, itemGuiSupport); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.hasElements = true; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (i instanceof PresetLink) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
PresetLink link = (PresetLink) i; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (!(previous instanceof PresetLink && Objects.equals(((PresetLink) previous).text, link.text))) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
itemPanel.add(link.createLabel(), GBC.eol().insets(0, 8, 0, 0)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (link.isAlternative()) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
alternativeTags.add(link); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
editAlsoTags.add(link); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (i.addToPanel(itemPanel, itemGuiSupport)) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (!(i instanceof PresetLink) && (i.addToPanel(itemPanel, itemGuiSupport))) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
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. You might want to add a comment for this (e.g. "Not adding preset links to panel here since we want to order alternative tags and tags that users may want to use in addition"). |
||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.hasElements = true; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
previous = i; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (!alternativeTags.isEmpty()) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
PresetLink link = new PresetLink(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
itemPanel.add(link.createAlternativeLabel(), GBC.eol().insets(0, 8, 0, 0)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
for (PresetLink links : alternativeTags) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
links.addToPanel(itemPanel, itemGuiSupport); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.hasElements = true; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (!editAlsoTags.isEmpty()) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
PresetLink link = new PresetLink(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
itemPanel.add(link.createLabel(), GBC.eol().insets(0, 8, 0, 0)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
for (PresetLink links : editAlsoTags) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
links.addToPanel(itemPanel, itemGuiSupport); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.hasElements = true; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+442
to
+457
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. If you consolidate the
Suggested change
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.
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.add(itemPanel, GBC.eol().fill()); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
p.add(linkPanel, GBC.eol().fill()); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -44,12 +44,40 @@ public void mouseClicked(MouseEvent e) { | |||||||||||||||||||||||||||||||
/** The exact name of the preset to link to. Required. */ | ||||||||||||||||||||||||||||||||
public String preset_name = ""; // NOSONAR | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||
* true if the PresetLink points to the alternative tagging of the preset. | ||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||
private boolean alternative; | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||
* Gets the alternative for the preset | ||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||
public boolean isAlternative() { | ||||||||||||||||||||||||||||||||
return alternative; | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||
* Sets the alternative for the preset. | ||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||
public void setAlternative(boolean alternative) { | ||||||||||||||||||||||||||||||||
this.alternative = alternative; | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||
* Creates a label to be inserted above this link | ||||||||||||||||||||||||||||||||
* @return a label | ||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||
public JLabel createLabel() { | ||||||||||||||||||||||||||||||||
initializeLocaleText(tr("Edit also …")); | ||||||||||||||||||||||||||||||||
initializeLocaleText(tr("Additional tags to edit")); | ||||||||||||||||||||||||||||||||
return new JLabel(locale_text); | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||
* Creates a label to be inserted above the alternative presets | ||||||||||||||||||||||||||||||||
* @return a label | ||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||
public JLabel createAlternativeLabel() { | ||||||||||||||||||||||||||||||||
initializeLocaleText(tr("Similar but different tags")); | ||||||||||||||||||||||||||||||||
Comment on lines
+71
to
+80
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. We only use
Suggested change
|
||||||||||||||||||||||||||||||||
return new JLabel(locale_text); | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
|
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'm not quite certain what you are trying to say/change here.