Scout/HowTo/3.8/Add a custom GUI component
Scout |
Wiki Home |
Website |
Download • Git |
Community |
Forums • Blog • Twitter • G+ |
Bugzilla |
Bugzilla |
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 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.
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.
Contents
- 1 Creating the Scout Control
- 2 Creating the GUI Control
- 3 Map the Controls
- 4 Test the DrawLineField
- 5 Making the DrawLineField persistent
- 6 Result
Creating the Scout Control
Every scout control on a form extends from AbstractFormField
. 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.
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:
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();
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 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.@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 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:private class P_UiFacade implements IDrawLineUiFacade{ public void setEndFromUI(Point p){ setEnd(p); } public void setStartFromUI(Point p){ setStart(p); } }
m_uiFacade = new P_UiFacade();
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.
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.
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 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.
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.SwingScoutDrawLineField”.
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.SwingScoutDrawLineField”.
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
SWT
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.