3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
\r
4 <title>The source code</title>
\r
5 <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
\r
6 <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
\r
8 <body onload="prettyPrint();">
\r
9 <pre class="prettyprint lang-js"><div id="cls-Ext.ProgressBar"></div>/**
\r
10 * @class Ext.ProgressBar
\r
11 * @extends Ext.BoxComponent
\r
12 * <p>An updateable progress bar component. The progress bar supports two different modes: manual and automatic.</p>
\r
13 * <p>In manual mode, you are responsible for showing, updating (via {@link #updateProgress}) and clearing the
\r
14 * progress bar as needed from your own code. This method is most appropriate when you want to show progress
\r
15 * throughout an operation that has predictable points of interest at which you can update the control.</p>
\r
16 * <p>In automatic mode, you simply call {@link #wait} and let the progress bar run indefinitely, only clearing it
\r
17 * once the operation is complete. You can optionally have the progress bar wait for a specific amount of time
\r
18 * and then clear itself. Automatic mode is most appropriate for timed operations or asynchronous operations in
\r
19 * which you have no need for indicating intermediate progress.</p>
\r
20 * @cfg {Float} value A floating point value between 0 and 1 (e.g., .5, defaults to 0)
\r
21 * @cfg {String} text The progress bar text (defaults to '')
\r
22 * @cfg {Mixed} textEl The element to render the progress text to (defaults to the progress
\r
23 * bar's internal text element)
\r
24 * @cfg {String} id The progress bar element's id (defaults to an auto-generated id)
\r
27 Ext.ProgressBar = Ext.extend(Ext.BoxComponent, {
\r
29 * @cfg {String} baseCls
\r
30 * The base CSS class to apply to the progress bar's wrapper element (defaults to 'x-progress')
\r
32 baseCls : 'x-progress',
\r
35 * @cfg {Boolean} animate
\r
36 * True to animate the progress bar during transitions (defaults to false)
\r
44 initComponent : function(){
\r
45 Ext.ProgressBar.superclass.initComponent.call(this);
\r
49 * Fires after each update interval
\r
50 * @param {Ext.ProgressBar} this
\r
51 * @param {Number} The current progress value
\r
52 * @param {String} The current progress text
\r
59 onRender : function(ct, position){
\r
60 var tpl = new Ext.Template(
\r
61 '<div class="{cls}-wrap">',
\r
62 '<div class="{cls}-inner">',
\r
63 '<div class="{cls}-bar">',
\r
64 '<div class="{cls}-text">',
\r
65 '<div> </div>',
\r
68 '<div class="{cls}-text {cls}-text-back">',
\r
69 '<div> </div>',
\r
75 this.el = position ? tpl.insertBefore(position, {cls: this.baseCls}, true)
\r
76 : tpl.append(ct, {cls: this.baseCls}, true);
\r
79 this.el.dom.id = this.id;
\r
81 var inner = this.el.dom.firstChild;
\r
82 this.progressBar = Ext.get(inner.firstChild);
\r
85 //use an external text el
\r
86 this.textEl = Ext.get(this.textEl);
\r
87 delete this.textTopEl;
\r
89 //setup our internal layered text els
\r
90 this.textTopEl = Ext.get(this.progressBar.dom.firstChild);
\r
91 var textBackEl = Ext.get(inner.childNodes[1]);
\r
92 this.textTopEl.setStyle("z-index", 99).addClass('x-hidden');
\r
93 this.textEl = new Ext.CompositeElement([this.textTopEl.dom.firstChild, textBackEl.dom.firstChild]);
\r
94 this.textEl.setWidth(inner.offsetWidth);
\r
96 this.progressBar.setHeight(inner.offsetHeight);
\r
100 afterRender : function(){
\r
101 Ext.ProgressBar.superclass.afterRender.call(this);
\r
103 this.updateProgress(this.value, this.text);
\r
105 this.updateText(this.text);
\r
110 * Updates the progress bar value, and optionally its text. If the text argument is not specified,
\r
111 * any existing text value will be unchanged. To blank out existing text, pass ''. Note that even
\r
112 * if the progress bar value exceeds 1, it will never automatically reset -- you are responsible for
\r
113 * determining when the progress is complete and calling {@link #reset} to clear and/or hide the control.
\r
114 * @param {Float} value (optional) A floating point value between 0 and 1 (e.g., .5, defaults to 0)
\r
115 * @param {String} text (optional) The string to display in the progress text element (defaults to '')
\r
116 * @param {Boolean} animate (optional) Whether to animate the transition of the progress bar. If this value is
\r
117 * not specified, the default for the class is used (default to false)
\r
118 * @return {Ext.ProgressBar} this
\r
120 updateProgress : function(value, text, animate){
\r
121 this.value = value || 0;
\r
123 this.updateText(text);
\r
125 if(this.rendered && !this.isDestroyed){
\r
126 var w = Math.floor(value*this.el.dom.firstChild.offsetWidth);
\r
127 this.progressBar.setWidth(w, animate === true || (animate !== false && this.animate));
\r
128 if(this.textTopEl){
\r
129 //textTopEl should be the same width as the bar so overflow will clip as the bar moves
\r
130 this.textTopEl.removeClass('x-hidden').setWidth(w);
\r
133 this.fireEvent('update', this, value, text);
\r
138 * Initiates an auto-updating progress bar. A duration can be specified, in which case the progress
\r
139 * bar will automatically reset after a fixed amount of time and optionally call a callback function
\r
140 * if specified. If no duration is passed in, then the progress bar will run indefinitely and must
\r
141 * be manually cleared by calling {@link #reset}. The wait method accepts a config object with
\r
142 * the following properties:
\r
144 Property Type Description
\r
145 ---------- ------------ ----------------------------------------------------------------------
\r
146 duration Number The length of time in milliseconds that the progress bar should
\r
147 run before resetting itself (defaults to undefined, in which case it
\r
148 will run indefinitely until reset is called)
\r
149 interval Number The length of time in milliseconds between each progress update
\r
150 (defaults to 1000 ms)
\r
151 animate Boolean Whether to animate the transition of the progress bar. If this value is
\r
152 not specified, the default for the class is used.
\r
153 increment Number The number of progress update segments to display within the progress
\r
154 bar (defaults to 10). If the bar reaches the end and is still
\r
155 updating, it will automatically wrap back to the beginning.
\r
156 text String Optional text to display in the progress bar element (defaults to '').
\r
157 fn Function A callback function to execute after the progress bar finishes auto-
\r
158 updating. The function will be called with no arguments. This function
\r
159 will be ignored if duration is not specified since in that case the
\r
160 progress bar can only be stopped programmatically, so any required function
\r
161 should be called by the same code after it resets the progress bar.
\r
162 scope Object The scope that is passed to the callback function (only applies when
\r
163 duration and fn are both passed).
\r
168 var p = new Ext.ProgressBar({
\r
172 //Wait for 5 seconds, then update the status el (progress bar will auto-reset)
\r
174 interval: 100, //bar will move fast!
\r
177 text: 'Updating...',
\r
180 Ext.fly('status').update('Done!');
\r
184 //Or update indefinitely until some async action completes, then reset manually
\r
186 myAction.on('complete', function(){
\r
188 Ext.fly('status').update('Done!');
\r
191 * @param {Object} config (optional) Configuration options
\r
192 * @return {Ext.ProgressBar} this
\r
194 wait : function(o){
\r
195 if(!this.waitTimer){
\r
198 this.updateText(o.text);
\r
199 this.waitTimer = Ext.TaskMgr.start({
\r
201 var inc = o.increment || 10;
\r
203 this.updateProgress(((((i+inc)%inc)+1)*(100/inc))*0.01, null, o.animate);
\r
205 interval: o.interval || 1000,
\r
206 duration: o.duration,
\r
207 onStop: function(){
\r
209 o.fn.apply(o.scope || this);
\r
220 * Returns true if the progress bar is currently in a {@link #wait} operation
\r
221 * @return {Boolean} True if waiting, else false
\r
223 isWaiting : function(){
\r
224 return this.waitTimer !== null;
\r
228 * Updates the progress bar text. If specified, textEl will be updated, otherwise the progress
\r
229 * bar itself will display the updated text.
\r
230 * @param {String} text (optional) The string to display in the progress text element (defaults to '')
\r
231 * @return {Ext.ProgressBar} this
\r
233 updateText : function(text){
\r
234 this.text = text || ' ';
\r
236 this.textEl.update(this.text);
\r
242 * Synchronizes the inner bar width to the proper proportion of the total componet width based
\r
243 * on the current progress {@link #value}. This will be called automatically when the ProgressBar
\r
244 * is resized by a layout, but if it is rendered auto width, this method can be called from
\r
245 * another resize handler to sync the ProgressBar if necessary.
\r
247 syncProgressBar : function(){
\r
249 this.updateProgress(this.value, this.text);
\r
255 * Sets the size of the progress bar.
\r
256 * @param {Number} width The new width in pixels
\r
257 * @param {Number} height The new height in pixels
\r
258 * @return {Ext.ProgressBar} this
\r
260 setSize : function(w, h){
\r
261 Ext.ProgressBar.superclass.setSize.call(this, w, h);
\r
262 if(this.textTopEl){
\r
263 var inner = this.el.dom.firstChild;
\r
264 this.textEl.setSize(inner.offsetWidth, inner.offsetHeight);
\r
266 this.syncProgressBar();
\r
271 * Resets the progress bar value to 0 and text to empty string. If hide = true, the progress
\r
272 * bar will also be hidden (using the {@link #hideMode} property internally).
\r
273 * @param {Boolean} hide (optional) True to hide the progress bar (defaults to false)
\r
274 * @return {Ext.ProgressBar} this
\r
276 reset : function(hide){
\r
277 this.updateProgress(0);
\r
278 if(this.textTopEl){
\r
279 this.textTopEl.addClass('x-hidden');
\r
289 clearTimer : function(){
\r
290 if(this.waitTimer){
\r
291 this.waitTimer.onStop = null; //prevent recursion
\r
292 Ext.TaskMgr.stop(this.waitTimer);
\r
293 this.waitTimer = null;
\r
297 onDestroy: function(){
\r
300 if(this.textEl.isComposite){
\r
301 this.textEl.clear();
\r
303 Ext.destroyMembers(this, 'textEl', 'progressBar', 'textTopEl');
\r
305 Ext.ProgressBar.superclass.onDestroy.call(this);
\r
308 Ext.reg('progress', Ext.ProgressBar);</pre>
\r