public interface IPlaybackMonitorDisplay
There is a related interface IPlaybackMonitor that defines content of a script playback monitor.
| Modifier and Type | Method and Description |
|---|---|
java.awt.Frame |
getFrame()
Return the playback monitor's frame
|
boolean |
isAlwaysOnTop()
Returns whether the playback monitor is always displayed on top
of other windows.
|
boolean |
isVisible()
Returns whether the playback monitor is visible.
|
void |
setAlwaysOnTop(boolean b)
Display playback monitor in front of any other window or not,
depending on the argument.
|
void |
setVisible(boolean b)
Show or hide the playback monitor depending on the argument.
|
void |
toFront()
Method called to bring the playback monitor to the front of the stacking
order (AKA z-order).
|
void setVisible(boolean b)
b - true - show the playback monitor, otherwise, hideboolean isVisible()
void setAlwaysOnTop(boolean b)
b - true - show always on top,
otherwise, may be behind another windowboolean isAlwaysOnTop()
void toFront()
java.awt.Frame getFrame()