Skip to main content

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.

Jump to: navigation, search

Scout/Concepts/ViewButton


Scout
Wiki Home
Website
DownloadGit
Community
ForumsBlogTwitterG+
Bugzilla
Bugzilla


Specific type of Action.

  • implements: I obj.pngIViewButton
  • extends: C obj.pngAbstractViewButton

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: C obj.pngAbstractOutlineViewButton ) OutlineViewButtons link the Desktop with an Outline.

Screenshot

Here an example with the Swing Nimbus look and feel: Scout ViewButtons Nimbus.png

Here an example with the Swing Rayo look and feel: Scout ViewButtons Rayo.png

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.


See Also

Back to the top