Skip to content
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

Support widget groups to resolve #310 #428

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

karlduderstadt
Copy link

@karlduderstadt karlduderstadt commented Aug 3, 2021

This adds support for widget groups by adding ItemVisibility.GROUP and Parameter annotations group and expanded as well as all related implementations to interfaces and default classes.

Intended use is for the value of String Parameters with visibility GROUP to be used to create group labels. All Parameters with a matching group annotation to that value will be added to the widget group. The expanded annotation controls whether the parameters group are showing or not.

@Parameter(visibility = ItemVisibility.GROUP)
private String basic = "basic";

@Parameter(group = "basic", label = "Number of ducks")
private int duckCount = 1;

@Parameter(visibility = ItemVisibility.GROUP, expanded = false)
private String advanced = "advanced";

@Parameter(group = "advanced", label = "Advanced duck typing")
private boolean advancedDuckTyping = true;

@Parameter(group = "advanced", label = "Starvation threshold")
private int starvationThreshold = 6;

and in scripts

#@ String (visibility = GROUP,  value = "basic") basic
#@ Integer (label = "Number of ducks", group = "basic") duckCount
#@ String (visibility = GROUP, value = "advanced", expanded = false) advanced
#@ Boolean (label = "Advanced duck typing", value = true, group = "advanced") advancedDuckTyping
#@ Integer (label = "Starvation threshold", value = 6, group = "advanced") starvationThreshold

This PR supports a complete implementation of group labels that is realized in a corresponding PR in scijava-ui-swing - scijava/scijava-ui-swing#60 and resolves issue #310

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant