X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=wrt%2Fmisc%2Frss%2FWRTKit%2FUI%2FSeparator.js;fp=wrt%2Fmisc%2Frss%2FWRTKit%2FUI%2FSeparator.js;h=b32089930260f559ba1e621a2c8287c7cafd5140;hb=29fa83d8856e6aedacac394735fea72038630bde;hp=0000000000000000000000000000000000000000;hpb=07b7b456f3e68d859a32f48ecdc0dfbdf2bf7c83;p=ptas diff --git a/wrt/misc/rss/WRTKit/UI/Separator.js b/wrt/misc/rss/WRTKit/UI/Separator.js new file mode 100644 index 0000000..b320899 --- /dev/null +++ b/wrt/misc/rss/WRTKit/UI/Separator.js @@ -0,0 +1,119 @@ +/* +© Copyright 2008 Nokia Corporation. All rights reserved. + +IMPORTANT: The Nokia software ("WRTKit and Example Widget files") is supplied to you by Nokia +Corporation (“Nokia”) in consideration of your agreement to the following terms. Your use, installation +and/or redistribution of the WRTKit and Example Widget files constitutes acceptance of these terms. If +you do not agree with these terms, please do not use, install, or redistribute the WRTKit and Example +Widget files. + +In consideration of your agreement to abide by the following terms, and subject to these terms, Nokia +grants you a personal, non-exclusive license, under Nokia’s copyrights in the WRTKit and Example +Widget files, to use, reproduce, and redistribute the WRTKit and Example files, in text form (for HTML, +CSS, or JavaScript files) or binary form (for associated images), for the sole purpose of creating S60 +Widgets. + +If you redistribute the WRTKit and Example files, you must retain this entire notice in all such +redistributions of the WRTKit and Example files. + +You may not use the name, trademarks, service marks or logos of Nokia to endorse or promote products +that include the WRTKit and Example files without the prior written explicit agreement with Nokia. +Except as expressly stated in this notice, no other rights or licenses, express or implied, are granted by +Nokia herein, including but not limited to any patent rights that may be infringed by your products that +incorporate the WRTKit and Example files or by other works in which the WRTKit and Example files +may be incorporated. + +The WRTKit and Example files are provided on an "AS IS" basis. NOKIA MAKES NO +WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED +WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE, REGARDING THE EXAMPLES OR ITS USE AND OPERATION +ALONE OR IN COMBINATION WITH YOUR PRODUCTS. + +IN NO EVENT SHALL NOKIA BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, AND/OR +DISTRIBUTION OF THE EXAMPLES, HOWEVER CAUSED AND WHETHER UNDER THEORY +OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, +EVEN IF NOKIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +*/ + +/////////////////////////////////////////////////////////////////////////////// +// The Separator class is used to provide a visual separator in a list. + +// Constructor. +function Separator(id) { + if (id != UI_NO_INIT_ID) { + this.init(id); + } +} + +// Separator inherits from Control. +Separator.prototype = new Control(UI_NO_INIT_ID); + +// Reference to the separator element. +Separator.prototype.separatorElement = null; + +// Separator row element. +Separator.prototype.tableRowElement = null; + +// Left cell element. +Separator.prototype.tableLeftCellElement = null; + +// Center cell element. +Separator.prototype.tableCenterCellElement = null; + +// Right cell element. +Separator.prototype.tableRightCellElement = null; + +// Initializer - called from constructor. +Separator.prototype.init = function(id) { + uiLogger.debug("Separator.init(" + id + ")"); + + // call superclass initializer + Control.prototype.init.call(this, id, null); + + // remove caption and control elements + this.assemblyElement.removeChild(this.captionElement); + this.assemblyElement.removeChild(this.controlElement); + + // create separator + this.separatorElement = document.createElement("table"); + this.tableRowElement = document.createElement("tr"); + this.tableLeftCellElement = document.createElement("td"); + this.tableCenterCellElement = document.createElement("td"); + this.tableRightCellElement = document.createElement("td"); + this.tableRowElement.appendChild(this.tableLeftCellElement); + this.tableRowElement.appendChild(this.tableCenterCellElement); + this.tableRowElement.appendChild(this.tableRightCellElement); + this.separatorElement.appendChild(this.tableRowElement); + this.assemblyElement.appendChild(this.separatorElement); + + // update style + this.updateStyleFromState(); +} + +// Returns the enabled state for the control. +Separator.prototype.isEnabled = function() { + return true; +} + +// Returns the focusable state for the control. +Separator.prototype.isFocusable = function() { + return false; +} + +// Updates the style of the control to reflects the state of the control. +Separator.prototype.updateStyleFromState = function() { + uiLogger.debug("Separator.updateStyleFromState()"); + + // set element class names + this.setClassName(this.rootElement, "Control"); + this.setClassName(this.assemblyElement, "ControlAssembly ControlAssemblyNormal"); + this.setClassName(this.separatorElement, "Separator"); + this.setClassName(this.tableRowElement, "SeparatorRow"); + this.setClassName(this.tableLeftCellElement, "SeparatorLeftCell"); + this.setClassName(this.tableCenterCellElement, "SeparatorCenterCell"); + this.setClassName(this.tableRightCellElement, "SeparatorRightCell"); +}