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/HowTo/3.9/Add a custom GUI component"

< Scout‎ | HowTo‎ | 3.9
(New page: {{ScoutPage|cat=HowTo 3.9}} If the controls provided by Scout don’t fit your needs, you can easily create custom controls. This howto describes how this can be done. To create new co...)
 
(Map the Controls)
 
(17 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{ScoutPage|cat=HowTo 3.9}}  
 
{{ScoutPage|cat=HowTo 3.9}}  
  
If the controls provided by Scout don’t fit your needs, you can easily create custom controls. This howto describes how this can be done.  
+
If the out-of-the-box GUI components provided by Scout don’t fit your needs, you can easily create and add custom GUI components. This how-to describes how this can be done.  
  
To create new controls it is important to understand how scout displays a control. Remember we have the client plugin where you can define the form and the controls on it, let’s call them scout controls. Additionally we have the gui plugin which creates the effective SWT respectively Swing-Controls based on the code in the client plugin. But how does the gui plugin know which client controls belong to which gui controls? This mapping is done by an extension point.  
+
When we talk about custom GUI components in this how-to we actually describe the creation of custom form fields. For this we need to implement a custom UI model component and acutal representations for all necessary UI technolgies, typically this should include representations for all supported UI technologies: SWT, Swing, and RAP. The model component will be located in a client plugin of the application and the concrete implementations for the UI technolgies will end up in the technology specific UI plugin.  
  
As an example we will create an AbstractDrawLineField. In this field a user can draw a line from a start point to an end point.  
+
As an example we will create the AbstractDrawLineField used in the Scout form below. In this field, a user can draw a line from a start point to an end point.  
  
[[Image:Scout custom draw line field.png]]  
+
[[Image:DrawLineSwing.png]]
  
== Creating the Scout Control  ==
+
== Creating the Scout Component ==
  
Every scout control on a form extends from <code>AbstractFormField</code>. So what you have to do is to create a new class which extends from AbstractFormField. Instead of directly extend from AbstractFormField you could use AbstractCustomField as super class which is actually the recommended way to go. AbstractCustomField does not provide any additional logic but since it implements the Interface ICustomField it is easier to distinguish between controls provided by the framework and controls provided by you. Additionally to the main class it is recommended to create an interface for your control. For our AbstractDrawLineField, we create a new package com.bsiag.minicrm.client.ui.form.fields.ext in the client plugin. In this package we create an interface IDrawLineField and IDrawLineUiFacade. IDrawLineField extends the interface IFormField. Then we create the class AbstractDrawLineField which extends AbstractCustomField and implements IDrawLineField.
+
Every Scout component representing a form field extends from <code>AbstractFormField</code>. For this, you first have to create a new class that is derived from AbstractFormField. Instead of directly inheriting from AbstractFormField it is recommended to extend <code>AbstractCustomField</code>, an AbstractFormField that implements the marker interface <code>ICustomField</code>. This makes it easier to distinguish your custom components from controls provided by the Scout framework.  
 +
 
 +
In the client plugin, first create a new package <code>com.bsiag.minicrm.client.ui.form.fields.ext</code> containing the following artefacts:
 +
 
 +
* <code>IDrawLineField</code>, extending IFormField
 +
* <code>IDrawLineUiFacade</code>
 +
* <code>AbstractDrawLineField</code>, extending AbstractCustomField and implementing IDrawLineField
  
 
=== Properties  ===
 
=== Properties  ===
  
Now you have to think about what your field should provide. A common scout field normally consists of some properties and some execXY methods. Please notice that every form field is also an IPropertyObserver. So if you think that someone else could be interested in your property, then you should make use of the protected field m_propertySupport. This is especially necessary if the property defines behaviour of the gui control. If someone dynamically changes the property on your field the gui control has to be informed about it otherwise it would not be reflected on the gui. The AbstractDrawLineField has two properties, the start and the end point. Thus we add now the following code to the IDrawLineField interface:  
+
Now you have to think about what your custom field should provide. Scout fields typically consist of properties implemented by <code>getConfiguredXY</code> methods and behaviour implemented in the <code>execXY</code> methods.  
 +
 
 +
If a field property is reflected by some visible aspects of the GUI component, we can take advantage of the fact that every Scout form field is also an IPropertyObserver.
 +
 
 +
Please notice that every form field is also an IPropertyObserver. So if you think that someone else could be interested in your property, then you should make use of the protected field m_propertySupport. This is especially necessary if the property defines behaviour of the GUI control. If someone dynamically changes the property on your field, the GUI control has to be informed about it otherwise it would not be reflected on the GUI.  
 +
 
 +
The example AbstractDrawLineField has two properties, the start and the end point. Thus we add now the following code to IDrawLineField:  
  
 
<source lang="java">
 
<source lang="java">
Line 28: Line 40:
  
 
IDrawLineUiFacade getUiFacade();
 
IDrawLineUiFacade getUiFacade();
</source> This interface is now already finished. The getUiFacade method will be needed to receive events from the gui control. In the AbstractDrawLineField, we implement now these methods with the usage of m_propertySupport: <source lang="java">
+
</source>  
 +
 
 +
This interface is now already finished. The getUiFacade method will be needed to receive events from the gui control. In the AbstractDrawLineField, we implement now these methods with the usage of m_propertySupport
 +
 
 +
<source lang="java">
 
   private IDrawLineUiFacade m_uiFacade;
 
   private IDrawLineUiFacade m_uiFacade;
  
Line 55: Line 71:
 
     return m_uiFacade;
 
     return m_uiFacade;
 
   }
 
   }
</source>  
+
</source>
  
 
=== Default Values  ===
 
=== Default Values  ===
  
Another important thing about properties is the way they are initialized. For each property there should be a getConfiguredPropertyName-function. With this method the user is able to set the initial value of the property. This initial value is read in the method initConfig(). This means for your custom field that it has to override the method initConfig() too and has to fill up the actual properties with the initial values of the getConfigured functions. For the AbstractDrawLineField we need four getConfigured methods, two for each point. The annotations are needed for the Scout SDK only. <source lang="java">
+
Another important thing about properties is the way they are initialized. For each property there should be a corresponding <code>getConfiguredXY</code>-function to set the initial value of the property. This initial value is read in the method <code>initConfig</code>.  
 +
 
 +
For the AbstractDrawLineField we need four getConfigured methods, two for each point. The annotations are needed for the Scout SDK only.  
 +
 
 +
<source lang="java">
 
@ConfigProperty(ConfigProperty.INTEGER)
 
@ConfigProperty(ConfigProperty.INTEGER)
 
@Order(500)
 
