MessageBox.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:27k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.0.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /**
  8.  * @class Ext.MessageBox
  9.  * <p>Utility class for generating different styles of message boxes.  The alias Ext.Msg can also be used.<p/>
  10.  * <p>Note that the MessageBox is asynchronous.  Unlike a regular JavaScript <code>alert</code> (which will halt
  11.  * browser execution), showing a MessageBox will not cause the code to stop.  For this reason, if you have code
  12.  * that should only run <em>after</em> some user feedback from the MessageBox, you must use a callback function
  13.  * (see the <code>function</code> parameter for {@link #show} for more details).</p>
  14.  * <p>Example usage:</p>
  15.  *<pre><code>
  16. // Basic alert:
  17. Ext.Msg.alert('Status', 'Changes saved successfully.');
  18. // Prompt for user data and process the result using a callback:
  19. Ext.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
  20.     if (btn == 'ok'){
  21.         // process text value and close...
  22.     }
  23. });
  24. // Show a dialog using config options:
  25. Ext.Msg.show({
  26.    title:'Save Changes?',
  27.    msg: 'You are closing a tab that has unsaved changes. Would you like to save your changes?',
  28.    buttons: Ext.Msg.YESNOCANCEL,
  29.    fn: processResult,
  30.    animEl: 'elId',
  31.    icon: Ext.MessageBox.QUESTION
  32. });
  33. </code></pre>
  34.  * @singleton
  35.  */
  36. Ext.MessageBox = function(){
  37.     var dlg, opt, mask, waitTimer;
  38.     var bodyEl, msgEl, textboxEl, textareaEl, progressBar, pp, iconEl, spacerEl;
  39.     var buttons, activeTextEl, bwidth, iconCls = '';
  40.     // private
  41.     var handleButton = function(button){
  42.         if(dlg.isVisible()){
  43.             dlg.hide();
  44.             handleHide();
  45.             Ext.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value, opt], 1);
  46.         }
  47.     };
  48.     // private
  49.     var handleHide = function(){
  50.         if(opt && opt.cls){
  51.             dlg.el.removeClass(opt.cls);
  52.         }
  53.         progressBar.reset();
  54.     };
  55.     // private
  56.     var handleEsc = function(d, k, e){
  57.         if(opt && opt.closable !== false){
  58.             dlg.hide();
  59.             handleHide();
  60.         }
  61.         if(e){
  62.             e.stopEvent();
  63.         }
  64.     };
  65.     // private
  66.     var updateButtons = function(b){
  67.         var width = 0;
  68.         if(!b){
  69.             buttons["ok"].hide();
  70.             buttons["cancel"].hide();
  71.             buttons["yes"].hide();
  72.             buttons["no"].hide();
  73.             return width;
  74.         }
  75.         dlg.footer.dom.style.display = '';
  76.         for(var k in buttons){
  77.             if(typeof buttons[k] != "function"){
  78.                 if(b[k]){
  79.                     buttons[k].show();
  80.                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Ext.MessageBox.buttonText[k]);
  81.                     width += buttons[k].el.getWidth()+15;
  82.                 }else{
  83.                     buttons[k].hide();
  84.                 }
  85.             }
  86.         }
  87.         return width;
  88.     };
  89.     return {
  90.         /**
  91.          * Returns a reference to the underlying {@link Ext.Window} element
  92.          * @return {Ext.Window} The window
  93.          */
  94.         getDialog : function(titleText){
  95.            if(!dlg){
  96.                 dlg = new Ext.Window({
  97.                     autoCreate : true,
  98.                     title:titleText,
  99.                     resizable:false,
  100.                     constrain:true,
  101.                     constrainHeader:true,
  102.                     minimizable : false,
  103.                     maximizable : false,
  104.                     stateful: false,
  105.                     modal: true,
  106.                     shim:true,
  107.                     buttonAlign:"center",
  108.                     width:400,
  109.                     height:100,
  110.                     minHeight: 80,
  111.                     plain:true,
  112.                     footer:true,
  113.                     closable:true,
  114.                     close : function(){
  115.                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
  116.                             handleButton("no");
  117.                         }else{
  118.                             handleButton("cancel");
  119.                         }
  120.                     }
  121.                 });
  122.                 buttons = {};
  123.                 var bt = this.buttonText;
  124.                 //TODO: refactor this block into a buttons config to pass into the Window constructor
  125.                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
  126.                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
  127.                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
  128.                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
  129.                 buttons["ok"].hideMode = buttons["yes"].hideMode = buttons["no"].hideMode = buttons["cancel"].hideMode = 'offsets';
  130.                 dlg.render(document.body);
  131.                 dlg.getEl().addClass('x-window-dlg');
  132.                 mask = dlg.mask;
  133.                 bodyEl = dlg.body.createChild({
  134.                     html:'<div class="ext-mb-icon"></div><div class="ext-mb-content"><span class="ext-mb-text"></span><br /><div class="ext-mb-fix-cursor"><input type="text" class="ext-mb-input" /><textarea class="ext-mb-textarea"></textarea></div></div>'
  135.                 });
  136.                 iconEl = Ext.get(bodyEl.dom.firstChild);
  137.                 var contentEl = bodyEl.dom.childNodes[1];
  138.                 msgEl = Ext.get(contentEl.firstChild);
  139.                 textboxEl = Ext.get(contentEl.childNodes[2].firstChild);
  140.                 textboxEl.enableDisplayMode();
  141.                 textboxEl.addKeyListener([10,13], function(){
  142.                     if(dlg.isVisible() && opt && opt.buttons){
  143.                         if(opt.buttons.ok){
  144.                             handleButton("ok");
  145.                         }else if(opt.buttons.yes){
  146.                             handleButton("yes");
  147.                         }
  148.                     }
  149.                 });
  150.                 textareaEl = Ext.get(contentEl.childNodes[2].childNodes[1]);
  151.                 textareaEl.enableDisplayMode();
  152.                 progressBar = new Ext.ProgressBar({
  153.                     renderTo:bodyEl
  154.                 });
  155.                bodyEl.createChild({cls:'x-clear'});
  156.             }
  157.             return dlg;
  158.         },
  159.         /**
  160.          * Updates the message box body text
  161.          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
  162.          * the XHTML-compliant non-breaking space character '&amp;#160;')
  163.          * @return {Ext.MessageBox} this
  164.          */
  165.         updateText : function(text){
  166.             if(!dlg.isVisible() && !opt.width){
  167.                 dlg.setSize(this.maxWidth, 100); // resize first so content is never clipped from previous shows
  168.             }
  169.             msgEl.update(text || '&#160;');
  170.             var iw = iconCls != '' ? (iconEl.getWidth() + iconEl.getMargins('lr')) : 0;
  171.             var mw = msgEl.getWidth() + msgEl.getMargins('lr');
  172.             var fw = dlg.getFrameWidth('lr');
  173.             var bw = dlg.body.getFrameWidth('lr');
  174.             if (Ext.isIE && iw > 0){
  175.                 //3 pixels get subtracted in the icon CSS for an IE margin issue,
  176.                 //so we have to add it back here for the overall width to be consistent
  177.                 iw += 3;
  178.             }
  179.             var w = Math.max(Math.min(opt.width || iw+mw+fw+bw, this.maxWidth),
  180.                         Math.max(opt.minWidth || this.minWidth, bwidth || 0));
  181.             if(opt.prompt === true){
  182.                 activeTextEl.setWidth(w-iw-fw-bw);
  183.             }
  184.             if(opt.progress === true || opt.wait === true){
  185.                 progressBar.setSize(w-iw-fw-bw);
  186.             }
  187.             if(Ext.isIE && w == bwidth){
  188.                 w += 4; //Add offset when the content width is smaller than the buttons.    
  189.             }
  190.             dlg.setSize(w, 'auto').center();
  191.             return this;
  192.         },
  193.         /**
  194.          * Updates a progress-style message box's text and progress bar. Only relevant on message boxes
  195.          * initiated via {@link Ext.MessageBox#progress} or {@link Ext.MessageBox#wait},
  196.          * or by calling {@link Ext.MessageBox#show} with progress: true.
  197.          * @param {Number} value Any number between 0 and 1 (e.g., .5, defaults to 0)
  198.          * @param {String} progressText The progress text to display inside the progress bar (defaults to '')
  199.          * @param {String} msg The message box's body text is replaced with the specified string (defaults to undefined
  200.          * so that any existing body text will not get overwritten by default unless a new value is passed in)
  201.          * @return {Ext.MessageBox} this
  202.          */
  203.         updateProgress : function(value, progressText, msg){
  204.             progressBar.updateProgress(value, progressText);
  205.             if(msg){
  206.                 this.updateText(msg);
  207.             }
  208.             return this;
  209.         },
  210.         /**
  211.          * Returns true if the message box is currently displayed
  212.          * @return {Boolean} True if the message box is visible, else false
  213.          */
  214.         isVisible : function(){
  215.             return dlg && dlg.isVisible();
  216.         },
  217.         /**
  218.          * Hides the message box if it is displayed
  219.          * @return {Ext.MessageBox} this
  220.          */
  221.         hide : function(){
  222.             var proxy = dlg ? dlg.activeGhost : null;
  223.             if(this.isVisible() || proxy){
  224.                 dlg.hide();
  225.                 handleHide();
  226.                 if (proxy){
  227.                     // unghost is a private function, but i saw no better solution
  228.                     // to fix the locking problem when dragging while it closes
  229.                     dlg.unghost(false, false);
  230.                 } 
  231.             }
  232.             return this;
  233.         },
  234.         /**
  235.          * Displays a new message box, or reinitializes an existing message box, based on the config options
  236.          * passed in. All display functions (e.g. prompt, alert, etc.) on MessageBox call this function internally,
  237.          * although those calls are basic shortcuts and do not support all of the config options allowed here.
  238.          * @param {Object} config The following config options are supported: <ul>
  239.          * <li><b>animEl</b> : String/Element<div class="sub-desc">An id or Element from which the message box should animate as it
  240.          * opens and closes (defaults to undefined)</div></li>
  241.          * <li><b>buttons</b> : Object/Boolean<div class="sub-desc">A button config object (e.g., Ext.MessageBox.OKCANCEL or {ok:'Foo',
  242.          * cancel:'Bar'}), or false to not show any buttons (defaults to false)</div></li>
  243.          * <li><b>closable</b> : Boolean<div class="sub-desc">False to hide the top-right close button (defaults to true). Note that
  244.          * progress and wait dialogs will ignore this property and always hide the close button as they can only
  245.          * be closed programmatically.</div></li>
  246.          * <li><b>cls</b> : String<div class="sub-desc">A custom CSS class to apply to the message box's container element</div></li>
  247.          * <li><b>defaultTextHeight</b> : Number<div class="sub-desc">The default height in pixels of the message box's multiline textarea
  248.          * if displayed (defaults to 75)</div></li>
  249.          * <li><b>fn</b> : Function<div class="sub-desc">A callback function which is called when the dialog is dismissed either
  250.          * by clicking on the configured buttons, or on the dialog close button, or by pressing
  251.          * the return button to enter input.
  252.          * <p>Progress and wait dialogs will ignore this option since they do not respond to user
  253.          * actions and can only be closed programmatically, so any required function should be called
  254.          * by the same code after it closes the dialog. Parameters passed:<ul>
  255.          * <li><b>buttonId</b> : String<div class="sub-desc">The ID of the button pressed, one of:<div class="sub-desc"><ul>
  256.          * <li><tt>ok</tt></li>
  257.          * <li><tt>yes</tt></li>
  258.          * <li><tt>no</tt></li>
  259.          * <li><tt>cancel</tt></li>
  260.          * </ul></div></div></li>
  261.          * <li><b>text</b> : String<div class="sub-desc">Value of the input field if either <tt><a href="#show-option-prompt" ext:member="show-option-prompt" ext:cls="Ext.MessageBox">prompt</a></tt>
  262.          * or <tt><a href="#show-option-multiline" ext:member="show-option-multiline" ext:cls="Ext.MessageBox">multiline</a></tt> is true</div></li>
  263.          * <li><b>opt</b> : Object<div class="sub-desc">The config object passed to show.</div></li>
  264.          * </ul></p></div></li>
  265.          * <li><b>scope</b> : Object<div class="sub-desc">The scope of the callback function</div></li>
  266.          * <li><b>icon</b> : String<div class="sub-desc">A CSS class that provides a background image to be used as the body icon for the
  267.          * dialog (e.g. Ext.MessageBox.WARNING or 'custom-class') (defaults to '')</div></li>
  268.          * <li><b>iconCls</b> : String<div class="sub-desc">The standard {@link Ext.Window#iconCls} to
  269.          * add an optional header icon (defaults to '')</div></li>
  270.          * <li><b>maxWidth</b> : Number<div class="sub-desc">The maximum width in pixels of the message box (defaults to 600)</div></li>
  271.          * <li><b>minWidth</b> : Number<div class="sub-desc">The minimum width in pixels of the message box (defaults to 100)</div></li>
  272.          * <li><b>modal</b> : Boolean<div class="sub-desc">False to allow user interaction with the page while the message box is
  273.          * displayed (defaults to true)</div></li>
  274.          * <li><b>msg</b> : String<div class="sub-desc">A string that will replace the existing message box body text (defaults to the
  275.          * XHTML-compliant non-breaking space character '&amp;#160;')</div></li>
  276.          * <li><a id="show-option-multiline"></a><b>multiline</b> : Boolean<div class="sub-desc">
  277.          * True to prompt the user to enter multi-line text (defaults to false)</div></li>
  278.          * <li><b>progress</b> : Boolean<div class="sub-desc">True to display a progress bar (defaults to false)</div></li>
  279.          * <li><b>progressText</b> : String<div class="sub-desc">The text to display inside the progress bar if progress = true (defaults to '')</div></li>
  280.          * <li><a id="show-option-prompt"></a><b>prompt</b> : Boolean<div class="sub-desc">True to prompt the user to enter single-line text (defaults to false)</div></li>
  281.          * <li><b>proxyDrag</b> : Boolean<div class="sub-desc">True to display a lightweight proxy while dragging (defaults to false)</div></li>
  282.          * <li><b>title</b> : String<div class="sub-desc">The title text</div></li>
  283.          * <li><b>value</b> : String<div class="sub-desc">The string value to set into the active textbox element if displayed</div></li>
  284.          * <li><b>wait</b> : Boolean<div class="sub-desc">True to display a progress bar (defaults to false)</div></li>
  285.          * <li><b>waitConfig</b> : Object<div class="sub-desc">A {@link Ext.ProgressBar#waitConfig} object (applies only if wait = true)</div></li>
  286.          * <li><b>width</b> : Number<div class="sub-desc">The width of the dialog in pixels</div></li>
  287.          * </ul>
  288.          * Example usage:
  289.          * <pre><code>
  290. Ext.Msg.show({
  291.    title: 'Address',
  292.    msg: 'Please enter your address:',
  293.    width: 300,
  294.    buttons: Ext.MessageBox.OKCANCEL,
  295.    multiline: true,
  296.    fn: saveAddress,
  297.    animEl: 'addAddressBtn',
  298.    icon: Ext.MessageBox.INFO
  299. });
  300. </code></pre>
  301.          * @return {Ext.MessageBox} this
  302.          */
  303.         show : function(options){
  304.             if(this.isVisible()){
  305.                 this.hide();
  306.             }
  307.             opt = options;
  308.             var d = this.getDialog(opt.title || "&#160;");
  309.             d.setTitle(opt.title || "&#160;");
  310.             var allowClose = (opt.closable !== false && opt.progress !== true && opt.wait !== true);
  311.             d.tools.close.setDisplayed(allowClose);
  312.             activeTextEl = textboxEl;
  313.             opt.prompt = opt.prompt || (opt.multiline ? true : false);
  314.             if(opt.prompt){
  315.                 if(opt.multiline){
  316.                     textboxEl.hide();
  317.                     textareaEl.show();
  318.                     textareaEl.setHeight(typeof opt.multiline == "number" ?
  319.                         opt.multiline : this.defaultTextHeight);
  320.                     activeTextEl = textareaEl;
  321.                 }else{
  322.                     textboxEl.show();
  323.                     textareaEl.hide();
  324.                 }
  325.             }else{
  326.                 textboxEl.hide();
  327.                 textareaEl.hide();
  328.             }
  329.             activeTextEl.dom.value = opt.value || "";
  330.             if(opt.prompt){
  331.                 d.focusEl = activeTextEl;
  332.             }else{
  333.                 var bs = opt.buttons;
  334.                 var db = null;
  335.                 if(bs && bs.ok){
  336.                     db = buttons["ok"];
  337.                 }else if(bs && bs.yes){
  338.                     db = buttons["yes"];
  339.                 }
  340.                 if (db){
  341.                     d.focusEl = db;
  342.                 }
  343.             }
  344.             if(opt.iconCls){
  345.               d.setIconClass(opt.iconCls);
  346.             }
  347.             this.setIcon(opt.icon);
  348.             if(opt.cls){
  349.                 d.el.addClass(opt.cls);
  350.             }
  351.             d.proxyDrag = opt.proxyDrag === true;
  352.             d.modal = opt.modal !== false;
  353.             d.mask = opt.modal !== false ? mask : false;
  354.             
  355.             d.on('show', function(){
  356.                 //workaround for window internally enabling keymap in afterShow
  357.                 d.keyMap.setDisabled(allowClose !== true);
  358.                 d.doLayout();
  359.                 this.setIcon(opt.icon);
  360.                 bwidth = updateButtons(opt.buttons);
  361.                 progressBar.setVisible(opt.progress === true || opt.wait === true);
  362.                 this.updateProgress(0, opt.progressText);
  363.                 this.updateText(opt.msg);
  364.                 if(opt.wait === true){
  365.                     progressBar.wait(opt.waitConfig);
  366.                 }
  367.             }, this, {single:true});
  368.             if(!d.isVisible()){
  369.                 // force it to the end of the z-index stack so it gets a cursor in FF
  370.                 document.body.appendChild(dlg.el.dom);
  371.                 d.setAnimateTarget(opt.animEl);
  372.                 d.show(opt.animEl);
  373.             }
  374.             return this;
  375.         },
  376.         /**
  377.          * Adds the specified icon to the dialog.  By default, the class 'ext-mb-icon' is applied for default
  378.          * styling, and the class passed in is expected to supply the background image url. Pass in empty string ('')
  379.          * to clear any existing icon.  The following built-in icon classes are supported, but you can also pass
  380.          * in a custom class name:
  381.          * <pre>
  382. Ext.MessageBox.INFO
  383. Ext.MessageBox.WARNING
  384. Ext.MessageBox.QUESTION
  385. Ext.MessageBox.ERROR
  386.          *</pre>
  387.          * @param {String} icon A CSS classname specifying the icon's background image url, or empty string to clear the icon
  388.          * @return {Ext.MessageBox} this
  389.          */
  390.         setIcon : function(icon){
  391.             if(icon && icon != ''){
  392.                 iconEl.removeClass('x-hidden');
  393.                 iconEl.replaceClass(iconCls, icon);
  394.                 bodyEl.addClass('x-dlg-icon');
  395.                 iconCls = icon;
  396.             }else{
  397.                 iconEl.replaceClass(iconCls, 'x-hidden');
  398.                 bodyEl.removeClass('x-dlg-icon');
  399.                 iconCls = '';
  400.             }
  401.             return this;
  402.         },
  403.         /**
  404.          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
  405.          * the user.  You are responsible for updating the progress bar as needed via {@link Ext.MessageBox#updateProgress}
  406.          * and closing the message box when the process is complete.
  407.          * @param {String} title The title bar text
  408.          * @param {String} msg The message box body text
  409.          * @param {String} progressText (optional) The text to display inside the progress bar (defaults to '')
  410.          * @return {Ext.MessageBox} this
  411.          */
  412.         progress : function(title, msg, progressText){
  413.             this.show({
  414.                 title : title,
  415.                 msg : msg,
  416.                 buttons: false,
  417.                 progress:true,
  418.                 closable:false,
  419.                 minWidth: this.minProgressWidth,
  420.                 progressText: progressText
  421.             });
  422.             return this;
  423.         },
  424.         /**
  425.          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
  426.          * interaction while waiting for a long-running process to complete that does not have defined intervals.
  427.          * You are responsible for closing the message box when the process is complete.
  428.          * @param {String} msg The message box body text
  429.          * @param {String} title (optional) The title bar text
  430.          * @param {Object} config (optional) A {@link Ext.ProgressBar#waitConfig} object
  431.          * @return {Ext.MessageBox} this
  432.          */
  433.         wait : function(msg, title, config){
  434.             this.show({
  435.                 title : title,
  436.                 msg : msg,
  437.                 buttons: false,
  438.                 closable:false,
  439.                 wait:true,
  440.                 modal:true,
  441.                 minWidth: this.minProgressWidth,
  442.                 waitConfig: config
  443.             });
  444.             return this;
  445.         },
  446.         /**
  447.          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript alert prompt).
  448.          * If a callback function is passed it will be called after the user clicks the button, and the
  449.          * id of the button that was clicked will be passed as the only parameter to the callback
  450.          * (could also be the top-right close button).
  451.          * @param {String} title The title bar text
  452.          * @param {String} msg The message box body text
  453.          * @param {Function} fn (optional) The callback function invoked after the message box is closed
  454.          * @param {Object} scope (optional) The scope of the callback function
  455.          * @return {Ext.MessageBox} this
  456.          */
  457.         alert : function(title, msg, fn, scope){
  458.             this.show({
  459.                 title : title,
  460.                 msg : msg,
  461.                 buttons: this.OK,
  462.                 fn: fn,
  463.                 scope : scope
  464.             });
  465.             return this;
  466.         },
  467.         /**
  468.          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's confirm).
  469.          * If a callback function is passed it will be called after the user clicks either button,
  470.          * and the id of the button that was clicked will be passed as the only parameter to the callback
  471.          * (could also be the top-right close button).
  472.          * @param {String} title The title bar text
  473.          * @param {String} msg The message box body text
  474.          * @param {Function} fn (optional) The callback function invoked after the message box is closed
  475.          * @param {Object} scope (optional) The scope of the callback function
  476.          * @return {Ext.MessageBox} this
  477.          */
  478.         confirm : function(title, msg, fn, scope){
  479.             this.show({
  480.                 title : title,
  481.                 msg : msg,
  482.                 buttons: this.YESNO,
  483.                 fn: fn,
  484.                 scope : scope,
  485.                 icon: this.QUESTION
  486.             });
  487.             return this;
  488.         },
  489.         /**
  490.          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to JavaScript's prompt).
  491.          * The prompt can be a single-line or multi-line textbox.  If a callback function is passed it will be called after the user
  492.          * clicks either button, and the id of the button that was clicked (could also be the top-right
  493.          * close button) and the text that was entered will be passed as the two parameters to the callback.
  494.          * @param {String} title The title bar text
  495.          * @param {String} msg The message box body text
  496.          * @param {Function} fn (optional) The callback function invoked after the message box is closed
  497.          * @param {Object} scope (optional) The scope of the callback function
  498.          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
  499.          * property, or the height in pixels to create the textbox (defaults to false / single-line)
  500.          * @param {String} value (optional) Default value of the text input element (defaults to '')
  501.          * @return {Ext.MessageBox} this
  502.          */
  503.         prompt : function(title, msg, fn, scope, multiline, value){
  504.             this.show({
  505.                 title : title,
  506.                 msg : msg,
  507.                 buttons: this.OKCANCEL,
  508.                 fn: fn,
  509.                 minWidth:250,
  510.                 scope : scope,
  511.                 prompt:true,
  512.                 multiline: multiline,
  513.                 value: value
  514.             });
  515.             return this;
  516.         },
  517.         /**
  518.          * Button config that displays a single OK button
  519.          * @type Object
  520.          */
  521.         OK : {ok:true},
  522.         /**
  523.          * Button config that displays a single Cancel button
  524.          * @type Object
  525.          */
  526.         CANCEL : {cancel:true},
  527.         /**
  528.          * Button config that displays OK and Cancel buttons
  529.          * @type Object
  530.          */
  531.         OKCANCEL : {ok:true, cancel:true},
  532.         /**
  533.          * Button config that displays Yes and No buttons
  534.          * @type Object
  535.          */
  536.         YESNO : {yes:true, no:true},
  537.         /**
  538.          * Button config that displays Yes, No and Cancel buttons
  539.          * @type Object
  540.          */
  541.         YESNOCANCEL : {yes:true, no:true, cancel:true},
  542.         /**
  543.          * The CSS class that provides the INFO icon image
  544.          * @type String
  545.          */
  546.         INFO : 'ext-mb-info',
  547.         /**
  548.          * The CSS class that provides the WARNING icon image
  549.          * @type String
  550.          */
  551.         WARNING : 'ext-mb-warning',
  552.         /**
  553.          * The CSS class that provides the QUESTION icon image
  554.          * @type String
  555.          */
  556.         QUESTION : 'ext-mb-question',
  557.         /**
  558.          * The CSS class that provides the ERROR icon image
  559.          * @type String
  560.          */
  561.         ERROR : 'ext-mb-error',
  562.         /**
  563.          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
  564.          * @type Number
  565.          */
  566.         defaultTextHeight : 75,
  567.         /**
  568.          * The maximum width in pixels of the message box (defaults to 600)
  569.          * @type Number
  570.          */
  571.         maxWidth : 600,
  572.         /**
  573.          * The minimum width in pixels of the message box (defaults to 110)
  574.          * @type Number
  575.          */
  576.         minWidth : 110,
  577.         /**
  578.          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
  579.          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
  580.          * @type Number
  581.          */
  582.         minProgressWidth : 250,
  583.         /**
  584.          * An object containing the default button text strings that can be overriden for localized language support.
  585.          * Supported properties are: ok, cancel, yes and no.  Generally you should include a locale-specific
  586.          * resource file for handling language support across the framework.
  587.          * Customize the default text like so: Ext.MessageBox.buttonText.yes = "oui"; //french
  588.          * @type Object
  589.          */
  590.         buttonText : {
  591.             ok : "OK",
  592.             cancel : "Cancel",
  593.             yes : "Yes",
  594.             no : "No"
  595.         }
  596.     };
  597. }();
  598. /**
  599.  * Shorthand for {@link Ext.MessageBox}
  600.  */
  601. Ext.Msg = Ext.MessageBox;