|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectfr.emn.reactiveinput.AbstractDevice
fr.emn.reactiveinput.devices.DQuikWrite
| Field Summary | |
Out |
action_backspace
|
Out |
action_enter
|
Out |
area
|
In |
help
|
Out |
text
|
In |
transparency
|
In |
use
|
Out |
usethru
|
In |
x
|
Out |
xthru
|
In |
y
|
Out |
ythru
|
| Fields inherited from class fr.emn.reactiveinput.AbstractDevice |
currIndex, ins, outs |
| Fields inherited from interface fr.emn.reactiveinput.Device |
AUTO_PROPERTIES |
| Constructor Summary | |
DQuikWrite()
|
|
| Method Summary | |
protected void |
checkAreaChange()
|
void |
close()
Add closing code here if needed. |
boolean |
getCenteredInsertionPoint()
|
boolean |
getCharDisplayEnabled()
|
double |
getDefaultTransparency()
|
boolean |
getHighlightEnabled()
|
int |
getTotalSize()
Params |
boolean |
getTraceEnabled()
|
boolean |
hasExternalOutput()
Specifies whether this device has external (implicit) output or not. |
Processor |
open(OpenContext context)
Subclass this method if you want to specialize data processing, or if you want to perform some initializations before running the device. |
void |
setCenteredInsertionPoint(boolean v)
|
void |
setCharDisplayEnabled(boolean v)
|
void |
setDefaultTransparency(double def)
|
void |
setHighlightEnabled(boolean v)
|
void |
setTotalSize(int size)
|
void |
setTraceEnabled(boolean v)
|
void |
update()
Updates device's output values. |
| Methods inherited from class fr.emn.reactiveinput.AbstractDevice |
addIn, addIn, addOut, copy, doDisable, doEnable, finalize, getError, getIndex, getInfo, getIns, getName, getOuts, getProperties, hasExternalInput, init, insertAt, insertAtEnd, insertBefore, isCopiable, isEnabled, isOpenable, setEnabled, setInfo, setInfo, setLastError, setName |
| Methods inherited from class java.lang.Object |
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
public final In x
public final In y
public final In use
public final In transparency
public final In help
public final Out usethru
public final Out xthru
public final Out ythru
public final Out text
public final Out action_backspace
public final Out action_enter
public final Out area
| Constructor Detail |
public DQuikWrite()
| Method Detail |
public Processor open(OpenContext context)
AbstractDeviceBy default, open() does nothing and returns the device itself as the Processor (or null if it is not openable): AbstractDevice implements both Device and Processor interfaces, so that you can add processing code directly into the device.
If you want to add specialization features, subclass this method to return a specific processor implementation depending on your device configuration.
Example :
public Processor getProcessor() {
if (super.open() == null)
return null;
// Select the right processor
if (in2.isValid()) {
return new twoParamProcessor(in1, in2, out);
else
return new oneParamProcessor(in1, out);
}
In this method, you may also perform all necessary pre-running initialization. If initialization fails, return null even if isOpenable() returns true.
In all cases, return null if isOpenable() returns false.
open in interface Deviceopen in class AbstractDeviceProcessor,
Device.open()public void close()
AbstractDevice
close in interface Deviceclose in class AbstractDevicepublic void update()
AbstractDeviceSubclass init() and update() methods if you want the device to process the data itself. Otherwise, subclass getProcessor() method to use extern processors.
update in interface Processorupdate in class AbstractDeviceProcessor.update()protected void checkAreaChange()
public int getTotalSize()
public void setTotalSize(int size)
public double getDefaultTransparency()
public void setDefaultTransparency(double def)
public boolean hasExternalOutput()
AbstractDeviceReturn false if the device has no border effects. Most of input and processing devices are in this case.
Return true if the device has border effects, such as graphical feedback, or control of some external value. Examples of devices with external output are application-interfacing devices and all user feedback devices.
This method can be used by the editor for the device's graphical representation. However there is at now no clear definition of what is external output.
hasExternalOutput in interface DevicehasExternalOutput in class AbstractDevicepublic boolean getHighlightEnabled()
public void setHighlightEnabled(boolean v)
public boolean getTraceEnabled()
public void setTraceEnabled(boolean v)
public boolean getCharDisplayEnabled()
public void setCharDisplayEnabled(boolean v)
public boolean getCenteredInsertionPoint()
public void setCenteredInsertionPoint(boolean v)
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||