@Order(500)
Line 94: Line 114:
 
   setEnd(new Point(getConfiguredEndX(), getConfiguredEndY()));
 
   setEnd(new Point(getConfiguredEndX(), getConfiguredEndY()));
 
}
 
}
</source>  
+
</source>
  
 
=== Receiving GUI Events  ===
 
=== Receiving GUI Events  ===
  
Now we have to think about which gui events we want to propagate to the scout control. These events are handled by uiFacade. In our example, we have two important events. Setting a new start and setting a new end point. Add to the façade interface these two methods: void setStartFromUI(Point p); void setEndFromUI(Point p); Now add this inner Class to AbstractDrawLineField: <source lang="java">
+
Now we have to think about which GUI events we want to propagate to the custom Scout component. In our example, we have two important events. Setting a new start and setting a new end point. These events are handled by uiFacade. Add to the facade interface these two methods: void setStartFromUI(Point p); void setEndFromUI(Point p); Now add this inner Class to AbstractDrawLineField: <source lang="java">
 
private class P_UiFacade implements IDrawLineUiFacade{
 
private class P_UiFacade implements IDrawLineUiFacade{
 
   public void setEndFromUI(Point p){
 
   public void setEndFromUI(Point p){
Line 110: Line 130:
 
</source> And add this line of code as the first statement in the initConfig method: <source lang="java">
 
</source> And add this line of code as the first statement in the initConfig method: <source lang="java">
 
m_uiFacade = new P_UiFacade();
 
m_uiFacade = new P_UiFacade();
</source>  
+
</source>
  
 
== Creating the GUI Control  ==
 
== Creating the GUI Control  ==
  
After creating the custom field, the corresponding gui control has to be created. Every gui control extends from SwtScoutFieldComposite (SWT), SwingScoutFieldComposite (Swing) or RwtScoutFieldComposite (RAP). We will create Swing, SWT and RAP implementations for our AbstractDrawLineField.  
+
After creating the model implementation of the custom field, the corresponding GUI component has to be created. Every GUI component should provide implementations for all UI technologies.
 +
 
 +
* SWT compoments extend SwtScoutFieldComposite  
 +
* SWT compoments extend SwingScoutFieldComposite  
 +
* RAP components extend RwtScoutFieldComposite
 +
 
 +
Accordingly, we will create Swing, SWT and RAP implementations for our AbstractDrawLineField.  
  
 
=== Implementation  ===
 
=== Implementation  ===
  
Some important methods in a gui field are initializeSwt / initializeSwing, attachScout and handleScoutPropertyChange. The actual GUI composite is created in the initializeSwt / initializeSwing / initializeUi method. Properties of the scout field are normally handled in the method attachScout respectively in the method handleScoutPropertyChange. To fire events which should be handled in the scout control and which normally leads to an execution of an execXY method the UIFacade of a scout field should be used. For the Swt/Swing/RwtScoutDrawLineField we have a mouse listener that propagates the point changes from the gui to the scout control. When then the scout control adjusts the point properties, these changes are handled in the handleScoutPropertyChange method and there the line in the gui will be updated.  
+
Important methods for Scout GUI components are <code>initializeSwt</code>, <code>initializeSwing</code>, <code>attachScout</code> and <code>handleScoutPropertyChange</code>. The actual GUI composite is created in the initializeSwt / initializeSwing / initializeUi method. Properties of the Scout field are normally handled in the method attachScout respectively in the method handleScoutPropertyChange. To fire events which should be handled in the Scout control and which normally leads to an execution of an execXY method the UIFacade of a Scout field should be used. For the Swt/Swing/RwtScoutDrawLineField we have a mouse listener that propagates the point changes from the GUI to the Scout field. When then the Scout field adjusts the point properties, these changes are handled in the handleScoutPropertyChange method and there the line in the GUI will be updated.  
  
 
==== Swing Implementation  ====
 
==== Swing Implementation  ====
Line 455: Line 481:
 
</source>  
 
</source>  
  
<br>  
+
<br>
  
 
== Map the Controls  ==
 
== Map the Controls  ==
  
To tell the gui plugin which control belongs to which gui control an extension has to be add in the gui plugin. For a SWT gui field we need the extension point org.eclipse.scout.rt.ui.swt.formfields and for a Swing we use org.eclipse.scout.rt.ui.swing.formfields. In this extension point we have to specify which model class maps to which ui class. As model class we use usually the interface and not the concrete class.  
+
To link the custom GUI components to the UI model component Scout uses Eclipse extension points.
 +
For a SWT field we need the extension point org.eclipse.scout.rt.ui.swt.formfields and for a Swing we use org.eclipse.scout.rt.ui.swing.formfields. In this extension point we have to specify which model class maps to which UI class. As model class we use usually the interface and not the concrete class.  
  
 
=== Swing extension  ===
 
=== Swing extension  ===
  
For our example, open the plugin.xml from the ui.swing plugin. Go to the Extensions tab on the bottom of the manifest editor and click Add…. Uncheck the checkbox at the bottom and select the org.eclipse.scout.rt.ui.swing.formfields extension point before you click Finish. Right-click the newly created extension in your manifest editor and select New &gt; formField. Now enter in the name text box “Draw Line Field” and select as modelClass “com.bsiag.minicrm.client.ui.form.fields.ext.IDrawLineField”. Now we have to specify the ui class. Right-click on the formField extension and select New &gt; uiClass. There we select the class “com.bsiag.minicrm.ui.swing.form.fields.ext.SwingScoutDrawLineField”.  
+
For our example, open the plugin.xml from the ui.swing plugin. Go to the Extensions tab on the bottom of the manifest editor and click Add…. Uncheck the checkbox at the bottom and select the org.eclipse.scout.rt.ui.swing.formfields extension point before you click Finish. Right-click the newly created extension in your manifest editor and select New &gt; formField. Now enter in the name text box “Draw Line Field” and select as modelClass “com.bsiag.minicrm.client.ui.form.fields.ext.IDrawLineField”. Now we have to specify the UI class. Right-click on the formField extension and select New &gt; uiClass. There we select the class “com.bsiag.minicrm.ui.swing.form.fields.ext.SwingScoutDrawLineField”.  
  
 
=== SWT extension  ===
 
=== SWT extension  ===
  
Open the plugin.xml from the ui.swt plugin. Go to the Extensions tab on the bottom of the manifest editor and click Add…. Uncheck the checkbox at the bottom and select the org.eclipse.scout.rt.ui.swt.formfields extension point before you click Finish. Right-click the newly created extension in your manifest editor and select New &gt; formField. Now enter in the name text box “Draw Line Field” and select as modelClass “com.bsiag.minicrm.client.ui.form.fields.ext.IDrawLineField”. Now we have to specify the ui class. Right-click on the formField extension and select New &gt; uiClass. There we select the class “com.bsiag.minicrm.ui.swt.form.fields.ext.SwingScoutDrawLineField”.  
+
Open the plugin.xml from the ui.swt plugin. Go to the Extensions tab on the bottom of the manifest editor and click Add…. Uncheck the checkbox at the bottom and select the org.eclipse.scout.rt.ui.swt.formfields extension point before you click Finish. Right-click the newly created extension in your manifest editor and select New &gt; formField. Now enter in the name text box “Draw Line Field” and select as modelClass “com.bsiag.minicrm.client.ui.form.fields.ext.IDrawLineField”. Now we have to specify the ui class. Right-click on the formField extension and select New &gt; uiClass. There we select the class “com.bsiag.minicrm.ui.swt.form.fields.ext.SwtScoutDrawLineField”.
  
 
=== RAP extension  ===
 
=== RAP extension  ===
  
Open the plugin.xml from the ui.rap plugin. Go to the Extensions tab on the bottom of the manifest editor and click Add…. Uncheck the checkbox at the bottom and select the org.eclipse.scout.rt.ui.rap.formfields extension point before you click Finish. Right-click the newly created extension in your manifest editor and select New &gt; formField. Now enter in the name text box “Draw Line Field” and select as modelClass “com.bsiag.minicrm.client.ui.form.fields.ext.IDrawLineField”. Now we have to specify the ui class. Right-click on the formField extension and select New &gt; uiClass. There we select the class “com.bsiag.minicrm.ui.rap.form.fields.ext.SwingScoutDrawLineField”.  
+
Open the plugin.xml from the ui.rap plugin. Go to the Extensions tab on the bottom of the manifest editor and click Add…. Uncheck the checkbox at the bottom and select the org.eclipse.scout.rt.ui.rap.formfields extension point before you click Finish. Right-click the newly created extension in your manifest editor and select New &gt; formField. Now enter in the name text box “Draw Line Field” and select as modelClass “com.bsiag.minicrm.client.ui.form.fields.ext.IDrawLineField”. Now we have to specify the ui class. Right-click on the formField extension and select New &gt; uiClass. There we select the class “com.bsiag.minicrm.ui.rap.form.fields.ext.RwtScoutDrawLineField”.
  
 
== Test the DrawLineField  ==
 
== Test the DrawLineField  ==
Line 488: Line 515:
  
 
*Create a class '''org.eclipse.minicrm.shared.data.form.fields.ext.LinePoint''':
 
*Create a class '''org.eclipse.minicrm.shared.data.form.fields.ext.LinePoint''':
<pre>package org.eclipse.minicrm.shared.data.form.fields.ext;
+
<source lang="java">package org.eclipse.minicrm.shared.data.form.fields.ext;
  
 
import java.awt.Point;
 
import java.awt.Point;
Line 541: Line 568:
 
     if (this == obj) return true;
 
     if (this == obj) return true;
 
     if (obj == null) return false;
 
     if (obj == null) return false;
     if (getClass()&nbsp;!= obj.getClass()) return false;
+
     if (getClass() != obj.getClass()) return false;
 
     LinePoint other = (LinePoint) obj;
 
     LinePoint other = (LinePoint) obj;
     if (x&nbsp;!= other.x) return false;
+
     if (x != other.x) return false;
     if (y&nbsp;!= other.y) return false;
+
     if (y != other.y) return false;
 
     return true;
 
     return true;
 
   }
 
   }
 
}
 
}
</pre>  
+
</source>  
 
