Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
Scout/Concepts/ViewButton
Scout |
Wiki Home |
Website |
Download • Git |
Community |
Forums • Blog • Twitter • G+ |
Bugzilla |
Bugzilla |
Specific type of Action.
Contents
Description
ViewButton can be used to switch beetween different views in the main windows of an Outline based application. They appear on top of the page area (page tree and page content) in the main windows.
The Rayo look and feel render them as tabs.
Outline ViewButton
Specific case of a ViewButton (it extends: AbstractOutlineViewButton
)
OutlineViewButtons link the Desktop with an Outline.
Screenshot
Here an example with the Swing Nimbus look and feel:
Here an example with the Swing Rayo look and feel:
Examples
Here an example of a simple view button, that has nothing to do with an outline:
@Order(30.0) public class DrawLineViewButton extends AbstractViewButton { @Override protected String getConfiguredIconId() { return Icons.Pen; } @Override protected String getConfiguredText() { return TEXTS.get("DrawLine"); } @Override protected void execAction() throws ProcessingException { MessageBox.showOkMessage(TEXTS.get("DrawLineTitle"), TEXTS.get("DrawLineInfo"), null); setSelected(false); } }
Here an example of a outline view button:
@Order(10.0) public class StandardOutlineViewButton extends AbstractOutlineViewButton { public StandardOutlineViewButton() { super(Desktop.this, StandardOutline.class); } @Override protected String getConfiguredText() { return TEXTS.get("Standard"); } }
Properties
Defined with getConfiguredXxxxxx() methods.
Events
Defined with execXxxxxx() methods.