Skip to main content

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.

Jump to: navigation, search

Scout/Tutorial/3.8/Rayo Look and Feel

< Scout‎ | Tutorial‎ | 3.8
Revision as of 09:27, 23 January 2012 by Unnamed Poltroon (Talk)

The Scout documentation has been moved to https://eclipsescout.github.io/.http://wiki.eclipse.org/Scout/Tutorial/Minicrm/Write_the_first_page#Add_colums_to_the_table

Introduction

Rayo is a modern Look and Feel that is based on Synth Look and Feel. In Synth all painting is delegated to components without requiring any code to be written. Rayo is a skinnable Look and Feel that can be configured in an XML property file.

In this tutorial a simple HelloWorld Scout application will be customized with the Rayo Look and Feel.

Getting started with Rayo

Rayo Look and Feel can be found at the Eclipse Marketplace. To download Rayo click on "Install New Software" in Eclipse and add the URL https://tools.bsiag.com/marketplace/rayo as shown in the pictures.

[picture 1]

[picture 2]

Using Rayo

After installation of Rayo the plugin com.bsiag.scout.rt.ui.swing.rayo and the fragment com.bsiag.scout.rt.ui.swing.laf.rayo.fragment are available and will be added to our Scout application later.

Create a Eclipse Scout Project

  • As described in this The Scout documentation has been moved to https://eclipsescout.github.io/. we create a simple Scout application "tutorial.rayo" with an outline tree and a table form.
  • Next create a "StandardOutline" in the Scout Explorer similar as shown in this The Scout documentation has been moved to https://eclipsescout.github.io/.. Add a CompanyTablePage with some columns in the table to the StandardOutline as described The Scout documentation has been moved to https://eclipsescout.github.io/..

Back to the top