This class is only needed because Point does not have setters and getters for X and Y.  
 
This class is only needed because Point does not have setters and getters for X and Y.  
  
 
*Add the following annotation before the class definition of '''com.bsiag.minicrm.client.ui.form.fields.ext.AbstractDrawLineField''':
 
*Add the following annotation before the class definition of '''com.bsiag.minicrm.client.ui.form.fields.ext.AbstractDrawLineField''':
<pre>@FormData(value = AbstractDrawLineFieldData.class, sdkCommand = SdkCommand.CREATE, defaultSubtypeSdkCommand = DefaultSubtypeSdkCommand.CREATE)
+
<source lang="java">@FormData(value = AbstractDrawLineFieldData.class, sdkCommand = SdkCommand.CREATE, defaultSubtypeSdkCommand = DefaultSubtypeSdkCommand.CREATE)
public abstract class AbstractDrawLineField extends AbstractCustomField implements IDrawLineField {</pre>  
+
public abstract class AbstractDrawLineField extends AbstractCustomField implements IDrawLineField {</source>  
 
If this leads to an error about ''DefaultSubtypeSdkCommand ''not being defined, manually import it  
 
If this leads to an error about ''DefaultSubtypeSdkCommand ''not being defined, manually import it  
<pre>import org.eclipse.scout.commons.annotations.FormData.DefaultSubtypeSdkCommand;</pre>  
+
<source lang="java">import org.eclipse.scout.commons.annotations.FormData.DefaultSubtypeSdkCommand;</source>  
 
*Add the following two private members to '''com.bsiag.minicrm.client.ui.form.fields.ext.AbstractDrawLineField''':
 
*Add the following two private members to '''com.bsiag.minicrm.client.ui.form.fields.ext.AbstractDrawLineField''':
<pre>  private LinePoint m_start;
+
<source lang="java">  private LinePoint m_start;
 
   private LinePoint m_end;
 
   private LinePoint m_end;
</pre>  
+
</source>  
<br>  
+
<br>
  
 
=== Adjusting the interface and renderers  ===
 
=== Adjusting the interface and renderers  ===
  
 
*In '''com.bsiag.minicrm.client.ui.form.fields.ext.IDrawLineField''' change all occurences of '''Point''' to '''LinePoint''':
 
*In '''com.bsiag.minicrm.client.ui.form.fields.ext.IDrawLineField''' change all occurences of '''Point''' to '''LinePoint''':
<pre>  LinePoint getStart();
+
<source lang="java">  LinePoint getStart();
  
 
   void setStart(LinePoint p);
 
   void setStart(LinePoint p);
Line 572: Line 599:
  
 
   void setEnd(LinePoint p);
 
