Subclasses a goog.ui.media.MediaRenderer to provide a Picasa specific media renderer. This class knows how to parse picasa URLs, and render the DOM structure of picasa album players and previews. This class is meant to be used as a singleton static stateless class, that takes {@code goog.ui.media.Media} instances and renders it. It expects {@code goog.ui.media.Media.getModel} to return a well formed, previously constructed, object with a user and album fields {@see goog.ui.media.PicasaAlbum.parseUrl}, which is the data model this renderer will use to construct the DOM structure. {@see goog.ui.media.PicasaAlbum.newControl} for a example of constructing a control with this renderer. goog.ui.media.PicasaAlbum currently displays a picasa-made flash slideshow with the photos, but could possibly display a handwritten js photo viewer, in case flash is not available. This design is patterned after http://go/closure_control_subclassing It uses {@link goog.ui.media.FlashObject} to embed the flash object.
extends goog.ui.media.MediaRendererInstance Method Summary | |
createDom(?goog.ui.media.Media control) ⇒ ?Element Creates the initial DOM structure of the picasa album, which is basically a the flash object pointing to a flash picasa album player. | |
getCssClass() ⇒ string Returns the CSS class to be applied to the root element of components rendered using this renderer. |
Static Method Summary | |
newControl(?goog.ui.media.PicasaAlbumModel dataModel, ?goog.dom.DomHelper= opt_domHelper) ⇒ ?goog.ui.media.Media A static convenient method to construct a goog.ui.media.Media control out of a picasa data model. It sets it as the data model goog.ui.media.PicasaAlbum renderer uses, sets the states supported by the renderer, and returns a Control that binds everything together. This is what you should be using for constructing Picasa albums, except if you need finer control over the configuration. |