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

Difference between revisions of "Scout/Tutorial/3.8/Rayo Look and Feel"

< Scout‎ | Tutorial‎ | 3.8
(New page: {{ScoutPage|cat=Tutorial}} == 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 ...)
 
Line 1: Line 1:
{{ScoutPage|cat=Tutorial}}
+
{{ScoutPage|cat=Tutorial}}http://wiki.eclipse.org/Scout/Tutorial/Minicrm/Write_the_first_page#Add_colums_to_the_table
  
 
== Introduction ==
 
== Introduction ==
Line 16: Line 16:
 
[picture 2]
 
[picture 2]
  
== Using Rayo ===
+
== 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.
+
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 {{ScoutLink|Tutorial|Minicrm/New_Eclipse_Scout_Project|name=tutorial}} 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 {{ScoutLink|Tutorial|Minicrm/Write_the_first_page#Add_an_Outline_first|name=tutorial}}. Add a CompanyTablePage with some columns in the table to the StandardOutline as described {{ScoutLink|Tutorial|Minicrm/Write_the_first_page#Add_a_Page_to_the_Outline|name=here}}.

Revision as of 09:27, 23 January 2012

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