~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/static/javascript/yui/build/widget/widget-debug.js

  • Committer: Matt Nordhoff
  • Date: 2010-02-26 04:37:13 UTC
  • mfrom: (400 trunk)
  • mto: This revision was merged to the branch mainline in revision 401.
  • Revision ID: mnordhoff@mattnordhoff.com-20100226043713-7mw3r6dr9qowutmi
Merge trunk for NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
 
3
Code licensed under the BSD License:
 
4
http://developer.yahoo.net/yui/license.txt
 
5
version: 3.0.0pr2
 
6
*/
 
7
YUI.add('widget', function(Y) {
 
8
 
 
9
/**
 
10
 * Provides the base Widget class along with an augmentable PluginHost interface
 
11
 *
 
12
 * @module widget
 
13
 */
 
14
 
 
15
/**
 
16
 * An augmentable class, which when added to a "Base" based class, allows 
 
17
 * the class to support Plugins, providing plug and unplug methods and performing
 
18
 * instantiation and cleanup during the init and destroy lifecycle phases respectively.
 
19
 *
 
20
 * @class PluginHost
 
21
 */
 
22
 
 
23
var L = Y.Lang;
 
24
 
 
25
function PluginHost(config) {
 
26
    this._plugins = {};
 
27
 
 
28
    this.after("init", function(e, cfg) {this._initPlugins(cfg);});
 
29
    this.after("destroy", this._destroyPlugins);
 
30
}
 
31
 
 
32
PluginHost.prototype = {
 
33
 
 
34
    /**
 
35
     * Register and instantiate a plugin with the Widget.
 
36
     * 
 
37
     * @method plug
 
38
     * @chainable
 
39
     * @param p {String | Object |Array} Accepts the registered 
 
40
     * namespace for the Plugin or an object literal with an "fn" property
 
41
     * specifying the Plugin class and a "cfg" property specifying
 
42
     * the configuration for the Plugin.
 
43
     * <p>
 
44
     * Additionally an Array can also be passed in, with either the above String or 
 
45
     * Object literal values, allowing for multiple plugin registration in 
 
46
     * a single call.
 
47
     * </p>
 
48
     */
 
49
    plug: function(p) {
 
50
        if (p) {
 
51
            if (L.isArray(p)) {
 
52
                var ln = p.length;
 
53
                for (var i = 0; i < ln; i++) {
 
54
                    this.plug(p[i]);
 
55
                }
 
56
            } else if (L.isFunction(p)) {
 
57
                this._plug(p);
 
58
            } else {
 
59
                this._plug(p.fn, p.cfg);
 
60
            }
 
61
        }
 
62
        return this;
 
63
    },
 
64
 
 
65
    /**
 
66
     * Unregister and destroy a plugin already instantiated with the Widget.
 
67
     * 
 
68
     * @method unplug
 
69
     * @param {String} ns The namespace key for the Plugin. If not provided,
 
70
     * all registered plugins are unplugged.
 
71
     * @chainable
 
72
     */
 
73
    unplug: function(ns) {
 
74
        if (ns) {
 
75
            this._unplug(ns);
 
76
        } else {
 
77
            for (ns in this._plugins) {
 
78
                if (Y.Object.owns(this._plugins, ns)) {
 
79
                    this._unplug(ns);
 
80
                }
 
81
            }
 
82
        }
 
83
        return this;
 
84
    },
 
85
 
 
86
    /**
 
87
     * Determines if a plugin has been registered and instantiated 
 
88
     * for this widget.
 
89
     * 
 
90
     * @method hasPlugin
 
91
     * @public
 
92
     * @return {Boolean} returns true, if the plugin has been applied
 
93
     * to this widget.
 
94
     */
 
95
    hasPlugin : function(ns) {
 
96
        return (this._plugins[ns] && this[ns]);
 
97
    },
 
98
 
 
99
    /**
 
100
     * Initializes static plugins registered on the host (the
 
101
     * "PLUGINS" static property) and any plugins passed in 
 
102
     * for the instance through the "plugins" configuration property.
 
103
     *
 
104
     * @method _initPlugins
 
105
     * @param {Config} the user configuration object for the host.
 
106
     * @private
 
107
     */
 
108
    _initPlugins: function(config) {
 
109
 
 
110
        // Class Configuration
 
111
        var classes = this._getClasses(), constructor;
 
112
        for (var i = 0; i < classes.length; i++) {
 
113
            constructor = classes[i];
 
114
            if (constructor.PLUGINS) {
 
115
                this.plug(constructor.PLUGINS);
 
116
            }
 
117
        }
 
118
 
 
119
        // User Configuration
 
120
        if (config && config.plugins) {
 
121
            this.plug(config.plugins);
 
122
        }
 
123
    },
 
124
 
 
125
    /**
 
126
     * Private method used to unplug and destroy all plugins on the host
 
127
     * @method _destroyPlugins
 
128
     * @private
 
129
     */
 
130
    _destroyPlugins: function() {
 
131
        this._unplug();
 
132
    },
 
133
 
 
134
    /**
 
135
     * Private method used to instantiate and attach plugins to the host
 
136
     * @method _plug
 
137
     * @param {Function} PluginClass The plugin class to instantiate
 
138
     * @param {Object} config The configuration object for the plugin
 
139
     * @private
 
140
     */
 
141
    _plug: function(PluginClass, config) {
 
142
        if (PluginClass && PluginClass.NS) {
 
143
            var ns = PluginClass.NS;
 
144
 
 
145
            config = config || {};
 
146
            config.owner = this;
 
147
 
 
148
            if (this.hasPlugin(ns)) {
 
149
                // Update config
 
150
                this[ns].setAtts(config);
 
151
            } else {
 
152
                // Create new instance
 
153
                this[ns] = new PluginClass(config);
 
154
                this._plugins[ns] = PluginClass;
 
155
            }
 
156
        }
 
157
    },
 
158
 
 
159
    /**
 
160
     * Private method used to unregister and destroy a plugin already instantiated with the host.
 
161
     *
 
162
     * @method _unplug
 
163
     * @private
 
164
     * @param {String} ns The namespace key for the Plugin. If not provided,
 
165
     * all registered plugins are unplugged.
 
166
     */
 
167
    _unplug : function(ns) {
 
168
        if (ns) {
 
169
            if (this[ns]) {
 
170
                this[ns].destroy();
 
171
                delete this[ns];
 
172
            }
 
173
            if (this._plugins[ns]) {
 
174
                delete this._plugins[ns];
 
175
            }
 
176
        }
 
177
    }
 
178
};
 
179
 
 
180
Y.PluginHost = PluginHost;
 
181
 
 
182
/**
 
183
 * Provides the base Widget class along with an augmentable PluginHost interface
 
184
 *
 
185
 * @module widget
 
186
 */
 
187
 
 
188
// Local Constants
 
189
var WIDGET = "widget",
 
190
    CONTENT = "content",
 
191
    VISIBLE = "visible",
 
192
    HIDDEN = "hidden",
 
193
    DISABLED = "disabled",
 
194
    FOCUS = "focus",
 
195
    BLUR = "blur",
 
196
    HAS_FOCUS = "hasFocus",
 
197
    WIDTH = "width",
 
198
    HEIGHT = "height",
 
199
    EMPTY = "",
 
200
    HYPHEN = "-",
 
201
    BOUNDING_BOX = "boundingBox",
 
202
    CONTENT_BOX = "contentBox",
 
203
    PARENT_NODE = "parentNode",
 
204
    FIRST_CHILD = "firstChild",
 
205
    OWNER_DOCUMENT = "ownerDocument",
 
206
    BODY = "body",
 
207
    TAB_INDEX = "tabIndex",
 
208
    LOCALE = "locale",
 
209
    INIT_VALUE = "initValue",
 
210
    ID = "id",
 
211
    RENDER = "render",
 
212
    RENDERED = "rendered",
 
213
    DESTROYED = "destroyed",
 
214
 
 
215
    ContentUpdate = "contentUpdate",
 
216
 
 
217
    O = Y.Object,
 
218
    Node = Y.Node,
 
219
    ClassNameManager = Y.ClassNameManager;
 
220
 
 
221
// Widget nodeid-to-instance map for now, 1-to-1.
 
222
var _instances = {};
 
223
 
 
224
/**
 
225
 * A base class for widgets, providing:
 
226
 * <ul>
 
227
 *    <li>The render lifecycle method, in addition to the init and destroy 
 
228
 *        lifecycle methods provide by Base</li>
 
229
 *    <li>Abstract methods to support consistent MVC structure across 
 
230
 *        widgets: renderer, renderUI, bindUI, syncUI</li>
 
231
 *    <li>Support for common widget attributes, such as boundingBox, contentBox, visible, 
 
232
 *        disabled, hasFocus, strings</li>
 
233
 *    <li>Plugin registration and activation support</li>
 
234
 * </ul>
 
235
 *
 
236
 * @param config {Object} Object literal specifying widget configuration 
 
237
 * properties.
 
238
 *
 
239
 * @class Widget
 
240
 * @constructor
 
241
 * @extends Base
 
242
 */
 
243
function Widget(config) {
 
244
    Y.log('constructor called', 'life', 'widget');
 
245
 
 
246
    this._yuid = Y.guid(WIDGET);
 
247
    this._strings = {};
 
248
 
 
249
    Widget.superclass.constructor.apply(this, arguments);
 
250
}
 
251
 
 
252
/**
 
253
 * The build configuration for the Widget class.
 
254
 * <p>
 
255
 * Defines the static fields which need to be aggregated,
 
256
 * when this class is used as the main class passed to 
 
257
 * the <a href="Base.html#method_build">Base.build</a> method.
 
258
 * </p>
 
259
 * @property _buildCfg
 
260
 * @type Object
 
261
 * @static
 
262
 * @final
 
263
 * @private
 
264
 */
 
265
Widget._buildCfg = {
 
266
    aggregates : ["PLUGINS", "HTML_PARSER"]
 
267
};
 
268
 
 
269
/**
 
270
 * Static property provides a string to identify the class.
 
271
 * <p>
 
272
 * Currently used to apply class identifiers to the bounding box 
 
273
 * and to classify events fired by the widget.
 
274
 * </p>
 
275
 *
 
276
 * @property Widget.NAME
 
277
 * @type String
 
278
 * @static
 
279
 */
 
280
Widget.NAME = WIDGET;
 
281
 
 
282
/**
 
283
 * Constant used to identify state changes originating from
 
284
 * the DOM (as opposed to the JavaScript model).
 
285
 *
 
286
 * @property Widget.UI_SRC
 
287
 * @type String
 
288
 * @static
 
289
 * @final
 
290
 */
 
291
Widget.UI_SRC = "ui";
 
292
 
 
293
var UI = Widget.UI_SRC;
 
294
 
 
295
/**
 
296
 * Static property used to define the default attribute 
 
297
 * configuration for the Widget.
 
298
 * 
 
299
 * @property Widget.ATTRS
 
300
 * @type Object
 
301
 * @static
 
302
 */
 
303
Widget.ATTRS = {
 
304
 
 
305
    /**
 
306
     * Flag indicating whether or not this object
 
307
     * has been through the render lifecycle phase.
 
308
     *
 
309
     * @attribute rendered
 
310
     * @readOnly
 
311
     * @default false
 
312
     * @type boolean
 
313
     */
 
314
    rendered: {
 
315
        value:false,
 
316
        readOnly:true
 
317
    },
 
318
 
 
319
    /**
 
320
    * @attribute boundingBox
 
321
    * @description The outermost DOM node for the Widget, used for sizing and positioning 
 
322
    * of a Widget as well as a containing element for any decorator elements used 
 
323
    * for skinning.
 
324
    * @type Node
 
325
    */
 
326
    boundingBox: {
 
327
        value:null,
 
328
        set: function(node) {
 
329
            return this._setBoundingBox(node);
 
330
        },
 
331
        writeOnce: true
 
332
    },
 
333
 
 
334
    /**
 
335
    * @attribute contentBox
 
336
    * @description A DOM node that is a direct descendent of a Widget's bounding box that 
 
337
    * houses its content.
 
338
    * @type Node
 
339
    */
 
340
    contentBox: {
 
341
        value:null,
 
342
        set: function(node) {
 
343
            return this._setContentBox(node);
 
344
        },
 
345
        writeOnce: true
 
346
    },
 
347
 
 
348
    /**
 
349
    * @attribute tabIndex
 
350
    * @description The tabIndex, applied to the bounding box
 
351
    * @type Number
 
352
    */
 
353
    tabIndex: {
 
354
        value: 0
 
355
    },
 
356
 
 
357
    /**
 
358
    * @attribute hasFocus
 
359
    * @description Boolean indicating if the Widget has focus.
 
360
    * @default false
 
361
    * @type boolean
 
362
    */
 
363
    hasFocus: {
 
364
        value: false
 
365
    },
 
366
 
 
367
    /**
 
368
    * @attribute disabled
 
369
    * @description Boolean indicating if the Widget should be disabled. The disabled implementation
 
370
    * is left to the specific classes extending widget.
 
371
    * @default false
 
372
    * @type boolean
 
373
    */
 
374
    disabled: {
 
375
        value: false
 
376
    },
 
377
 
 
378
    /**
 
379
    * @attribute visible
 
380
    * @description Boolean indicating weather or not the Widget is visible.
 
381
    * @default true
 
382
    * @type boolean
 
383
    */
 
384
    visible: {
 
385
        value: true
 
386
    },
 
387
 
 
388
    /**
 
389
    * @attribute height
 
390
    * @description String with units, or number, representing the height of the Widget. If a number is provided,
 
391
    * the default unit, defined by the Widgets DEF_UNIT, property is used.
 
392
    * @default ""
 
393
    * @type {String | Number}
 
394
    */
 
395
    height: {
 
396
        value: EMPTY
 
397
    },
 
398
 
 
399
    /**
 
400
    * @attribute width
 
401
    * @description String with units, or number, representing the width of the Widget. If a number is provided,
 
402
    * the default unit, defined by the Widgets DEF_UNIT, property is used.
 
403
    * @default ""
 
404
    * @type {String | Number}
 
405
    */
 
406
    width: {
 
407
        value: EMPTY
 
408
    },
 
409
 
 
410
    /**
 
411
     * @attribute moveStyles
 
412
     * @description Flag defining whether or not style properties from the content box
 
413
     * should be moved to the bounding box when wrapped (as defined by the WRAP_STYLES property)
 
414
     * @default false
 
415
     * @type boolean
 
416
     */
 
417
    moveStyles: {
 
418
        value: false
 
419
    },
 
420
 
 
421
    /**
 
422
     * @attribute locale
 
423
     * @description
 
424
     * The default locale for the widget. NOTE: Using get/set on the "strings" attribute will
 
425
     * return/set strings for this locale.
 
426
     * @default "en"
 
427
     * @type String
 
428
     */
 
429
    locale : {
 
430
        value: "en"
 
431
    },
 
432
 
 
433
    /**
 
434
     * @attribute strings
 
435
     * @description Collection of strings used to label elements of the Widget's UI.
 
436
     * @default null
 
437
     * @type Object
 
438
     */
 
439
    strings: {
 
440
        set: function(val) {
 
441
            return this._setStrings(val, this.get(LOCALE));
 
442
        },
 
443
 
 
444
        get: function() {
 
445
            return this.getStrings(this.get(LOCALE));
 
446
        }
 
447
    }
 
448
};
 
449
 
 
450
/**
 
451
 * Cached lowercase version of Widget.NAME
 
452
 *
 
453
 * @property Widget._NAME_LOWERCASE
 
454
 * @private
 
455
 * @static
 
456
 */
 
457
Widget._NAME_LOWERCASE = Widget.NAME.toLowerCase();
 
458
 
 
459
/**
 
460
 * Generate a standard prefixed classname for the Widget, prefixed by the default prefix defined
 
461
 * by the <code>Y.config.classNamePrefix</code> attribute used by <code>ClassNameManager</code> and 
 
462
 * <code>Widget.NAME.toLowerCase()</code> (e.g. "yui-widget-xxxxx-yyyyy", based on default values for 
 
463
 * the prefix and widget class name).
 
464
 * <p>
 
465
 * The instance based version of this method can be used to generate standard prefixed classnames,
 
466
 * based on the instances NAME, as opposed to Widget.NAME. This method should be used when you
 
467
 * need to use a constant class name across different types instances.
 
468
 * </p>
 
469
 * @method getClassName
 
470
 * @param {String*} args* 0..n strings which should be concatenated, using the default separator defined by ClassNameManager, to create the class name
 
471
 */
 
472
Widget.getClassName = function() {
 
473
        var args = Y.Array(arguments, 0, true);
 
474
        args.splice(0, 0, this._NAME_LOWERCASE);
 
475
        return ClassNameManager.getClassName.apply(ClassNameManager, args);
 
476
};
 
477
 
 
478
/**
 
479
 * Returns the widget instance whose bounding box contains, or is, the given node. 
 
480
 * <p>
 
481
 * In the case of nested widgets, the nearest bounding box ancestor is used to
 
482
 * return the widget instance.
 
483
 * </p>
 
484
 * @method Widget.getByNode
 
485
 * @static
 
486
 * @param node {Node | String} The node for which to return a Widget instance. If a selector
 
487
 * string is passed in, which selects more than one node, the first node found is used.
 
488
 * @return {Widget} Widget instance, or null if not found.
 
489
 */
 
490
Widget.getByNode = function(node) {
 
491
    var widget,
 
492
        bbMarker = Widget.getClassName();
 
493
 
 
494
    node = Node.get(node);
 
495
    if (node) {
 
496
        node = (node.hasClass(bbMarker)) ? node : node.ancestor("." + bbMarker);
 
497
        if (node) {
 
498
            widget = _instances[node.get(ID)];
 
499
        }
 
500
    }
 
501
 
 
502
    return widget || null;
 
503
};
 
504
 
 
505
/**
 
506
 * Object hash, defining how attribute values are to be parsed from
 
507
 * markup contained in the widget's content box. e.g.:
 
508
 * <pre>
 
509
 *   {
 
510
 *       // Set single Node references using selector syntax 
 
511
 *       // (selector is run through node.query)
 
512
 *       titleNode: "span.yui-title",
 
513
 *       // Set NodeList references using selector syntax 
 
514
 *       // (array indicates selector is to be run through node.queryAll)
 
515
 *       listNodes: ["li.yui-item"],
 
516
 *       // Set other attribute types, using a parse function. 
 
517
 *       // Context is set to the widget instance.
 
518
 *       label: function(contentBox) {
 
519
 *           return contentBox.query("span.title").get("innerHTML");
 
520
 *       }
 
521
 *   }
 
522
 * </pre>
 
523
 * 
 
524
 * @property Widget.HTML_PARSER
 
525
 * @type Object
 
526
 * @static
 
527
 */
 
528
Widget.HTML_PARSER = {};
 
529
 
 
530
Y.extend(Widget, Y.Base, {
 
531
 
 
532
        /**
 
533
         * Returns a class name prefixed with the the value of the 
 
534
         * <code>YUI.config.classNamePrefix</code> attribute + the instances <code>NAME</code> property.
 
535
         * Uses <code>YUI.config.classNameDelimiter</code> attribute to delimit the provided strings.
 
536
         * e.g. 
 
537
         * <code>
 
538
         * <pre>
 
539
         *    // returns "yui-slider-foo-bar", for a slider instance
 
540
         *    var scn = slider.getClassName('foo','bar');
 
541
         *
 
542
         *    // returns "yui-overlay-foo-bar", for an overlay instance
 
543
         *    var ocn = slider.getClassName('foo','bar');
 
544
         * </pre>
 
545
         * </code>
 
546
         *
 
547
         * @method getClassName
 
548
         * @param {String}+ One or more classname bits to be joined and prefixed
 
549
         */
 
550
        getClassName: function () {
 
551
                var args = Y.Array(arguments, 0, true);
 
552
                args.splice(0, 0, this._name);
 
553
                return ClassNameManager.getClassName.apply(ClassNameManager, args);
 
554
        },
 
555
 
 
556
    /**
 
557
     * Initializer lifecycle implementation for the Widget class. Registers the 
 
558
     * widget instance, and runs through the Widget's HTML_PARSER definition. 
 
559
     *
 
560
     * @method initializer
 
561
     * @protected
 
562
     * @param  config {Object} Configuration object literal for the widget
 
563
     */
 
564
    initializer: function(config) {
 
565
        Y.log('initializer called', 'life', 'widget');
 
566
 
 
567
        /**
 
568
         * Notification event, which widget implementations can fire, when
 
569
         * they change the content of the widget. This event has no default
 
570
         * behavior and cannot be prevented, so the "on" or "after"
 
571
         * moments are effectively equivalent (with on listeners being invoked before 
 
572
         * after listeners).
 
573
         * 
 
574
         * @event widget:contentUpdate
 
575
         * @preventable false
 
576
         * @param {Event.Facade} e The Event Facade
 
577
         */
 
578
        this.publish(ContentUpdate, { preventable:false });
 
579
 
 
580
                this._name = this.constructor.NAME.toLowerCase();
 
581
 
 
582
        var nodeId = this.get(BOUNDING_BOX).get(ID);
 
583
        if (nodeId) {
 
584
            _instances[nodeId] = this;
 
585
        }
 
586
 
 
587
        var htmlConfig = this._parseHTML(this.get(CONTENT_BOX));
 
588
        if (htmlConfig) {
 
589
            Y.aggregate(config, htmlConfig, false);
 
590
        }
 
591
 
 
592
        Y.PluginHost.call(this, config);
 
593
    },
 
594
 
 
595
    /**
 
596
     * Descructor lifecycle implementation for the Widget class. Purges events attached
 
597
     * to the bounding box (and all child nodes) and removes the Widget from the 
 
598
     * list of registered widgets.
 
599
     *
 
600
     * @method destructor
 
601
     * @protected
 
602
     */
 
603
    destructor: function() {
 
604
        Y.log('destructor called', 'life', 'widget');
 
605
 
 
606
        var boundingBox = this.get(BOUNDING_BOX);
 
607
        
 
608
        Y.Event.purgeElement(boundingBox, true);
 
609
 
 
610
        var nodeId = boundingBox.get(ID);
 
611
        if (nodeId && nodeId in _instances) {
 
612
            delete _instances[nodeId];
 
613
        }
 
614
    },
 
615
 
 
616
    /**
 
617
     * Establishes the initial DOM for the widget. Invoking this
 
618
     * method will lead to the creating of all DOM elements for
 
619
     * the widget (or the manipulation of existing DOM elements 
 
620
     * for the progressive enhancement use case).
 
621
     * <p>
 
622
     * This method should only be invoked once for an initialized
 
623
     * widget.
 
624
     * </p>
 
625
     * <p>
 
626
     * It delegates to the widget specific renderer method to do
 
627
     * the actual work.
 
628
     * </p>
 
629
     *
 
630
     * @method render
 
631
     * @chainable
 
632
     * @final 
 
633
     * @param  parentNode {Object | String} Optional. The Node under which the 
 
634
     * Widget is to be rendered. This can be a Node instance or a CSS selector string. 
 
635
     * <p>
 
636
     * If the selector string returns more than one Node, the first node will be used 
 
637
     * as the parentNode. NOTE: This argument is required if both the boundingBox and contentBox
 
638
     * are not currently in the document. If it's not provided, the Widget will be rendered
 
639
     * to the body of the current document in this case.
 
640
     * </p>
 
641
     */
 
642
    render: function(parentNode) {
 
643
 
 
644
        if (this.get(DESTROYED)) {
 
645
            Y.log("Render failed; widget has been destroyed", "error", "widget");
 
646
            return;
 
647
        }
 
648
 
 
649
        if (!this.get(RENDERED)) {
 
650
             /**
 
651
             * Lifcyle event for the render phase, fired prior to rendering the UI 
 
652
             * for the widget (prior to invoking the widgets renderer method).
 
653
             * <p>
 
654
             * Subscribers to the "on" moment of this event, will be notified 
 
655
             * before the widget is rendered.
 
656
             * </p>
 
657
             * <p>
 
658
             * Subscribers to the "after" momemt of this event, will be notified
 
659
             * after rendering is complete.
 
660
             * </p>
 
661
             *
 
662
             * @event widget:render
 
663
             * @preventable _defRenderFn
 
664
             * @param {Event.Facade} e The Event Facade
 
665
             */
 
666
            this.publish(RENDER, {queuable:false, defaultFn: this._defRenderFn});
 
667
 
 
668
            parentNode = (parentNode) ? Node.get(parentNode) : null;
 
669
            if (parentNode && !parentNode.inDoc()) {
 
670
                parentNode = null;
 
671
            }
 
672
 
 
673
            this.fire(RENDER, null, parentNode);
 
674
        }
 
675
 
 
676
        return this;
 
677
    },
 
678
 
 
679
    /**
 
680
     * Default render handler
 
681
     *
 
682
     * @method _defRenderFn
 
683
     * @protected
 
684
     * @param {Event.Facade} e The Event object
 
685
     * @param {Node} parentNode The parent node to render to, if passed in to the <code>render</code> method
 
686
     */
 
687
    _defRenderFn : function(e, parentNode) {
 
688
 
 
689
            this._renderUI(parentNode);
 
690
            this._bindUI();
 
691
            this._syncUI();
 
692
 
 
693
            this.renderer();
 
694
 
 
695
            this._set(RENDERED, true);
 
696
    },
 
697
 
 
698
    /** 
 
699
     * Creates DOM (or manipulates DOM for progressive enhancement)
 
700
     * This method is invoked by render() and is not chained 
 
701
     * automatically for the class hierarchy (like initializer, destructor) 
 
702
     * so it should be chained manually for subclasses if required.
 
703
     * 
 
704
     * @method renderer
 
705
     * @protected
 
706
     */
 
707
    renderer: function() {
 
708
        this.renderUI();
 
709
        this.bindUI();
 
710
        this.syncUI();
 
711
    },
 
712
 
 
713
    /**
 
714
     * Configures/Sets up listeners to bind Widget State to UI/DOM
 
715
     * 
 
716
     * This method is not called by framework and is not chained 
 
717
     * automatically for the class hierarchy.
 
718
     * 
 
719
     * @method bindUI
 
720
     * @protected
 
721
     */
 
722
    bindUI: function() {},
 
723
 
 
724
    /**
 
725
     * Adds nodes to the DOM 
 
726
     * 
 
727
     * This method is not called by framework and is not chained 
 
728
     * automatically for the class hierarchy.
 
729
     * 
 
730
     * @method renderUI
 
731
     * @protected
 
732
     */
 
733
    renderUI: function() {},
 
734
 
 
735
    /**
 
736
     * Refreshes the rendered UI, based on Widget State
 
737
     * 
 
738
     * This method is not called by framework and is not chained
 
739
     * automatically for the class hierarchy.
 
740
     *
 
741
     * @method syncUI
 
742
     * 
 
743
     */
 
744
    syncUI: function(){},
 
745
 
 
746
    /**
 
747
    * @method hide
 
748
    * @description Shows the Module element by setting the "visible" attribute to "false".
 
749
    */
 
750
    hide: function() {
 
751
        return this.set(VISIBLE, false);
 
752
    },
 
753
 
 
754
    /**
 
755
    * @method show
 
756
    * @description Shows the Module element by setting the "visible" attribute to "true".
 
757
    */
 
758
    show: function() {
 
759
        return this.set(VISIBLE, true);
 
760
    },
 
761
 
 
762
    /**
 
763
    * @method focus
 
764
    * @description Causes the Widget to receive the focus by setting the "hasFocus" 
 
765
    * attribute to "true".
 
766
    */
 
767
    focus: function () {
 
768
        return this.set(HAS_FOCUS, true);
 
769
    },
 
770
 
 
771
    /**
 
772
    * @method blur
 
773
    * @description Causes the Widget to lose focus by setting the "hasFocus" attribute 
 
774
    * to "false"
 
775
    */            
 
776
    blur: function () {
 
777
        return this.set(HAS_FOCUS, false);
 
778
    },
 
779
 
 
780
    /**
 
781
    * @method enable
 
782
    * @description Set the Widget's "disabled" attribute to "false".
 
783
    */
 
784
    enable: function() {
 
785
        return this.set(DISABLED, false);
 
786
    },
 
787
 
 
788
    /**
 
789
    * @method disabled
 
790
    * @description Set the Widget's "disabled" attribute to "true".
 
791
    */
 
792
    disable: function() {
 
793
        return this.set(DISABLED, true);
 
794
    },
 
795
 
 
796
    /**
 
797
     * Utilitity method used to apply the <code>HTML_PARSER</code> configuration for the 
 
798
     * instance, to retrieve config data values.
 
799
     * 
 
800
     * @method _parseHTML
 
801
     * @private 
 
802
     * @param  node {Node} Root node to use to parse markup for configuration data
 
803
     * @return config {Object} configuration object, with values found in the HTML, populated
 
804
     */
 
805
    _parseHTML : function(node) {
 
806
 
 
807
        var schema = this._getHtmlParser(),
 
808
            data,
 
809
            val;
 
810
 
 
811
        if (schema && node && node.hasChildNodes()) {
 
812
 
 
813
            O.each(schema, function(v, k, o) {
 
814
                val = null;
 
815
 
 
816
                if (L.isFunction(v)) {
 
817
                    val = v.call(this, node);
 
818
                } else {
 
819
                    if (L.isArray(v)) {
 
820
                        val = node.queryAll(v[0]);
 
821
                    } else {
 
822
                        val = node.query(v);
 
823
                    }
 
824
                }
 
825
 
 
826
                if (val !== null && val !== undefined) {
 
827
                    data = data || {};
 
828
                    data[k] = val;
 
829
                }
 
830
 
 
831
            }, this);
 
832
        }
 
833
 
 
834
        return data;
 
835
    },
 
836
 
 
837
    /**
 
838
     * Moves a pre-defined set of style rules (WRAP_STYLES) from one node to another.
 
839
     *
 
840
     * @method _moveStyles
 
841
     * @private
 
842
     * @param {Node} nodeFrom The node to gather the styles from
 
843
     * @param {Node} nodeTo The node to apply the styles to
 
844
     */
 
845
    _moveStyles: function(nodeFrom, nodeTo) {
 
846
 
 
847
        var styles = this.WRAP_STYLES,
 
848
            pos = nodeFrom.getStyle('position'),
 
849
            contentBox = this.get(CONTENT_BOX),
 
850
            xy = [0,0],
 
851
            h, w;
 
852
 
 
853
        if (!this.get('height')) {
 
854
            h = contentBox.get('offsetHeight');
 
855
        }
 
856
 
 
857
        if (!this.get('width')) {
 
858
            w = contentBox.get('offsetWidth');
 
859
        }
 
860
 
 
861
        if (pos === 'absolute') {
 
862
            xy = nodeFrom.getXY();
 
863
            nodeTo.setStyles({
 
864
                right: 'auto',
 
865
                bottom: 'auto'
 
866
            });
 
867
 
 
868
            nodeFrom.setStyles({
 
869
                right: 'auto',
 
870
                bottom: 'auto'
 
871
            });
 
872
        }
 
873
 
 
874
        Y.each(styles, function(v, k) {
 
875
            var s = nodeFrom.getStyle(k);
 
876
            nodeTo.setStyle(k, s);
 
877
            if (v === false) {
 
878
                nodeFrom.setStyle(k, '');
 
879
            } else {
 
880
                nodeFrom.setStyle(k, v);
 
881
            }
 
882
        });
 
883
 
 
884
        if (pos === 'absolute') {
 
885
            nodeTo.setXY(xy);
 
886
        }
 
887
 
 
888
        if (h) {
 
889
            this.set('height', h);
 
890
        }
 
891
 
 
892
        if (w) {
 
893
            this.set('width', w);
 
894
        }
 
895
    },
 
896
 
 
897
    /**
 
898
    * Helper method to collect the boundingBox and contentBox, set styles and append to the provided parentNode, if not
 
899
    * already a child. The owner document of the boundingBox, or the owner document of the contentBox will be used 
 
900
    * as the document into which the Widget is rendered if a parentNode is node is not provided. If both the boundingBox and
 
901
    * the contentBox are not currently in the document, and no parentNode is provided, the widget will be rendered 
 
902
    * to the current document's body.
 
903
    *
 
904
    * @method _renderBox
 
905
    * @private
 
906
    * @param {Node} parentNode The parentNode to render the widget to. If not provided, and both the boundingBox and
 
907
    * the contentBox are not currently in the document, the widget will be rendered to the current document's body.
 
908
    */
 
909
    _renderBox: function(parentNode) {
 
910
 
 
911
        var contentBox = this.get(CONTENT_BOX),
 
912
            boundingBox = this.get(BOUNDING_BOX),
 
913
            doc = boundingBox.get(OWNER_DOCUMENT) || contentBox.get(OWNER_DOCUMENT),
 
914
            body;
 
915
 
 
916
        if (!boundingBox.compareTo(contentBox.get(PARENT_NODE))) {
 
917
            if (this.get('moveStyles')) {
 
918
                this._moveStyles(contentBox, boundingBox);
 
919
            }
 
920
            // If contentBox box is already in the document, have boundingBox box take it's place
 
921
            if (contentBox.inDoc(doc)) {
 
922
                contentBox.get(PARENT_NODE).replaceChild(boundingBox, contentBox);
 
923
            }
 
924
            boundingBox.appendChild(contentBox);
 
925
        }
 
926
 
 
927
        if (!boundingBox.inDoc(doc) && !parentNode) {
 
928
            body = Node.get(BODY);
 
929
            if (body.get(FIRST_CHILD)) {
 
930
                // Special case when handling body as default (no parentNode), always try to insert.
 
931
                body.insertBefore(boundingBox, body.get(FIRST_CHILD));
 
932
            } else {
 
933
                body.appendChild(boundingBox);
 
934
            }
 
935
        } else {
 
936
            if (parentNode && !parentNode.compareTo(boundingBox.get(PARENT_NODE))) {
 
937
                parentNode.appendChild(boundingBox);
 
938
            }
 
939
        }
 
940
    },
 
941
 
 
942
    /**
 
943
    * Setter for the boundingBox attribute
 
944
    *
 
945
    * @method _setBoundingBox
 
946
    * @private
 
947
    * @param Node/String
 
948
    * @return Node
 
949
    */
 
950
    _setBoundingBox: function(node) {
 
951
        return this._setBox(node, this.BOUNDING_TEMPLATE);
 
952
    },
 
953
 
 
954
    /**
 
955
    * Setter for the contentBox attribute
 
956
    *
 
957
    * @method _setContentBox
 
958
    * @private
 
959
    * @param {Node|String} node
 
960
    * @return Node
 
961
    */
 
962
    _setContentBox: function(node) {
 
963
        return this._setBox(node, this.CONTENT_TEMPLATE);
 
964
    },
 
965
 
 
966
    /**
 
967
     * Helper method to set the bounding/content box, or create it from
 
968
     * the provided template if not found.
 
969
     *
 
970
     * @method _setBox
 
971
     * @private
 
972
     *
 
973
     * @param {Node|String} node The node reference
 
974
     * @param {String} template HTML string template for the node
 
975
     * @return {Node} The node
 
976
     */
 
977
    _setBox : function(node, template) {
 
978
        node = Node.get(node) || Node.create(template);
 
979
 
 
980
        var sid = Y.stamp(node);
 
981
        if (!node.get(ID)) {
 
982
            node.set(ID, sid);
 
983
        }
 
984
        return node;
 
985
    },
 
986
 
 
987
    /**
 
988
     * Initializes the UI state for the Widget's bounding/content boxes.
 
989
     *
 
990
     * @method _renderUI
 
991
     * @protected
 
992
     * @param {Node} The parent node to rendering the widget into
 
993
     */
 
994
    _renderUI: function(parentNode) {
 
995
        this._renderBoxClassNames();
 
996
        this._renderBox(parentNode);
 
997
    },
 
998
 
 
999
     /**
 
1000
      * Applies standard class names to the boundingBox and contentBox
 
1001
      * 
 
1002
      * @method _renderBoxClassNames
 
1003
      * @protected
 
1004
      */
 
1005
    _renderBoxClassNames : function() {
 
1006
        var classes = this._getClasses(),
 
1007
            boundingBox = this.get(BOUNDING_BOX),
 
1008
            contentBox = this.get(CONTENT_BOX),
 
1009
            name;
 
1010
 
 
1011
        boundingBox.addClass(Widget.getClassName());
 
1012
 
 
1013
        // Start from Widget Sub Class
 
1014
        for (var i = 2, l = classes.length; i < l; ++i) {
 
1015
            name = classes[i].NAME;
 
1016
            if (name) {
 
1017
                boundingBox.addClass(ClassNameManager.getClassName(name.toLowerCase()));
 
1018
            }
 
1019
        }
 
1020
 
 
1021
        // Use instance based name for content box
 
1022
        contentBox.addClass(this.getClassName(CONTENT));
 
1023
    },
 
1024
 
 
1025
    /**
 
1026
     * Sets up DOM and CustomEvent listeners for the widget.
 
1027
     *
 
1028
     * @method _bindUI
 
1029
     * @protected
 
1030
     */
 
1031
    _bindUI: function() {
 
1032
        this.after('visibleChange', this._afterVisibleChange);
 
1033
        this.after('disabledChange', this._afterDisabledChange);
 
1034
        this.after('heightChange', this._afterHeightChange);
 
1035
        this.after('widthChange', this._afterWidthChange);
 
1036
        this.after('hasFocusChange', this._afterHasFocusChange);
 
1037
 
 
1038
        this._bindDOMListeners();
 
1039
    },
 
1040
 
 
1041
    /**
 
1042
     * Sets up DOM listeners, on elements rendered by the widget.
 
1043
     * 
 
1044
     * @method _bindDOMListeners
 
1045
     * @protected
 
1046
     */
 
1047
    _bindDOMListeners : function() {
 
1048
        this.get(BOUNDING_BOX).on(FOCUS, Y.bind(this._onFocus, this));
 
1049
        this.get(BOUNDING_BOX).on(BLUR, Y.bind(this._onBlur, this));
 
1050
    },
 
1051
 
 
1052
    /**
 
1053
     * Updates the widget UI to reflect the attribute state.
 
1054
     *
 
1055
     * @method _syncUI
 
1056
     * @protected
 
1057
     */
 
1058
    _syncUI: function() {
 
1059
        this._uiSetVisible(this.get(VISIBLE));
 
1060
        this._uiSetDisabled(this.get(DISABLED));
 
1061
        this._uiSetHeight(this.get(HEIGHT));
 
1062
        this._uiSetWidth(this.get(WIDTH));
 
1063
        this._uiSetHasFocus(this.get(HAS_FOCUS));
 
1064
        this._uiSetTabIndex(this.get(TAB_INDEX));
 
1065
    },
 
1066
 
 
1067
    /**
 
1068
     * Sets the height on the widget's bounding box element
 
1069
     * 
 
1070
     * @method _uiSetHeight
 
1071
     * @protected
 
1072
     * @param {String | Number} val
 
1073
     */
 
1074
    _uiSetHeight: function(val) {
 
1075
        if (L.isNumber(val)) {
 
1076
            val = val + this.DEF_UNIT;
 
1077
        }
 
1078
        this.get(BOUNDING_BOX).setStyle(HEIGHT, val);
 
1079
    },
 
1080
 
 
1081
    /**
 
1082
     * Sets the width on the widget's bounding box element
 
1083
     *
 
1084
     * @method _uiSetWidth
 
1085
     * @protected
 
1086
     * @param {String | Number} val
 
1087
     */
 
1088
    _uiSetWidth: function(val) {
 
1089
        if (L.isNumber(val)) {
 
1090
            val = val + this.DEF_UNIT;
 
1091
        }
 
1092
        this.get(BOUNDING_BOX).setStyle(WIDTH, val);
 
1093
    },
 
1094
 
 
1095
    /**
 
1096
     * Sets the visible state for the UI
 
1097
     * 
 
1098
     * @method _uiSetVisible
 
1099
     * @protected
 
1100
     * @param {boolean} val
 
1101
     */
 
1102
    _uiSetVisible: function(val) {
 
1103
 
 
1104
        var box = this.get(BOUNDING_BOX), 
 
1105
            sClassName = this.getClassName(HIDDEN);
 
1106
 
 
1107
        if (val === true) { 
 
1108
            box.removeClass(sClassName); 
 
1109
        } else {
 
1110
            box.addClass(sClassName); 
 
1111
        }
 
1112
    },
 
1113
 
 
1114
    /**
 
1115
     * Sets the disabled state for the UI
 
1116
     * 
 
1117
     * @protected
 
1118
     * @param {boolean} val
 
1119
     */
 
1120
    _uiSetDisabled: function(val) {
 
1121
 
 
1122
        var box = this.get(BOUNDING_BOX), 
 
1123
            sClassName = this.getClassName(DISABLED);
 
1124
 
 
1125
        if (val === true) {
 
1126
            box.addClass(sClassName);
 
1127
        } else {
 
1128
            box.removeClass(sClassName);
 
1129
        }
 
1130
    },
 
1131
 
 
1132
    /**
 
1133
     * Sets the hasFocus state for the UI
 
1134
     *
 
1135
     * @protected
 
1136
     * @param {boolean} val
 
1137
     * @param {string} src String representing the source that triggered an update to 
 
1138
     * the UI.     
 
1139
     */
 
1140
    _uiSetHasFocus: function(val, src) {
 
1141
 
 
1142
        var box = this.get(BOUNDING_BOX),
 
1143
            sClassName = this.getClassName(FOCUS);
 
1144
 
 
1145
        if (val === true) {
 
1146
            box.addClass(sClassName);
 
1147
            if (src !== UI) {
 
1148
                box.focus();
 
1149
            }
 
1150
        } else {
 
1151
            box.removeClass(sClassName);
 
1152
            if (src !== UI) {
 
1153
                box.blur();
 
1154
            }
 
1155
        }
 
1156
    },
 
1157
 
 
1158
    /**
 
1159
    * Set the tabIndex on the widget's rendered UI
 
1160
    *
 
1161
    * @method _uiSetTabIndex
 
1162
    * @protected
 
1163
    * @param Number
 
1164
    */
 
1165
    _uiSetTabIndex: function(index) {
 
1166
        this.get(BOUNDING_BOX).set(TAB_INDEX, index);
 
1167
    },
 
1168
 
 
1169
    /**
 
1170
     * Default visible attribute state change handler
 
1171
     *
 
1172
     * @method _afterVisibleChange
 
1173
     * @protected
 
1174
     * @param {Event.Facade} evt The event facade for the attribute change
 
1175
     */
 
1176
    _afterVisibleChange: function(evt) {
 
1177
        this._uiSetVisible(evt.newVal);
 
1178
    },
 
1179
 
 
1180
    /**
 
1181
     * Default disabled attribute state change handler
 
1182
     * 
 
1183
     * @method _afterDisabledChange
 
1184
     * @protected
 
1185
     * @param {Event.Facade} evt The event facade for the attribute change
 
1186
     */
 
1187
    _afterDisabledChange: function(evt) {
 
1188
        this._uiSetDisabled(evt.newVal);
 
1189
    },
 
1190
 
 
1191
    /**
 
1192
     * Default height attribute state change handler
 
1193
     * 
 
1194
     * @method _afterHeightChange
 
1195
     * @protected
 
1196
     * @param {Event.Facade} evt The event facade for the attribute change
 
1197
     */
 
1198
    _afterHeightChange: function(evt) {
 
1199
        this._uiSetHeight(evt.newVal);
 
1200
    },
 
1201
 
 
1202
    /**
 
1203
     * Default widget attribute state change handler
 
1204
     * 
 
1205
     * @method _afterWidthChange
 
1206
     * @protected
 
1207
     * @param {Event.Facade} evt The event facade for the attribute change
 
1208
     */
 
1209
    _afterWidthChange: function(evt) {
 
1210
        this._uiSetWidth(evt.newVal);
 
1211
    },
 
1212
 
 
1213
    /**
 
1214
     * Default hasFocus attribute state change handler
 
1215
     * 
 
1216
     * @method _afterHasFocusChange
 
1217
     * @protected
 
1218
     * @param {Event.Facade} evt The event facade for the attribute change
 
1219
     */
 
1220
    _afterHasFocusChange: function(evt) {
 
1221
        this._uiSetHasFocus(evt.newVal, evt.src);
 
1222
    },
 
1223
 
 
1224
    /**
 
1225
     * DOM focus event handler, used to sync the state of the Widget with the DOM
 
1226
     * 
 
1227
     * @method _onFocus
 
1228
     * @protected
 
1229
     * @param {Event.Facade} evt The event facade for the DOM focus event
 
1230
     */
 
1231
    _onFocus: function (evt) {
 
1232
        this.set(HAS_FOCUS, true, { src: UI });
 
1233
    },
 
1234
 
 
1235
    /**
 
1236
     * DOM blur event handler, used to sync the state of the Widget with the DOM
 
1237
     *
 
1238
     * @method _onBlur
 
1239
     * @protected
 
1240
     * @param {Event.Facade} evt The event facade for the DOM blur event
 
1241
     */                 
 
1242
    _onBlur: function (evt) {
 
1243
        this.set(HAS_FOCUS, false, { src: UI });
 
1244
    },
 
1245
 
 
1246
    /**
 
1247
     * Generic toString implementation for all widgets.
 
1248
     *
 
1249
     * @method toString
 
1250
     * @return {String} The default string value for the widget [ displays the NAME of the instance, and the unique id ]
 
1251
     */
 
1252
    toString: function() {
 
1253
        return this.constructor.NAME + "[" + this._yuid + "]";
 
1254
    },
 
1255
 
 
1256
    /**
 
1257
     * Default unit to use for dimension values
 
1258
     * 
 
1259
     * @property DEF_UNIT
 
1260
     */
 
1261
    DEF_UNIT : "px",
 
1262
 
 
1263
    /**
 
1264
     * Static property defining the markup template for content box.
 
1265
     *
 
1266
     * @property CONTENT_TEMPLATE
 
1267
     * @type String
 
1268
     */
 
1269
    CONTENT_TEMPLATE : "<div></div>",
 
1270
 
 
1271
    /**
 
1272
     * Static property defining the markup template for bounding box.
 
1273
     *
 
1274
     * @property BOUNDING_TEMPLATE
 
1275
     * @type String
 
1276
     */
 
1277
    BOUNDING_TEMPLATE : "<div></div>",
 
1278
 
 
1279
    /**
 
1280
     * Static property listing the styles that are mimiced on the bounding box from the content box.
 
1281
     *
 
1282
     * @property WRAP_STYLES
 
1283
     * @type Object
 
1284
     */
 
1285
    WRAP_STYLES : {
 
1286
        height: '100%',
 
1287
        width: '100%',
 
1288
        zIndex: false,
 
1289
        position: 'static',
 
1290
        top: '0',
 
1291
        left: '0',
 
1292
        bottom: '',
 
1293
        right: '',
 
1294
        padding: '',
 
1295
        margin: ''
 
1296
    },
 
1297
 
 
1298
    /**
 
1299
     * Sets strings for a particular locale, merging with any existing
 
1300
     * strings which may already be defined for the locale.
 
1301
     *
 
1302
     * @method _setStrings
 
1303
     * @protected
 
1304
     * @param {Object} strings The hash of string key/values to set
 
1305
     * @param {Object} locale The locale for the string values being set
 
1306
     */
 
1307
    _setStrings : function(strings, locale) {
 
1308
        var strs = this._strings;
 
1309
        locale = locale.toLowerCase();
 
1310
 
 
1311
        if (!strs[locale]) {
 
1312
            strs[locale] = {};
 
1313
        }
 
1314
 
 
1315
        Y.aggregate(strs[locale], strings, true);
 
1316
        return strs[locale];
 
1317
    },
 
1318
 
 
1319
    /**
 
1320
     * Returns the strings key/value hash for a paricular locale, without locale lookup applied.
 
1321
     *
 
1322
     * @method _getStrings
 
1323
     * @protected
 
1324
     * @param {Object} locale
 
1325
     */
 
1326
    _getStrings : function(locale) {
 
1327
        return this._strings[locale.toLowerCase()];
 
1328
    },
 
1329
 
 
1330
    /**
 
1331
     * Gets the entire strings hash for a particular locale, performing locale lookup.
 
1332
     * <p>
 
1333
     * If no values of the key are defined for a particular locale the value for the 
 
1334
     * default locale (in initial locale set for the class) is returned.
 
1335
     * </p>
 
1336
     * @method getStrings
 
1337
     * @param {String} locale (optional) The locale for which the string value is required. Defaults to the current locale, if not provided.
 
1338
     */
 
1339
    // TODO: Optimize/Cache. Clear cache on _setStrings call.
 
1340
    getStrings : function(locale) {
 
1341
 
 
1342
        locale = (locale || this.get(LOCALE)).toLowerCase();
 
1343
 
 
1344
        Y.log("getStrings: For " + locale, "info", "widget"); 
 
1345
 
 
1346
        var defLocale = this.getDefaultLocale().toLowerCase(),
 
1347
            defStrs = this._getStrings(defLocale),
 
1348
            strs = (defStrs) ? Y.merge(defStrs) : {},
 
1349
            localeSegments = locale.split(HYPHEN);
 
1350
 
 
1351
        // If locale is different than the default, or needs lookup support
 
1352
        if (locale !== defLocale || localeSegments.length > 1) {
 
1353
            var lookup = "";
 
1354
            for (var i = 0, l = localeSegments.length; i < l; ++i) {
 
1355
                lookup += localeSegments[i];
 
1356
 
 
1357
                Y.log("getStrings: Merging in strings from: " + lookup, "info", "widget"); 
 
1358
 
 
1359
                var localeStrs = this._getStrings(lookup);
 
1360
                if (localeStrs) {
 
1361
                    Y.aggregate(strs, localeStrs, true);
 
1362
                }
 
1363
                lookup += HYPHEN;
 
1364
            }
 
1365
        }
 
1366
 
 
1367
        return strs;
 
1368
    },
 
1369
 
 
1370
    /**
 
1371
     * Gets the string for a particular key, for a particular locale, performing locale lookup.
 
1372
     * <p>
 
1373
     * If no values if defined for the key, for the given locale, the value for the 
 
1374
     * default locale (in initial locale set for the class) is returned.
 
1375
     * </p>
 
1376
     * @method getString
 
1377
     * @param {String} key The key.
 
1378
     * @param {String} locale (optional) The locale for which the string value is required. Defaults to the current locale, if not provided.
 
1379
     */
 
1380
    getString : function(key, locale) {
 
1381
 
 
1382
        locale = (locale || this.get(LOCALE)).toLowerCase();
 
1383
 
 
1384
        Y.log("getString: For " + locale, "info", "widget"); 
 
1385
 
 
1386
        var defLocale = (this.getDefaultLocale()).toLowerCase(),
 
1387
            strs = this._getStrings(defLocale) || {},
 
1388
            str = strs[key],
 
1389
            idx = locale.lastIndexOf(HYPHEN);
 
1390
 
 
1391
        // If locale is different than the default, or needs lookup support
 
1392
        if (locale !== defLocale || idx != -1) {
 
1393
            do {
 
1394
                Y.log("getString: Performing lookup for: " + locale, "info", "widget"); 
 
1395
 
 
1396
                strs = this._getStrings(locale);
 
1397
                if (strs && key in strs) {
 
1398
                    str = strs[key];
 
1399
                    break;
 
1400
                }
 
1401
                idx = locale.lastIndexOf(HYPHEN);
 
1402
                // Chop of last locale segment
 
1403
                if (idx != -1) {
 
1404
                    locale = locale.substring(0, idx);
 
1405
                }
 
1406
 
 
1407
            } while (idx != -1);
 
1408
        }
 
1409
 
 
1410
        return str;
 
1411
    },
 
1412
 
 
1413
    /**
 
1414
     * Returns the default locale for the widget (the locale value defined by the
 
1415
     * widget class, or provided by the user during construction).
 
1416
     *
 
1417
     * @method getDefaultLocale
 
1418
     * @return {String} The default locale for the widget
 
1419
     */
 
1420
    getDefaultLocale : function() {
 
1421
        return this._conf.get(LOCALE, INIT_VALUE);
 
1422
    },
 
1423
 
 
1424
    /**
 
1425
     * Private stings hash, used to store strings in locale specific buckets.
 
1426
     *
 
1427
     * @property _strings
 
1428
     * @private
 
1429
     * @type Object
 
1430
     */
 
1431
    _strings: null,
 
1432
 
 
1433
    /**
 
1434
     * Gets the HTML_PARSER definition for this instance, by merging HTML_PARSER
 
1435
     * definitions across the class hierarchy.
 
1436
     *
 
1437
     * @method _getHtmlParser
 
1438
     * @return {Object} HTML_PARSER definition for this instance
 
1439
     */
 
1440
    _getHtmlParser : function() {
 
1441
        if (!this._HTML_PARSER) {
 
1442
            var classes = this._getClasses(),
 
1443
                parser = {};
 
1444
 
 
1445
            for (var i = 0, l = classes.length; i < l; i++) {
 
1446
                var p = classes[i].HTML_PARSER;
 
1447
                if (p) {
 
1448
                    Y.mix(parser, p, true);
 
1449
                }
 
1450
            }
 
1451
 
 
1452
            this._HTML_PARSER = parser;
 
1453
        }
 
1454
 
 
1455
        return this._HTML_PARSER;
 
1456
    }
 
1457
});
 
1458
 
 
1459
/**
 
1460
 * Static registration of default plugins for the class.
 
1461
 * 
 
1462
 * @property Widget.PLUGINS
 
1463
 * @static
 
1464
 */
 
1465
Widget.PLUGINS = [];
 
1466
 
 
1467
Y.mix(Widget, Y.PluginHost, false, null, 1); // straightup augment, no wrapper functions
 
1468
 
 
1469
Y.Widget = Widget;
 
1470
 
 
1471
 
 
1472
 
 
1473
}, '3.0.0pr2' ,{requires:['base', 'node', 'classnamemanager']});