/**
 * @class Ext.LoadMask
 * @extend Ext.Mask
 * @xtype loadmask
 * A simple class used to mask any {@link Ext.Container}.
 *
 * This should rarely be used directly, instead look at the {@link Ext.Container#masked} configuration.
 *
 * ## Example
 *
 *     @example
 *     Ext.Viewport.add({
 *         masked: {
 *            xtype: 'loadmask'
 *         }
 *     });
 *
 * You can customize the loading {@link #message} and whether or not you want to show the {@link #indicator}:
 *
 *     @example
 *     Ext.Viewport.add({
 *         masked: {
 *            xtype: 'loadmask',
 *            message: 'A message..',
 *            indicator: false
 *         }
 *     });
 *
 */
 
/**
 * @cfg {String} [message='Loading...']
 * The text to display in a centered loading message box.
 * @accessor
 */
 
/**
 * @cfg {String} cls 
 * The CSS Class for this component
 * @accessor
 */
 
/**
 * @cfg {String} messageCls 
 * The CSS class to apply to the loading message element.
 * @accessor
 */
 
/**
 * @cfg {Boolean} [indicator=true]
 * True to show the loading indicator on this {@link Ext.LoadMask}.
 * @accessor
 */