   void setEnd(LinePoint p);
</pre>  
+
</source>  
 
*Change the following line in the '''paintControl()''' method in '''com.bsiag.minicrm.ui.swt.form.fields.ext.SwtScoutDrawLineFieldfrom''':
 
*Change the following line in the '''paintControl()''' method in '''com.bsiag.minicrm.ui.swt.form.fields.ext.SwtScoutDrawLineFieldfrom''':
<pre>e.gc.drawLine(getScoutObject().getStart().x, getScoutObject().getStart().y, getScoutObject().getEnd().x, getScoutObject().getEnd().y);</pre>  
+
<source lang="java">e.gc.drawLine(getScoutObject().getStart().x, getScoutObject().getStart().y, getScoutObject().getEnd().x, getScoutObject().getEnd().y);</source>  
 
to  
 
to  
<pre>e.gc.drawLine(getScoutObject().getStart().getX(), getScoutObject().getStart().getY(), getScoutObject().getEnd().getX(), getScoutObject().getEnd().getY());</pre>  
+
<source lang="java">e.gc.drawLine(getScoutObject().getStart().getX(), getScoutObject().getStart().getY(), getScoutObject().getEnd().getX(), getScoutObject().getEnd().getY());</source>  
 
*Change the following line in the '''paint()''' method in '''com.bsiag.minicrm.ui.swing.form.fields.ext.SwingScoutDrawLineFieldfrom''':
 
*Change the following line in the '''paint()''' method in '''com.bsiag.minicrm.ui.swing.form.fields.ext.SwingScoutDrawLineFieldfrom''':
<pre>g.drawLine(getScoutObject().getStart().x, getScoutObject().getStart().y, getScoutObject().getEnd().x, getScoutObject().getEnd().y);</pre>  
+
<source lang="java">g.drawLine(getScoutObject().getStart().x, getScoutObject().getStart().y, getScoutObject().getEnd().x, getScoutObject().getEnd().y);</source>  
 
to  
 
to  
<pre>g.drawLine(getScoutObject().getStart().getX(), getScoutObject().getStart().getY(), getScoutObject().getEnd().getX(), getScoutObject().getEnd().getY());</pre>  
+
<source lang="java">g.drawLine(getScoutObject().getStart().getX(), getScoutObject().getStart().getY(), getScoutObject().getEnd().getX(), getScoutObject().getEnd().getY());</source>
 +
 
 
=== Accessing start and end points from PROP_VALUE  ===
 
=== Accessing start and end points from PROP_VALUE  ===
  
 
*Adjust the getStart(), getEnd(), setStart() and setEnd() methods in '''com.bsiag.minicrm.client.ui.form.fields.ext.AbstractDrawLineField''' as follows:
 
*Adjust the getStart(), getEnd(), setStart() and setEnd() methods in '''com.bsiag.minicrm.client.ui.form.fields.ext.AbstractDrawLineField''' as follows:
<pre>  @Override
+
<source lang="java">  @Override
 
   @FormData
 
   @FormData
 
   public LinePoint getEnd() {
 
   public LinePoint getEnd() {
Line 609: Line 637:
 
     propertySupport.setProperty(PROP_START, p);
 
     propertySupport.setProperty(PROP_START, p);
 
   }
 
   }
</pre>  
+
</source>  
The important change here is the '''@FormData''' annotation and the use of the private members in addition to the property.  
+
The important change here is the '''@FormData''' annotation and the use of the private members in addition to the property.
  
 
=== AbstractDrawLineField  ===
 
=== AbstractDrawLineField  ===
Line 738: Line 766:
 
       IntegerHolder endX = new IntegerHolder();
 
       IntegerHolder endX = new IntegerHolder();
 
       IntegerHolder endY = new IntegerHolder();
 
