Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
Nebula CheckboxGroup
Introduction
This widget with a checkbox. When one clicks on the checkbox, the whole content of the group is deactivated.
Contents
Usage
This widget is divided in 2 parts :
- The checkbox that activates/deactivates the content
- You can set/get the text and the font of the checkbox (by calling the methods
setText()
andsetFont()
- You can get the value of the selection by using the getter
boolean isActivated()
- You can set the state of this checkbox (and thus enable or disable the content of the group) by using the methods
activate()
anddeactivate()
- You can set/get the text and the font of the checkbox (by calling the methods
- The content, which is a Composite, is accessible with the getter
getContent()
- Use this composite to store elements
Example
An example called SnippetCheckBoxGroup is available in the plug_in org.eclipse.nebula.widgets.opal.checkboxgroup.snippets.
This example is also available here : SnippetCheckBoxGroup.java