api.setWidgetParameter(LAYER_ID, LABEL_ID_1, ARINC661.A661_VISIBLE, true); api.sendAll();
arinc661.client.api.ARINC661
interface. For example, the value of the A661_POS_X keyword is available by arinc661.client.api.ARINC661.A661_POS_X
.
api.connect();
api.disconnect();
api.setLayerRequest(LAYER_ID, ARINC661.A661_REQ_LAYER_VISIBLE, true);
public class StatefullAPI |
---|
api
instance to communicate with the ARINC661 server.Modifier and Type | Method and Description |
---|---|
void | setWidgetParameter(int appliID, int layerID, int widgetID, int parameterID, Object value)
Sets the value of the specified parameter for the specified widget
|
void | setWidgetParameter(int layerID, int widgetID, int parameterID, Object value)
Sets the value of the specified parameter for the specified widget. This method can be used if there is only one layer of the specified ID for all the Server
|
api.setWidgetParameter(APPLI_ID, LAYER_ID, LABEL_ID_1, ARINC661.A661_POS_X, 5000); api.setWidgetParameter(LAYER_ID, LABEL_ID_1, ARINC661.A661_VISIBLE, true); api.setWidgetParameter(LAYER_ID, LABEL_ID_1, ARINC661.A661_STRING, "CANNIBAL CORPSE"); api.setWidgetParameter(LAYER_ID, LABEL_ID_1, ARINC661.A661_STYLE_SET, 12); api.sendAll();
public class StatefullAPI |
---|
api
instance to communicate with the ARINC661 server.Modifier and Type | Method and Description |
---|---|
void | addWidgetEventListener(int appliID, int layerID, arinc661.client.api.ARINCEventListener listener)
Listens to any widget event on the specified Layer
|
void | addWidgetEventListener(int appliID, int layerID, int widgetID, arinc661.client.api.ARINCEventListener listener)
Listens to any event on the specified Layer and widget
|
void | addWidgetEventListener2(int layerID, int widgetID, arinc661.client.api.ARINCEventListener listener)
Listens to any event on the specified Layer and widget. This method can be used if there is only one layer of the specified ID for all the Server
|
api.addWidgetEventListener(LAYER_ID, PUSHBUTTON_ID, new ARINCEventListener() { public void eventReceived(ARINCEvent evt) { WidgetEvent widgetEvt = (WidgetEvent) evt; System.out.println("Button Pressed"); } });To check the event ID, check the associated event ID. For example, to check if the cursor enters or exits the area of an A661_CURSOR_OVER widget:
api.addWidgetEventListener(LAYER_ID, CURSOROVER_ID, new ARINCEventListener() { public void eventReceived(ARINCEvent evt) { WidgetEvent widgetEvt = (WidgetEvent) evt; if (widgetEvt.getEventID() == ARINC661.A661_EVT_CURSOR_ENTER) { System.out.println("Cursor Enter"); } else if (widgetEvt.getEventID() == ARINC661.A661_EVT_CURSOR_EXIT) { System.out.println("Cursor Exit"); } }); });If the event has associated values, you can retrieve these values with the
getFirstValue()
or getValues()
methods on the WidgetEvent
class. For example, to get the PosX and PosY coordinates of the cursor relative to the A661_CURSOR_OVER widget:api.addWidgetEventListener(LAYER_ID, CURSOROVER_ID, new ARINCEventListener() { public void eventReceived(ARINCEvent evt) { WidgetEvent widgetEvt = (WidgetEvent) evt; if (widgetEvt.getEventID() == ARINC661.A661_EVT_CURSOR_ENTER) { long posX = (long)widgetEvt.getValues.get(0); long posY = (long)widgetEvt.getValues.get(1); System.out.println("Cursor Enter at " + posY + " and " + posY); } });
sendAll()
method every 2 ms, but only perform the sending every 40 ms to the Server.
Copyright 2017-2020 Dassault Aviation. All Rights Reserved. Documentation and source under the LGPL v3 licence