       IntegerHolder endY = new IntegerHolder();
       SQL.selectInto("SELECT 100,100,200,200 FROM DUAL INTO&nbsp;:startX,&nbsp;:startY,&nbsp;:endX,&nbsp;:endY",
+
       SQL.selectInto("SELECT 100,100,200,200 FROM DUAL INTO :startX, :startY, :endX, :endY",
 
           new NVPair("startX", startX),
 
           new NVPair("startX", startX),
 
           new NVPair("startY", startY),
 
           new NVPair("startY", startY),
Line 749: Line 777:
 
</pre>  
 
</pre>  
 
==== Using SQL.selectInto  ====
 
==== Using SQL.selectInto  ====
<pre>      SQL.selectInto("SELECT 100, 100,200, 200 FROM DUAL INTO&nbsp;:drawLine.start.x,&nbsp;:drawLine.start.y,&nbsp;:drawLine.end.x,&nbsp;:drawLine.end.y", formData);
+
<pre>      SQL.selectInto("SELECT 100, 100,200, 200 FROM DUAL INTO :drawLine.start.x, :drawLine.start.y, :drawLine.end.x, :drawLine.end.y", formData);
 
</pre>  
 
</pre>  
 
<br>  
 
<br>  

Latest revision as of 08:02, 17 October 2013

The Scout documentation has been moved to https://eclipsescout.github.io/.

If the out-of-the-box GUI components provided by Scout don’t fit your needs, you can easily create and add custom GUI components. This how-to describes how this can be done.

When we talk about custom GUI components in this how-to we actually describe the creation of custom form fields. For this we need to implement a custom UI model component and acutal representations for all necessary UI technolgies, typically this should include representations for all supported UI technologies: SWT, Swing, and RAP. The model component will be located in a client plugin of the application and the concrete implementations for the UI technolgies will end up in the technology specific UI plugin.

As an example we will create the AbstractDrawLineField used in the Scout form below. In this field, a user can draw a line from a start point to an end point.

DrawLineSwing.png

Creating the Scout Component

Every Scout component representing a form field extends from AbstractFormField. For this, you first have to create a new class that is derived from AbstractFormField. Instead of directly inheriting from AbstractFormField it is recommended to extend AbstractCustomField, an AbstractFormField that implements the marker interface ICustomField. This makes it easier to distinguish your custom components from controls provided by the Scout framework.

In the client plugin, first create a new package com.bsiag.minicrm.client.ui.form.fields.ext containing the following artefacts:

  • IDrawLineField, extending IFormField
  • IDrawLineUiFacade
  • AbstractDrawLineField, extending AbstractCustomField and implementing IDrawLineField

Properties

Now you have to think about what your custom field should provide. Scout fields typically consist of properties implemented by getConfiguredXY methods and behaviour implemented in the execXY methods.

If a field property is reflected by some visible aspects of the GUI component, we can take advantage of the fact that every Scout form field is also an IPropertyObserver.

Please notice that every form field is also an IPropertyObserver. So if you think that someone else could be interested in your property, then you should make use of the protected field m_propertySupport. This is especially necessary if the property defines behaviour of the GUI control. If someone dynamically changes the property on your field, the GUI control has to be informed about it otherwise it would not be reflected on the GUI.

The example AbstractDrawLineField has two properties, the start and the end point. Thus we add now the following code to IDrawLineField:

public static final String PROP_START = "startPoint";
public static final String PROP_END = "endPoint";
 
Point getStart();
void setStart(Point p);
 
Point getEnd();
void setEnd(Point p);
 
IDrawLineUiFacade getUiFacade();

This interface is now already finished. The getUiFacade method will be needed to receive events from the gui control. In the AbstractDrawLineField, we implement now these methods with the usage of m_propertySupport

  private IDrawLineUiFacade m_uiFacade;
 
  @Override
  public Point getEnd() {
    return (Point) propertySupport.getProperty(PROP_END);
  }
 
  @Override
  public void setEnd(Point p) {
    propertySupport.setProperty(PROP_END, p);
  }
 
  @Override
  public Point getStart() {
    return (Point) propertySupport.getProperty(PROP_START);
  }
 
  @Override
  public void setStart(Point p) {
    propertySupport.setProperty(PROP_START, p);
  }
 
  @Override
  public IDrawLineUiFacade getUiFacade() {
    return m_uiFacade;
  }

Default Values

Another important thing about properties is the way they are initialized. For each property there should be a corresponding getConfiguredXY-function to set the initial value of the property. This initial value is read in the method initConfig.

For the AbstractDrawLineField we need four getConfigured methods, two for each point. The annotations are needed for the Scout SDK only.

@ConfigProperty(ConfigProperty.INTEGER)
@Order(500)
@ConfigPropertyValue("0")
protected int getConfiguredStartX(){
  return 0;
}
 
@ConfigProperty(ConfigProperty.INTEGER)
@Order(510)
@ConfigPropertyValue("0")
protected int getConfiguredStartY(){
  return 0;
}
 
@ConfigProperty(ConfigProperty.INTEGER)
@Order(520)
@ConfigPropertyValue("0")
protected int getConfiguredEndX(){
  return 0;
}
 
@ConfigProperty(ConfigProperty.INTEGER)
@Order(530)
@ConfigPropertyValue("0")
protected int getConfiguredEndY(){
  return 0;
}
 
@Override
protected void initConfig(){
  super.initConfig();
  setStart(new Point(getConfiguredStartX(), getConfiguredStartY()));
  setEnd(new Point(getConfiguredEndX(), getConfiguredEndY()));
}

Receiving GUI Events

Now we have to think about which GUI events we want to propagate to the custom Scout component. In our example, we have two important events. Setting a new start and setting a new end point. These events are handled by uiFacade. Add to the facade interface these two methods: void setStartFromUI(Point p); void setEndFromUI(Point p); Now add this inner Class to AbstractDrawLineField:
private class P_UiFacade implements IDrawLineUiFacade{
  public void setEndFromUI(Point p){
    setEnd(p);
  }
 
  public void setStartFromUI(Point p){
    setStart(p);
  }
}
And add this line of code as the first statement in the initConfig method:
m_uiFacade = new P_UiFacade();

Creating the GUI Control

After creating the model implementation of the custom field, the corresponding GUI component has to be created. Every GUI component should provide implementations for all UI technologies.

  • SWT compoments extend SwtScoutFieldComposite
  • SWT compoments extend SwingScoutFieldComposite
  • RAP components extend RwtScoutFieldComposite

Accordingly, we will create Swing, SWT and RAP implementations for our AbstractDrawLineField.

Implementation

Important methods for Scout GUI components are initializeSwt, initializeSwing, attachScout and handleScoutPropertyChange. The actual GUI composite is created in the initializeSwt / initializeSwing / initializeUi method. Properties of the Scout field are normally handled in the method attachScout respectively in the method handleScoutPropertyChange. To fire events which should be handled in the Scout control and which normally leads to an execution of an execXY method the UIFacade of a Scout field should be used. For the Swt/Swing/RwtScoutDrawLineField we have a mouse listener that propagates the point changes from the GUI to the Scout field. When then the Scout field adjusts the point properties, these changes are handled in the handleScoutPropertyChange method and there the line in the GUI will be updated.

Swing Implementation

Create a new package com.bsiag.minicrm.ui.swing.form.fields.ext in the ui.swing plugin. Create in this package a new class SwingScoutDrawLineField that extends SwingScoutFieldComposite<IDrawLineField>.

Paste the following code in the SwingScoutDrawLineField class:
public class SwingScoutDrawLineField extends SwingScoutFieldComposite<IDrawLineField> {
private P_MouseListener m_mouseListener;
 
@Override
protected void initializeSwing(){
  m_mouseListener = new P_MouseListener();
  JPanelEx container=new JPanelEx(new BorderLayoutEx());
  container.setOpaque(false);
  JStatusLabelEx label=new JStatusLabelEx();
  container.add(label,BorderLayoutEx.CENTER);
 
  MyComponent field = new MyComponent();
  SwingUtility.installDefaultFocusHandling(field);
  container.add(field);
 
  field.addMouseMotionListener(m_mouseListener);
  field.addMouseListener(m_mouseListener);
 
  setSwingContainer(container);
  setSwingLabel(label);
  setSwingField(field);
  //layout
  getSwingContainer().setLayout(new LogicalGridLayout(getSwingEnvironment(),1, 0));
}
 
@Override
protected void attachScout(){
super.attachScout();
  updateLineFromScout();
}
 
protected void updateLineFromScout(){
  getSwingField().repaint();
}
 
protected void handleSwingStartPointChanged(final Point location){
  RunnableWithData t=new RunnableWithData(){
    @Override
    public void run(){
      getScoutObject().getUiFacade().setEndFromUI(location);
      getScoutObject().getUiFacade().setStartFromUI(location);
    }
  };
  getSwingEnvironment().invokeScoutLater(t, 2345);
}
 
protected void handleSwingEndPointChanged(final Point location){
  RunnableWithData t=new RunnableWithData(){
    @Override
    public void run(){
      getScoutObject().getUiFacade().setEndFromUI(location);
    }
  };
  getSwingEnvironment().invokeScoutLater(t, 2345);
}
 
@Override
protected void handleScoutPropertyChange(String name, Object newValue){
  if(name.equals(IDrawLineField.PROP_START) || name.equals(IDrawLineField.PROP_END)){
    updateLineFromScout();
  }
  super.handleScoutPropertyChange(name, newValue);
}
 
private class MyComponent extends JComponent{
  private static final long serialVersionUID=1L;
 
  @Override
  public void paint(Graphics g){
    super.paint(g);
    g.setColor(getBackground());
    g.fillRect(0, 0, getWidth(), getHeight());
    g.setColor(getForeground());
    if(getScoutObject().getStart() != null && getScoutObject().getEnd() != null){
      g.drawLine(getScoutObject().getStart().x, getScoutObject().getStart().y, getScoutObject().getEnd().x, getScoutObject().getEnd().y);
    }
  }
}
 
private class P_MouseListener extends MouseAdapter{
  private boolean m_mouseDown = false;
  @Override
  public void mousePressed(MouseEvent e){
    m_mouseDown = true;
    handleSwingStartPointChanged(e.getPoint());
  }
  @Override
  public void mouseReleased(MouseEvent e){
    m_mouseDown = false;
    handleSwingEndPointChanged(e.getPoint());
  }
  @Override
  public void mouseDragged(MouseEvent e){
    if(m_mouseDown){
      handleSwingEndPointChanged(e.getPoint());
    }
  }
}
}

SWT Implementation

Create a new package com.bsiag.minicrm.ui.swt.form.fields.ext in the ui.swt plugin. Create in this package a new class SwtScoutDrawLineField that extends SwtScoutFieldComposite<IDrawLineField>.

Paste the following code in the SwtScoutDrawLineField class:
public class SwtScoutDrawLineField extends SwtScoutFieldComposite<IDrawLineField> {
  private P_MouseListener m_mouseListener;
 
  @Override
  protected void initializeSwt(Composite parent) {
    m_mouseListener = new P_MouseListener();
 
    Composite container = getEnvironment().getFormToolkit().createComposite(parent);
    StatusLabelEx label = getEnvironment().getFormToolkit().createStatusLabel(container, getEnvironment(), getScoutObject());
    Canvas canvas = getEnvironment().getFormToolkit().createCanvas(container);
 
    canvas.addPaintListener(new P_PaintListener());
    canvas.addMouseMoveListener(m_mouseListener);
    canvas.addMouseListener(m_mouseListener);
 
    setSwtContainer(container);
    setSwtLabel(label);
    setSwtField(canvas);
 
    // layout
    getSwtContainer().setLayout(new LogicalGridLayout(1, 0));
  }
 
  @Override
  protected void attachScout() {
    super.attachScout();
    updateLineFromScout();
  }
 
  protected void updateLineFromScout() {
    getSwtField().redraw();
  }
 
  protected void handleSwtStartPointChanged(final Point location) {
    RunnableWithData t = new RunnableWithData() {
      @Override
      public void run() {
        getScoutObject().getUiFacade().setEndFromUI(location);
        getScoutObject().getUiFacade().setStartFromUI(location);
      }
    };
    getEnvironment().invokeScoutLater(t, 2345);
  }
 
  protected void handleSwtEndPointChanged(final Point location) {
    RunnableWithData t = new RunnableWithData() {
      @Override
      public void run() {
        getScoutObject().getUiFacade().setEndFromUI(location);
      }
    };
    getEnvironment().invokeScoutLater(t, 2345);
  }
 
  @Override
  protected void handleScoutPropertyChange(String name, Object newValue) {
    if (name.equals(IDrawLineField.PROP_START) || name.equals(IDrawLineField.PROP_END)) {
      updateLineFromScout();
    }
    super.handleScoutPropertyChange(name, newValue);
  }
 
  private class P_PaintListener implements PaintListener {
    private static final long serialVersionUID = 1L;
 
    @Override
    public void paintControl(PaintEvent e) {
      if (getScoutObject().getStart() != null && getScoutObject().getEnd() != null) {
        e.gc.drawLine(getScoutObject().getStart().x, getScoutObject().getStart().y, getScoutObject().getEnd().x, getScoutObject().getEnd().y);
      }
    }
  }
 
  private class P_MouseListener implements MouseListener, MouseMoveListener {
    private boolean m_mouseDown = false;
 
    @Override
    public void mouseDoubleClick(org.eclipse.swt.events.MouseEvent e) {
    }
 
    @Override
    public void mouseDown(org.eclipse.swt.events.MouseEvent e) {
      m_mouseDown = true;
      handleSwtStartPointChanged(new Point(e.x, e.y));
    }
 
    @Override
    public void mouseUp(org.eclipse.swt.events.MouseEvent e) {
      m_mouseDown = false;
      handleSwtEndPointChanged(new Point(e.x, e.y));
    }
 
    @Override
    public void mouseMove(org.eclipse.swt.events.MouseEvent e) {
      if (m_mouseDown) {
        handleSwtEndPointChanged(new Point(e.x, e.y));
      }
    }
 
  }
}

RAP Implementation

There is a limitation to the RAP implementation as it does not support listening for mouse-move events. This means that the user will draw his line blindly (because we cannot update it as it is being drawn). To help the user, we will indicate the starting point of the current line with a circle if the start and end points of a line are indentical.

Create a new package com.bsiag.minicrm.ui.rap.form.fields.ext in the ui.rap plugin. Create in this package a new class RwtScoutDrawLineField that extends RwtScoutFieldComposite<IDrawLineField>.

Paste the following code in the RwtScoutDrawLineField class:
public class RwtScoutDrawLineField extends RwtScoutFieldComposite<IDrawLineField> {
  private P_MouseListener m_mouseListener;
  private Menu m_contextMenu;
 
  @Override
  protected void initializeUi(Composite parent) {
    m_mouseListener = new P_MouseListener();
 
    Composite container = getUiEnvironment().getFormToolkit().createComposite(parent);
    StatusLabelEx label = getUiEnvironment().getFormToolkit().createStatusLabel(container, getScoutObject());
    Canvas canvas = getUiEnvironment().getFormToolkit().createCanvas(container);
 
    canvas.addPaintListener(new P_PaintListener());
    // canvas.addMouseTrackListener(m_mouseListener); // this doesn't work for RAP
    canvas.addMouseListener(m_mouseListener);
 
    setUiContainer(container);
    setUiLabel(label);
    setUiField(canvas);
 
    // layout
    getUiContainer().setLayout(new LogicalGridLayout(1, 0));
  }
 
  @Override
  protected void attachScout() {
    super.attachScout();
    updateLineFromScout();
  }
 
  protected void updateLineFromScout() {
    getUiField().redraw();
  }
 
  protected void handleSwtStartPointChanged(final Point location) {
    RunnableWithData t = new RunnableWithData() {
      @Override
      public void run() {
        getScoutObject().getUiFacade().setEndFromUI(location);
        getScoutObject().getUiFacade().setStartFromUI(location);
      }
    };
    getUiEnvironment().invokeScoutLater(t, 2345);
  }
 
  protected void handleSwtEndPointChanged(final Point location) {
    RunnableWithData t = new RunnableWithData() {
      @Override
      public void run() {
        getScoutObject().getUiFacade().setEndFromUI(location);
      }
    };
    getUiEnvironment().invokeScoutLater(t, 2345);
  }
 
  @Override
  protected void handleScoutPropertyChange(String name, Object newValue) {
    if ((name.equals(IDrawLineField.PROP_START)) || (name.equals(IDrawLineField.PROP_END))) {
      updateLineFromScout();
    }
    super.handleScoutPropertyChange(name, newValue);
  }
 
  private class P_PaintListener implements PaintListener {
    private static final long serialVersionUID = 1L;
 
    @Override
    public void paintControl(PaintEvent e) {
      if (getScoutObject().getStart() != null && getScoutObject().getEnd() != null) {
        if (getScoutObject().getStart().equals(getScoutObject().getEnd())) {
          // special case for RAP: mark start of line
          e.gc.drawOval(getScoutObject().getStart().getX(), getScoutObject().getStart().getY(), 10, 10);
        } else {
          e.gc.drawLine(getScoutObject().getStart().getX(), getScoutObject().getStart().getY(), getScoutObject().getEnd().getX(), getScoutObject().getEnd().getY());
        }
      }
    }
  }
 
  private class P_MouseListener implements MouseListener, MouseMoveListener {
    private static final long serialVersionUID = 1L;
    private boolean m_mouseDown = false;
 
    @Override
    public void mouseDoubleClick(org.eclipse.swt.events.MouseEvent e) {
    }
 
    @Override
    public void mouseDown(org.eclipse.swt.events.MouseEvent e) {
      if (e != null && e.button == 1) {
        m_mouseDown = true;
        handleSwtStartPointChanged(new Point(e.x, e.y));
      }
    }
 
    @Override
    public void mouseUp(org.eclipse.swt.events.MouseEvent e) {
      if (e != null && e.button == 1) {
        m_mouseDown = false;
        handleSwtEndPointChanged(new Point(e.x, e.y));
      }
    }
 
    @Override
    public void mouseMove(org.eclipse.swt.events.MouseEvent e) {
      if (m_mouseDown) {
        handleSwtEndPointChanged(new Point(e.x, e.y));
      }
    }
 
  }
}


Map the Controls

To link the custom GUI components to the UI model component Scout uses Eclipse extension points. For a SWT field we need the extension point org.eclipse.scout.rt.ui.swt.formfields and for a Swing we use org.eclipse.scout.rt.ui.swing.formfields. In this extension point we have to specify which model class maps to which UI class. As model class we use usually the interface and not the concrete class.

Swing extension

For our example, open the plugin.xml from the ui.swing plugin. Go to the Extensions tab on the bottom of the manifest editor and click Add…. Uncheck the checkbox at the bottom and select the org.eclipse.scout.rt.ui.swing.formfields extension point before you click Finish. Right-click the newly created extension in your manifest editor and select New > formField. Now enter in the name text box “Draw Line Field” and select as modelClass “com.bsiag.minicrm.client.ui.form.fields.ext.IDrawLineField”. Now we have to specify the UI class. Right-click on the formField extension and select New > uiClass. There we select the class “com.bsiag.minicrm.ui.swing.form.fields.ext.SwingScoutDrawLineField”.

SWT extension

Open the plugin.xml from the ui.swt plugin. Go to the Extensions tab on the bottom of the manifest editor and click Add…. Uncheck the checkbox at the bottom and select the org.eclipse.scout.rt.ui.swt.formfields extension point before you click Finish. Right-click the newly created extension in your manifest editor and select New > formField. Now enter in the name text box “Draw Line Field” and select as modelClass “com.bsiag.minicrm.client.ui.form.fields.ext.IDrawLineField”. Now we have to specify the ui class. Right-click on the formField extension and select New > uiClass. There we select the class “com.bsiag.minicrm.ui.swt.form.fields.ext.SwtScoutDrawLineField”.

RAP extension

Open the plugin.xml from the ui.rap plugin. Go to the Extensions tab on the bottom of the manifest editor and click Add…. Uncheck the checkbox at the bottom and select the org.eclipse.scout.rt.ui.rap.formfields extension point before you click Finish. Right-click the newly created extension in your manifest editor and select New > formField. Now enter in the name text box “Draw Line Field” and select as modelClass “com.bsiag.minicrm.client.ui.form.fields.ext.IDrawLineField”. Now we have to specify the ui class. Right-click on the formField extension and select New > uiClass. There we select the class “com.bsiag.minicrm.ui.rap.form.fields.ext.RwtScoutDrawLineField”.

Test the DrawLineField

You can now create a new Form where you use the DrawLineField. If you set the grid height to about a value of eight and disable the label you get a big field.


Making the DrawLineField persistent

So far, the line in our custom control can be pre-configured in the SDK and manually re-drawn using the mouse.

However, it is not yet possible to persistently store and load the line points from/to the database. This chapter shows how the custom field needs to be modified to allow persistence.

Data structures for the FormData

  • Create a class org.eclipse.minicrm.shared.data.form.fields.ext.LinePoint:
package org.eclipse.minicrm.shared.data.form.fields.ext;
 
import java.awt.Point;
import java.io.Serializable;
 
public class LinePoint implements Serializable {
  private static final long serialVersionUID = 1L;
  private int x;
  private int y;
 
  public LinePoint(int x, int y) {
    this.x = x;
    this.y = y;
  }
 
  public LinePoint(Point p) {
    this.x = p.x;
    this.y = p.y;
  }
 
  public void setX(int x) {
    this.x = x;
  }
 
  public void setY(int y) {
    this.y = y;
  }
 
  public int getX() {
    return x;
  }
 
  public int getY() {
    return y;
  }
 
  public Point getPoint() {
    return new Point(x, y);
  }
 
  @Override
  public int hashCode() {
    final int prime = 31;
    int result = 1;
    result = prime * result + x;
    result = prime * result + y;
    return result;
  }
 
  @Override
  public boolean equals(Object obj) {
    if (this == obj) return true;
    if (obj == null) return false;
    if (getClass() != obj.getClass()) return false;
    LinePoint other = (LinePoint) obj;
    if (x != other.x) return false;
    if (y != other.y) return false;
    return true;
  }
}

This class is only needed because Point does not have setters and getters for X and Y.

  • Add the following annotation before the class definition of com.bsiag.minicrm.client.ui.form.fields.ext.AbstractDrawLineField:
@FormData(value = AbstractDrawLineFieldData.class, sdkCommand = SdkCommand.CREATE, defaultSubtypeSdkCommand = DefaultSubtypeSdkCommand.CREATE)
public abstract class AbstractDrawLineField extends AbstractCustomField implements IDrawLineField {

If this leads to an error about DefaultSubtypeSdkCommand not being defined, manually import it

import org.eclipse.scout.commons.annotations.FormData.DefaultSubtypeSdkCommand;
  • Add the following two private members to com.bsiag.minicrm.client.ui.form.fields.ext.AbstractDrawLineField:
  private LinePoint m_start;
  private LinePoint m_end;


Adjusting the interface and renderers

  • In com.bsiag.minicrm.client.ui.form.fields.ext.IDrawLineField change all occurences of Point to LinePoint:
  LinePoint getStart();
 
  void setStart(LinePoint p);
 
  LinePoint getEnd();
 
  void setEnd(LinePoint p);
  • Change the following line in the paintControl() method in com.bsiag.minicrm.ui.swt.form.fields.ext.SwtScoutDrawLineFieldfrom:
e.gc.drawLine(getScoutObject().getStart().x, getScoutObject().getStart().y, getScoutObject().getEnd().x, getScoutObject().getEnd().y);

to

e.gc.drawLine(getScoutObject().getStart().getX(), getScoutObject().getStart().getY(), getScoutObject().getEnd().getX(), getScoutObject().getEnd().getY());
  • Change the following line in the paint() method in com.bsiag.minicrm.ui.swing.form.fields.ext.SwingScoutDrawLineFieldfrom:
g.drawLine(getScoutObject().getStart().x, getScoutObject().getStart().y, getScoutObject().getEnd().x, getScoutObject().getEnd().y);

to

g.drawLine(getScoutObject().getStart().getX(), getScoutObject().getStart().getY(), getScoutObject().getEnd().getX(), getScoutObject().getEnd().getY());

Accessing start and end points from PROP_VALUE

  • Adjust the getStart(), getEnd(), setStart() and setEnd() methods in com.bsiag.minicrm.client.ui.form.fields.ext.AbstractDrawLineField as follows:
  @Override
  @FormData
  public LinePoint getEnd() {
    return m_end;
  }
 
  @Override
  @FormData
  public void setEnd(LinePoint p) {
    m_end = p;
    propertySupport.setProperty(PROP_END, p);
  }
 
  @Override
  @FormData
  public LinePoint getStart() {
    return m_start;
  }
 
  @Override
  @FormData
  public void setStart(LinePoint p) {
    m_start = p;
    propertySupport.setProperty(PROP_START, p);
  }

The important change here is the @FormData annotation and the use of the private members in addition to the property.

AbstractDrawLineField

  • Adjust the type from Point to LinePoint in initConfig() and the UiFacade:
      @Override
      protected void initConfig() {
        m_uiFacade = new P_UiFacade();
        super.initConfig();
        setStart(new LinePoint(getConfiguredStartX(), getConfiguredStartY()));
        setEnd(new LinePoint(getConfiguredEndX(), getConfiguredEndY()));
      }

      // ---------------------------------------------------------------------------------
      private class P_UiFacade implements IDrawLineUiFacade {
        @Override
        public void setEndFromUI(Point p) {
          setEnd(new LinePoint(p));
        }

        @Override
        public void setStartFromUI(Point p) {
          setStart(new LinePoint(p));
        }
      }
  • Add the following new member variables to com.bsiag.minicrm.client.ui.form.fields.ext.AbstractDrawLineField:
      private LinePoint m_initStart;
      private LinePoint m_initEnd;
  • Add the following constructors to com.bsiag.minicrm.client.ui.form.fields.ext.AbstractDrawLineField:
      public AbstractDrawLineField() {
        this(true);
      }

      public AbstractDrawLineField(boolean callInitializer) {
        super(callInitializer);
      }

Storing to and loading from XML files

This step is only needed if you want to be able to save and load the current DrawLineField content to an XML file.

  • Add the following two methods to com.bsiag.minicrm.client.ui.form.fields.ext.AbstractDrawLineField:
  @Override
  public void storeXML(SimpleXmlElement x) throws ProcessingException {
    super.storeXML(x);
    try {
      x.setObjectAttribute(IDrawLineField.PROP_START, getStart());
      x.setObjectAttribute(IDrawLineField.PROP_END, getEnd());
    }
    catch (IOException e) {
      if (LOG.isInfoEnabled()) {
        LOG.info("not serializable value in field " + getClass().getName() + "/" + getLabel() + ": " + e);
      }
    }
  }

  @Override
  public void loadXML(SimpleXmlElement x) throws ProcessingException {
    super.loadXML(x);
    try {
      LinePoint start = TypeCastUtility.castValue(x.getObjectAttribute(IDrawLineField.PROP_START, null), LinePoint.class);
      LinePoint end = TypeCastUtility.castValue(x.getObjectAttribute(IDrawLineField.PROP_END, null), LinePoint.class);
      setStart(start);
      setEnd(end);
    }
    catch (Exception e) {
      // be lenient, maybe the field was changed
      LOG.warn(null, e);
    }
  }

Keeping track of the changed status

This is needed so the form can detect whether any changes were made to the field in case the Cancel button on a form is pressed.

  • Add the following methods to com.bsiag.minicrm.client.ui.form.fields.ext.AbstractDrawLineField:
  public void setInitValue(LinePoint initStart, LinePoint initEnd) {
    m_initStart = initStart;
    m_initEnd = initEnd;
  }

  public LinePoint getInitStart() {
    return m_initStart;
  }

  public LinePoint getInitEnd() {
    return m_initEnd;
  }

  @Override
  protected boolean execIsSaveNeeded() throws ProcessingException {
    LinePoint start = getStart();
    LinePoint end = getEnd();
    LinePoint initStart = getInitStart();
    LinePoint initEnd = getInitEnd();

    if (start == null && initStart == null && end == null && initEnd == null) {
      return false;
    }
    else if (start == null || initStart == null || end == null || initEnd == null) {
      return true;
    }
    else {
      if (start.equals(initStart) && end.equals(initEnd)) {
        return false;
      }
      else {
        return true;
      }
    }
  }

  @Override
  protected void execMarkSaved() throws ProcessingException {
    super.execMarkSaved();
    setInitValue(getStart(), getEnd());
  }

Accessing the field in the ProcessService

There are several possibilties to access these fields in the ProcessService:

Using IntegerHolders

      IntegerHolder startX = new IntegerHolder();
      IntegerHolder startY = new IntegerHolder();
      IntegerHolder endX = new IntegerHolder();
      IntegerHolder endY = new IntegerHolder();
      SQL.selectInto("SELECT 100,100,200,200 FROM DUAL INTO :startX, :startY, :endX, :endY",
          new NVPair("startX", startX),
          new NVPair("startY", startY),
          new NVPair("endX", endX),
          new NVPair("endY", endY));
      formData.getDrawLine().getStart().setX(startX.getValue());
      formData.getDrawLine().getStart().setY(startY.getValue());
      formData.getDrawLine().getEnd().setX(endX.getValue());
      formData.getDrawLine().getEnd().setY(endY.getValue());

Using SQL.selectInto

      SQL.selectInto("SELECT 100, 100,200, 200 FROM DUAL INTO :drawLine.start.x, :drawLine.start.y, :drawLine.end.x, :drawLine.end.y", formData);



Result

Swing

DrawLineSwing.png

SWT

DrawLineSwt.png

RAP

On the left you can see the drawn line, on the right you can see the marked starting point which will be shown while the mouse is being dragged.

DrawLineRap.png DrawLineRapPoint.png

Back to the top