|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.zkoss.zk.ui.AbstractComponent
org.zkoss.zk.ui.HtmlBasedComponent
org.zkoss.zul.impl.XulElement
org.zkoss.zul.Audio
public class Audio
An audio clip.
An extension to XUL. Only works for browsers supporting HTML5 audio tag (since ZK 7.0.0).
| Nested Class Summary | |
|---|---|
protected class |
Audio.ExtraCtrl
A utility class to implement HtmlBasedComponent.getExtraCtrl(). |
| Nested classes/interfaces inherited from class org.zkoss.zk.ui.AbstractComponent |
|---|
org.zkoss.zk.ui.AbstractComponent.Children |
| Field Summary | |
|---|---|
protected List<String> |
_src
|
| Fields inherited from class org.zkoss.zk.ui.HtmlBasedComponent |
|---|
_zclass |
| Fields inherited from interface org.zkoss.zk.ui.Component |
|---|
APPLICATION_SCOPE, COMPONENT_SCOPE, DESKTOP_SCOPE, PAGE_SCOPE, REQUEST_SCOPE, SESSION_SCOPE, SPACE_SCOPE |
| Fields inherited from interface org.zkoss.zk.ui.sys.ComponentCtrl |
|---|
CE_BUSY_IGNORE, CE_DUPLICATE_IGNORE, CE_IMPORTANT, CE_NON_DEFERRABLE, CE_REPEAT_IGNORE |
| Constructor Summary | |
|---|---|
Audio()
|
|
Audio(String src)
|
|
| Method Summary | |
|---|---|
org.zkoss.sound.Audio |
getContent()
Returns the content set by setContent(org.zkoss.sound.Audio). |
Object |
getExtraCtrl()
|
String |
getPreload()
Returns whether and how the audio should be loaded. |
List<String> |
getSrc()
Returns the src. |
boolean |
isAutoplay()
Returns whether to auto start playing the audio. |
boolean |
isAutostart()
Deprecated. As of release 7.0.0, use isAutoplay() instead. |
protected boolean |
isChildable()
Default: not childable. |
boolean |
isControls()
Returns whether to display the audio controls. |
boolean |
isLoop()
Returns whether to play the audio repeatedly. |
boolean |
isMuted()
Returns whether to mute the audio. |
void |
pause()
Pauses the audio at the client. |
void |
play()
Plays the audio at the client. |
protected void |
renderProperties(org.zkoss.zk.ui.sys.ContentRenderer renderer)
|
void |
setAutoplay(boolean autoplay)
Sets whether to auto start playing the audio. |
void |
setAutostart(boolean autostart)
Deprecated. As of release 7.0.0, use setAutoplay(boolean) instead. |
void |
setContent(org.zkoss.sound.Audio audio)
Sets the content directly. |
void |
setControls(boolean controls)
Sets whether to display the audio controls. |
void |
setLoop(boolean loop)
Sets whether to play the audio repeatedly. |
void |
setMuted(boolean muted)
Sets whether to mute the audio. |
void |
setPreload(String preload)
Sets whether and how the audio should be loaded. |
void |
setSrc(List<String> src)
Sets the source list. |
void |
setSrc(String src)
Sets the src. |
void |
stop()
Stops the audio at the client. |
| Methods inherited from class org.zkoss.zul.impl.XulElement |
|---|
clone, getContext, getCtrlKeys, getPopup, getTooltip, setContext, setContext, setCtrlKeys, setPopup, setPopup, setTooltip, setTooltip |
| Methods inherited from class org.zkoss.zk.ui.HtmlBasedComponent |
|---|
focus, getAction, getDraggable, getDroppable, getHeight, getHflex, getLeft, getRenderdefer, getSclass, getStyle, getTooltiptext, getTop, getVflex, getWidth, getZclass, getZindex, getZIndex, service, setAction, setClass, setDraggable, setDroppable, setFocus, setHeight, setHeightDirectly, setHflex, setHflexDirectly, setLeft, setLeftDirectly, setRenderdefer, setSclass, setStyle, setTooltiptext, setTop, setTopDirectly, setVflex, setWidth, setWidthDirectly, setZclass, setZindex, setZIndex, setZIndexDirectly |
| Methods inherited from class org.zkoss.zk.ui.AbstractComponent |
|---|
addAnnotation, addAnnotation, addClientEvent, addEventHandler, addEventListener, addEventListener, addForward, addForward, addForward, addForward, addMoved, addScopeListener, addSharedEventHandlerMap, appendChild, applyProperties, beforeChildAdded, beforeChildRemoved, beforeParentChanged, detach, didActivate, didActivate, didDeserialize, didDeserialize, disableClientUpdate, equals, getAnnotatedProperties, getAnnotatedPropertiesBy, getAnnotation, getAnnotation, getAnnotations, getAnnotations, getAnnotations, getAttribute, getAttribute, getAttribute, getAttributeOrFellow, getAttributes, getAttributes, getAuService, getAutag, getChildren, getClientEvents, getDefaultMold, getDefinition, getDesktop, getEventHandler, getEventHandlerNames, getEventListenerMap, getEventListeners, getFellow, getFellow, getFellowIfAny, getFellowIfAny, getFellows, getFirstChild, getId, getLastChild, getListenerIterator, getMold, getNextSibling, getPage, getParent, getPreviousSibling, getRoot, getSpaceOwner, getStubonly, getTemplate, getTemplateNames, getUuid, getWidgetAttribute, getWidgetAttributeNames, getWidgetClass, getWidgetListener, getWidgetListenerNames, getWidgetOverride, getWidgetOverrideNames, hasAttribute, hasAttribute, hasAttribute, hasAttributeOrFellow, hasFellow, hasFellow, insertBefore, invalidate, isInvalidated, isListenerAvailable, isVisible, onChildAdded, onChildRemoved, onPageAttached, onPageDetached, onWrongValue, query, queryAll, redraw, redrawChildren, removeAttribute, removeAttribute, removeAttribute, removeChild, removeEventListener, removeForward, removeForward, removeScopeListener, render, render, render, replace, response, response, response, service, sessionDidActivate, sessionWillPassivate, setAttribute, setAttribute, setAttribute, setAuService, setAutag, setDefinition, setDefinition, setId, setMold, setPage, setPageBefore, setParent, setStubonly, setStubonly, setTemplate, setVisible, setVisibleDirectly, setWidgetAttribute, setWidgetClass, setWidgetListener, setWidgetOverride, smartUpdate, smartUpdate, smartUpdate, smartUpdate, smartUpdate, smartUpdate, smartUpdate, smartUpdate, smartUpdate, smartUpdateWidgetListener, smartUpdateWidgetOverride, toString, updateByClient, willPassivate, willPassivate, willSerialize, willSerialize |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected List<String> _src
| Constructor Detail |
|---|
public Audio()
public Audio(String src)
| Method Detail |
|---|
public void play()
public void stop()
public void pause()
public List<String> getSrc()
Default: [].
public void setSrc(String src)
Calling this method implies setContent(null).
In other words, the last invocation of setSrc(java.lang.String) overrides
the previous setContent(org.zkoss.sound.Audio), if any.
setContent(org.zkoss.sound.Audio)public void setSrc(List<String> src)
public boolean isAutostart()
isAutoplay() instead.
Default: false;
public void setAutostart(boolean autostart)
setAutoplay(boolean) instead.
public boolean isAutoplay()
Default: false.
public void setAutoplay(boolean autoplay)
public String getPreload()
Default: null.
public void setPreload(String preload)
preload - which could be one of "none", "metadata", "auto".public boolean isControls()
Default: false.
public void setControls(boolean controls)
public boolean isLoop()
Default: false.
public void setLoop(boolean loop)
public boolean isMuted()
Default: false.
public void setMuted(boolean muted)
public void setContent(org.zkoss.sound.Audio audio)
Default: null.
Calling this method implies setSrc(null).
In other words, the last invocation of setContent(org.zkoss.sound.Audio) overrides
the previous setSrc(java.lang.String), if any.
Note: setContent doesn't support in Chrome.
audio - the audio to display.setSrc(java.lang.String)public org.zkoss.sound.Audio getContent()
setContent(org.zkoss.sound.Audio).
Note: it won't fetch what is set thru by setSrc(java.lang.String).
It simply returns what is passed to setContent(org.zkoss.sound.Audio).
protected void renderProperties(org.zkoss.zk.ui.sys.ContentRenderer renderer)
throws IOException
renderProperties in class XulElementIOExceptionprotected boolean isChildable()
isChildable in class org.zkoss.zk.ui.AbstractComponentpublic Object getExtraCtrl()
getExtraCtrl in interface org.zkoss.zk.ui.sys.ComponentCtrlgetExtraCtrl in class org.zkoss.zk.ui.HtmlBasedComponent
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||