Pman.Gnumeric.js
[Pman.Core] / Pman.Gnumeric.js
1 //<script type="text/javascript">
2 /**
3 * @class Pman Gnumeric.
4 *-> load up a remote xml file of a gnumeric document.
5
6 * -> convert into a usable data structure
7
8 * -> ?? apply templated values ??
9 * -> allow modification of fields
10
11 * -> render to screen.
12
13 * -> send for conversion to XLS (via ssconvert)
14
15 * Usage:
16 <pre><code>
17
18     new Pman.Gnumeric( {
19       url: rootURL + '/xxx/yyy/templates/reports/myreport.xml',
20       data: { ..... },
21       listeners : {
22           load : function()
23           {
24           
25                x.applyData({ ... }); // key value data looks for {value} in strings and replaces it..
26                
27                x.set('A3', 'test');
28                
29                mypanel.update(x.toHTML());
30                
31                x.download()       
32                
33            }
34       }
35     });
36     
37
38 </code></pre>
39
40 * @constructor
41 * @param {Object} cfg   Configuration object.
42 */
43  
44
45
46 Pman.Gnumeric = function (cfg)
47 {
48     cfg.data = cfg.data || {};
49     
50     
51     
52     
53     
54     
55     this.addEvents({
56         /**
57              * @event load
58              * Fires when source document has been loaded
59              * @param {Pman.Gnumerci} this
60              */
61             'load' : true
62     }); 
63     
64     Roo.util.Observable.call(this,cfg);
65     
66     this.defaultCell = {
67         c : 0,
68         r : 0,
69         valueType : 0,
70         valueFormat : '',
71         value : '',
72         colspan: 1,
73         rowspan: 1
74           
75     };
76      
77     this.load();
78     
79    
80     
81     
82 }
83 Roo.extend(Pman.Gnumeric, Roo.util.Observable, {
84     
85     /**
86      * @cfg {String} url the source of the Gnumeric document.
87      */
88     url : false,
89       /**
90      * @cfg {Object} data overlay data for spreadsheet - from constructor.
91      */
92     data : false,
93      /**
94      * @cfg {String} downloadURL where GnumerictoExcel.php is...
95      */
96      
97     downloadURL : false,
98     
99     /**
100      * @type {XmlDocument} doc the gnumeric xml document
101      */
102     doc : false,
103     
104     /**
105      * @type {XmlNode} sheet the 'Sheet' element 
106      */
107     sheet : false,
108     
109     /**
110      * @type {XmlNode} sheet the 'Cells' element 
111      */    
112     cellholder : false,
113     /**
114      * @type {Object} grid the map[row][col] = cellData 
115      */
116     grid : false,
117     /**
118      * @type {Object} colInfo - list of column sizes
119      */
120     colInfo : false,
121     /**
122      * @type {Object} colInfoDom - column sizes dom element
123      */
124     colInfoDom : false,
125     /**
126      * @type {Object} rowInfo - list of row sizes
127      */
128     rowInfo : false,
129      /**
130      * @type {Object} rowInfoDom - dom elements with sizes
131      */
132     rowInfoDom : false,
133     /**
134      * @type {Number} cmax - maximum number of columns
135      */
136     cmax: false,
137     /**
138      * @type {Object} rmax - maximum number of rows
139      */
140     rmax : false,
141        /**
142      * @type {String} stylesheetID id of stylesheet created to render spreadsheat
143      */
144     stylesheetID : false,
145     /**
146      * @type {Number} rowOffset - used by table importer to enable multiple tables to be improted
147      */
148     
149     rowOffset : 0,
150     
151     /**
152      * load:
153      * run the connection, parse document and fire load event..
154      * can be run multiple times with new data..
155      * 
156     */
157     
158     load : function(url)
159     {
160         this.url = url || this.url;
161         if (!this.url) {
162             return;
163         }
164         // reset stufff..
165         this.doc = false;
166         this.sheet = false;
167         this.grid = false;
168         this.colInfo = false;
169         this.colInfoDom = false;
170         this.rowInfo = false;
171         this.rowInfoDom = false;
172         this.cmax = false;
173         this.rmax = false;
174         
175         if (this.stylesheetID) {
176             
177             Roo.util.CSS.removeStyleSheet(this.stylesheetID);
178             this.stylesheetID = false;
179             
180         }
181         
182         _t = this;
183         var c = new Roo.data.Connection();
184         c.request({
185             url: this.url,
186             method:  'GET',
187             success : function(resp, opts) {
188                 _t.response = resp;
189                 _t.doc = resp.responseXML;
190                 
191                 _t.parseDoc(0);
192                 
193                 
194                 _t.applyData();
195     
196                 _t.fireEvent('load', _t);
197             },
198             failure : function()
199             {
200                 Roo.MessageBox.alert("Error", "Failed to Load Template for Spreadsheet");
201             }
202         });
203         
204
205     },
206     
207     
208      
209     RCtoCell : function(r,c)
210     {
211         // we wil only support AA not AAA
212         var top = Math.floor(c/26);
213         var bot = c % 26;
214         var cc = top > 0 ? String.fromCharCode('A'.charCodeAt(0) + top) : '';
215         cc += String.fromCharCode('A'.charCodeAt(0)  + bot);
216         return cc+'' +r;
217         
218     },
219     
220     /**
221      * toRC:
222      * convert 'A1' style position to row/column reference
223      * 
224      * @arg {String} k cell name
225      * @return {Object}  as { r: {Number} , c: {Number}  }
226      */
227     
228     toRC : function(k)
229     {
230         var c = k.charCodeAt(0)-64;
231         var n = k.substring(1);
232         if (k.charCodeAt(1) > 64) {
233             c *=26;
234             c+=k.charCodeAt(1)-64;
235             n = k.substring(2);
236         }
237         return { c:c -1 ,r: (n*1)-1 }
238     },
239       /**
240      * rangeToRC:
241      * convert 'A1:B1' style position to array of row/column references
242      * 
243      * @arg {String} k cell range
244      * @return {Array}  as [ { r: {Number} , c: {Number}  }. { r: {Number} , c: {Number}  } ]
245      */
246     rangeToRC : function(s) {
247         var ar = s.split(':');
248         return [ this.toRC(ar[0]) , this.toRC(ar[1])]
249     },
250     
251     
252     
253    
254     
255     /**
256      * parseDoc:
257      * convert XML document into cells and other data..
258      * 
259      */
260     parseDoc : function(sheetnum) 
261     {
262         var _t = this;
263         this.grid = {}
264         this.rmax = 1;
265         this.cmax = 1;
266         
267         this.sheet = _t.doc.getElementsByTagNameNS('*','Sheet')[sheetnum];
268         
269         
270         this.cellholder = this.sheet.getElementsByTagNameNS('*','Cells')[0];
271         var cells = this.sheet.getElementsByTagNameNS('*','Cell');
272
273         
274         
275         Roo.each(cells, function(c) {
276            // Roo.log(c);
277             var row = c.getAttribute('Row') * 1;
278             var col = c.getAttribute('Col') * 1;
279             _t.cmax = Math.max(col+1, _t.cmax);
280             _t.rmax = Math.max(row+1, _t.rmax);
281             var vt = c.getAttribute('ValueType');
282             var vf = c.getAttribute('ValueFormat');
283             var val = c.textContent;
284             
285             if (typeof(_t.grid[row]) == 'undefined') {
286                 _t.grid[row] ={};
287             }
288             _t.grid[row][col] = Roo.applyIf({
289                 valueType : vt,
290                 valueFormat : vf,
291                 value : val,
292                 dom: c,
293                 r: row,
294                 c: col
295             }, _t.defaultCell);
296         });
297        
298         for (var r = 0; r < this.rmax;r++) {
299             if (typeof(this.grid[r]) == 'undefined') {
300               this.grid[r] ={};
301             }
302             for (var c = 0; c < this.cmax;c++) {
303                 if (typeof(this.grid[r][c]) == 'undefined') {
304                     continue;
305                 }
306                 //this.print( "[" + r + "]["+c+"]=" + grid[r][c].value +'<br/>');
307             }
308         }
309         
310         var merge = this.sheet.getElementsByTagNameNS('*','Merge');
311
312         Roo.each(merge, function(c) {
313             var rc = _t.rangeToRC(c.textContent);
314             //Roo.log(JSON.stringify(rc))
315             if (typeof(_t.grid[rc[0].r][rc[0].c]) == 'undefined') {
316                 _t.grid[rc[0].r][rc[0].c] =  Roo.applyIf({ r : rc[0].r, c : rc[0].c }, _t.defaultCell);
317             }
318                 
319             _t.grid[rc[0].r][rc[0].c].colspan = (rc[1].c - rc[0].c) + 1;
320             _t.grid[rc[0].r][rc[0].c].rowspan = (rc[1].r - rc[0].r) + 1;
321             for(var r = (rc[0].r); r < (rc[1].r+1); r++) {
322                for(var c = rc[0].c; c < (rc[1].c+1); c++) {
323                     //Roo.log('adding alias : ' + r+','+c);
324                    _t.grid[r][c] = _t.grid[rc[0].r][rc[0].c];
325                }
326            }
327             
328             
329         });
330         // read colinfo..
331         var ci = this.sheet.getElementsByTagNameNS('*','ColInfo');
332         this.colInfo = {};
333         this.colInfoDom = {};
334         
335         Roo.each(ci, function(c) {
336             var count = c.getAttribute('Count') || 1;
337             var s =  c.getAttribute('No')*1;
338             for(var i =0; i < count; i++) {
339                 _t.colInfo[s+i] = Math.floor(c.getAttribute('Unit')*1);
340                 _t.colInfoDom[s+i] = c;
341             }
342         });
343         
344         
345         ci = this.sheet.getElementsByTagNameNS('*','RowInfo');
346         
347         this.rowInfo = {};
348         this.rowInfoDom = {};
349         Roo.each(ci, function(c) {
350             var count = c.getAttribute('Count') || 1;
351             var s =  c.getAttribute('No')*1;
352             for(var i =0; i < count; i++) {
353                 _t.rowInfoDom[s+i] = c;
354                 _t.rowInfo[s+i] = Math.floor(c.getAttribute('Unit')*1);
355             }
356         });
357     
358         _t.parseStyles();
359         _t.overlayStyles();
360                 
361         
362      
363         
364     },
365      /**
366      * overlayStyles:
367      * put the style info onto the cell data.
368      * 
369      */
370     overlayStyles : function ()
371     {
372            // apply styles.
373         var _t = this;
374         Roo.each(this.styles, function(s) {
375        
376             for (var r = s.r; r < s.r1;r++) {
377                 if (typeof(_t.grid[r]) == 'undefined') {
378                    continue;
379                 }
380                 for (var c = s.c; c < s.c1;c++) {
381                     if (c > _t.cmax) continue;
382     
383                     if (typeof(_t.grid[r][c]) == 'undefined') _t.grid[r][c] = Roo.applyIf({ r: r , c : c }, _t.defaultCell);
384                     var g=_t.grid[r][c];
385                     if (typeof(g.cls) =='undefined') {
386                         g.cls = [];
387                         g.styles = [];
388                     }
389                     if (g.cls.indexOf(s.name)  > -1) continue;
390                     g.cls.push(s.name);
391                     g.styles.push(s.dom);
392                     
393                 }
394             }
395         });
396     },
397      /**
398      * parseStyles: 
399      *  read the style information
400      * generates a stylesheet for the current file
401      * this should be disposed of really.....
402      * 
403      */
404     parseStyles : function() {
405                 
406         var srs = this.sheet.getElementsByTagNameNS('*','StyleRegion');
407         var _t  = this;
408         var ent = {};
409         
410         var map =  {
411             HAlign : function(ent,v) { 
412                 ent['text-align'] = { '1' : 'left', '8': 'center', '4' : 'right'}[v] || 'left';
413             },
414             VAlign : function(ent,v) { 
415                 ent['vertical-align'] = { '1' : 'top', '4': 'middle', '8' : 'bottom'}[v]  || 'top'
416             },
417             Fore : function(ent,v) { 
418                 var col=[];
419                 Roo.each(v.split(':'), function(c) { col.push(Math.round(parseInt(c,16)/256)); })
420                 ent['color'] = 'rgb(' + col.join(',') + ')';
421             },
422             Back : function(ent,v) { 
423                 var col=[];
424                 Roo.each(v.split(':'), function(c) { col.push(Math.round(parseInt(c,16)/256)); })
425                 ent['background-color'] = 'rgb(' + col.join(',') + ')';
426             },
427             FontUnit : function(ent,v) { 
428                 ent['font-size'] = v + 'px';
429             },
430             FontBold : function(ent,v) { 
431                 if (v*1 < 1) return;
432                 ent['font-weight'] = 'bold';
433             },
434             FontItalic : function(ent,v) { 
435                 if (v*0 < 1) return;
436                 //ent['font-weight'] = 'bold';
437             },
438             FontName : function(ent,v) { 
439                 ent['font-family'] = v;
440             },
441             BorderStyle : function(ent,v) { 
442                 var vv  = v.split('-');
443                 ent['border-'+vv[0]+'-style'] = 'solid';
444                 ent['border-'+vv[0]+'-width'] = vv[1]+'px';
445             },
446             BorderColor : function(ent,v) { 
447                 var vv  = v.split('-');
448                 var col=[];
449                 Roo.each(vv[1].split(':'), function(c) { col.push(Math.round(parseInt(c,16)/256)); })
450                 ent['border-'+vv[0]+'-color'] = 'rgb(' + col.join(',') + ')';
451             }
452         }
453         function add(e, k, v) {
454             //Roo.log(k,v);
455             e.gstyle[k] = v;
456             if (typeof(map[k]) == 'undefined') {
457                 return;
458             }
459             map[k](e.style,v);    
460         }
461         var css = {};
462         var styles = [];
463         var sid= Roo.id();
464         
465         
466         Roo.each(srs, function(sr,n)
467         {
468             ent = {
469                 c : sr.getAttribute('startCol') *1,
470                 r : sr.getAttribute('startRow')*1,
471                 c1 : (sr.getAttribute('endCol')*1) +1,
472                 r1 : (sr.getAttribute('endRow')*1) +1,
473                 style : {},  // key val of style for HTML..
474                 gstyle : {}, // key val of attributes used..
475                 name : sid +'-gstyle-' + n,
476                 dom : sr
477                 
478             };
479     
480             Roo.each(sr.getElementsByTagNameNS('*','Style')[0].attributes, function(e) { 
481                 add(ent, e.name, e.value);
482             });
483             if (sr.getElementsByTagNameNS('*','Font').length) {
484                 Roo.each(sr.getElementsByTagNameNS('*','Font')[0].attributes, function(e) { 
485                      add(ent, 'Font'+e.name, e.value);
486     
487                 });
488                 add(ent, 'FontName', sr.getElementsByTagNameNS('*','Font')[0].textContent);
489     
490             }
491             if (sr.getElementsByTagNameNS('*','StyleBorder').length) {
492                 Roo.each(sr.getElementsByTagNameNS('*','StyleBorder')[0].childNodes, function(e) {
493                     if (!e.tagName) {
494                         return;
495                     }
496                     Roo.each(e.attributes, function(ea) { 
497                         add(ent, 'Border'+ea.name, e.tagName.split(':')[1].toLowerCase() + '-' + ea.value);
498                     });
499                 })
500                     
501             }
502             styles.push(ent);
503             css['.'+ent.name] = ent.style;
504         });
505         
506         this.styles = styles;
507         
508         this.stylesheetID = sid;
509         Roo.util.CSS.createStyleSheet(css, sid);
510     },
511
512     
513     
514     
515     /* ---------------------------------------  AFTER LOAD METHODS... ----------------------- */
516     /**
517      * set: 
518      * Set the value of a cell..
519      * @param {String} cell name of cell, eg. C10 or { c: 1, r :1 }
520          
521      * @param {Value} value to put in cell..
522      * @param {ValueType} type of value
523      * @param {ValueFormat} value format of cell
524      * 
525      * Cells should exist at present, we do not make them up...
526      */
527      
528     
529     set : function(cell, v, vt, vf) {
530         
531         var cs= typeof(cell) == 'string' ? this.toRC(cell) : cell;
532         
533         
534         Roo.log( cs.r+ ',' + cs.c + ' = '+ v);
535         // need to generate clell if it doe
536         if (typeof(this.grid[cs.r]) == 'undefined') {
537             Roo.log('no row:' + cell);
538             this.grid[cs.r] = []; // create a row..
539             //return;
540         }
541         if (typeof(this.grid[cs.r][cs.c]) == 'undefined') {
542             Roo.log('cell not defined:' + cell);
543             this.createCell(cs.r,cs.c);
544         }
545         // cell might not be rendered yet... so this might not be relivant..
546         if (typeof(this.grid[cs.r][cs.c].dom) == 'undefined') {
547             Roo.log('no default content for cell:' + cell);
548             //this.createCell(cs.r,cs.c);
549             //return;
550         }
551         this.grid[cs.r][cs.c].value=  v;
552         this.grid[cs.r][cs.c].dom.textContent=  v;
553         
554         if (typeof(vt) != 'undefined') {
555             this.grid[cs.r][cs.c].valueType = vt;
556             this.grid[cs.r][cs.c].dom.setAttribute('ValueType', vt);
557             if (vt === '' || vt === false) { // value type is empty for formula's
558                 this.grid[cs.r][cs.c].dom.removeAttribute('ValueType');
559             }
560         }
561         if (typeof(vf) != 'undefined' && vf !== false) {
562             this.grid[cs.r][cs.c].valueFormat = vf;
563             this.grid[cs.r][cs.c].dom.setAttribute('ValueFormat', vf);
564             if (vf === '' || vf === false) { // value type is empty for formula's
565                 this.grid[cs.r][cs.c].dom.removeAttribute('ValueFormat');
566             }
567         }
568         
569     },
570     
571     // private
572     copyRow : function(src, dest) {
573         if (dest == src) {
574             return;
575         }
576        // Roo.log('create Row' + dest);
577         if (typeof(this.grid[dest]) == 'undefined') {
578             this.grid[dest] = {}
579         }
580         
581            
582         for (var c = 0; c < this.cmax; c++) {
583
584             this.copyCell({ r: src, c: c } , { r: dest, c: c});
585             
586         }
587         this.rmax = Math.max(this.rmax, dest +1);
588         
589     },
590     
591     // private
592     
593     createCell: function(r,c)
594     {
595         //<gnm:Cell Row="6" Col="5" ValueType="60">Updated</gnm:Cell>    
596         var nc = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:Cell');
597         this.cellholder.appendChild(nc);
598         var lb = this.doc.createTextNode("\n");// add a line break..
599         this.cellholder.appendChild(lb);
600         
601         nc.setAttribute('Row', new String(r));
602         nc.setAttribute('Col', new String(c));
603         nc.setAttribute('ValueType', '60');
604         nc.textContent = '';
605         
606         this.grid[r][c] = Roo.applyIf({
607             valueType : '60',
608             valueFormat : '',
609             value : '',
610             dom: nc,
611             r: r,
612             c: c
613             }, _t.defaultCell);
614         
615         return nc;
616
617     },
618     
619     // private
620     copyCell : function(src, dest)
621     {
622         var old = this.grid[src.r][src.c];
623         // is it an alias...
624         if ((old.c != src.c)  || (old.r != src.r)) {
625             // only really works on horizonatal merges..
626             
627             this.grid[dest.r][dest.c] = this.grid[desc.r][old.c]; // let's hope it exists.
628             return;
629         }
630         
631         
632         var nc = Roo.apply({}, this.grid[src.r][src.c]);
633         
634         nc.value = '';
635         if (typeof(old.dom) == 'undefined') {
636             Roo.log("No cell to copy for " + Roo.encode(src));
637             return;
638         }
639         this.grid[dest.r][dest.c] = nc;
640         nc.dom = old.dom.cloneNode(true);
641         nc.dom.setAttribute('Row', dest.r);
642         nc.dom.setAttribute('Cell', dest.c);
643         nc.dom.textContent = '';
644         old.dom.parentNode.appendChild(nc.dom);
645         if (!old.styles || !old.styles.length) {
646             return;
647         }
648         //Roo.log("DEST");
649         //Roo.log(dest);
650         //Roo.log("STYLES");
651         //  .styles...
652         Roo.each(old.styles, function(s) {
653             // try and extend existing styles..
654             var er = s.getAttribute('endRow') * 1;
655             var ec = s.getAttribute('endCol') * 1;
656             //Roo.log(s);
657             if (dest.r == er) {
658                 s.setAttribute('endRow', dest.r + 1);
659             }
660             if (dest.c == ec) {
661                 s.setAttribute('endCol', dest.c + 1);
662             }
663             /*var ns = s.cloneNode(true);
664             s.parentNode.appendChild(ns);
665             ns.setAttribute('startCol', dest.c);
666             ns.setAttribute('startRow', dest.r);
667             ns.setAttribute('endCol', dest.c + 1);
668             ns.setAttribute('endRow', dest.r +1);
669             */
670         });
671         
672     },
673     
674     
675     /**
676      * applyData: 
677      * Set the value of a cell..
678      * @param {String} cell name of cell, eg. C10
679      * @param {Value} value to put in cell..
680      * 
681      * Cells should exist at present, we do not make them up...
682      */
683      
684     applyData : function(data)
685     {
686         
687         data = data || this.data;
688         for (var r = 0; r < this.rmax;r++) {
689             if (typeof(this.grid[r]) == 'undefined') continue;
690             for (var c = 0; c < this.cmax;c++) {  
691                 if (typeof(this.grid[r][c]) == 'undefined') {
692                     continue;
693                 }
694                 if (!this.grid[r][c].value.length 
695                         || !this.grid[r][c].value.match(/\{/)) {
696                     continue;
697                 }
698                 
699                 var x = new Roo.Template({ html: this.grid[r][c].value });
700                 try {
701                     var res = x.applyTemplate(data);
702                     //Roo.log("set " + r  + "," + c + ":"+res)
703                     this.set({ r: r, c: c}, x.applyTemplate(data));
704                 } catch (e) {
705                  //   Roo.log(e.toString());
706                   //  Roo.log(e);
707                     // continue?
708                 }
709                 
710             }
711         }
712             
713     },
714     
715     readTableData : function(table)
716     {
717         // read the first row.
718         var tds = Roo.get(table).select('tr').item(0).select('td');
719         var maxnc = 0;
720         
721         Roo.get(table).select('tr').each(function(trs) {
722             var nc = 0;
723            
724             trs.select('td').each(function(td) {
725                 var cs = td.dom.getAttribute('colspan');
726                 cs = cs ? cs * 1 : 1;
727                 nc += cs;
728             });
729             maxnc = Math.max(nc, maxnc);
730         });
731         
732         var tr = document.createElement('tr');
733         table.appendChild(tr);
734         var ar = {};
735         for (i =0; i < maxnc; i++) {
736             ar[i] = document.createElement('td');
737             tr.appendChild(ar[i]);
738         }
739         // find the left.
740         var ret = { cols : maxnc, pos : {} };
741         for (i =0; i < maxnc; i++) {
742             ret.pos[ Roo.get(ar[i]).getLeft()] =i;
743         }
744         ret.near = function(p) {
745             // which one is nearest..
746             
747             if (this.pos[p]) {
748                 return this.pos[p];
749             }
750             var prox = 100000;
751             var match = 0;
752             for(var i in this.pos) {
753                 var dis = Math.abs(p-i);
754                 if (dis < prox) {
755                     prox = dis;
756                     match = this.pos[i];
757                 }
758             }
759             return match;
760             
761         }
762         table.removeChild(tr);
763         return ret;
764     },
765     
766      
767    
768      
769     /**
770      * importTable: 
771      * Import a table and put it into the spreadsheet
772      * @param {HTMLTable} datagrid dom element of html table.
773      * @param {Number} xoff X offset to start rendering to
774      * @param {Number} yoff Y offset to start rendering to
775      **/
776      
777  
778     importTable : function (datagrid, xoff,yoff)
779     {
780         if (!datagrid) {
781             Roo.log("Error table not found!?");
782             return;
783         }
784         xoff = xoff || 0;
785         yoff = yoff || 0;
786         
787         
788         var table_data = this.readTableData(datagrid);
789         
790         // oroginally this cleaned line breaks, but we acutally need them..
791         var cleanHTML = function (str) {
792             
793             var ret = str;
794             ret = ret.replace(/&nbsp;/g,' ');
795            // ret = ret.replace(/\n/g,'.');
796           //  ret = ret.replace(/\r/g,'.');
797             var i;
798              
799             return ret;
800         };
801
802         
803         // <cell col="A" row="1">Test< / cell>
804         // <cell col="B" row="2" type="Number" format="test1">30< / cell>
805         var rowOffsets = {};
806         var rows = datagrid.getElementsByTagName('tr');
807         //alert(rows.length);
808         
809         
810         for(var row=0;row<rows.length;row++) {
811             
812             // let's see what affect this has..
813             // it might mess things up..
814             
815             if (rows[row].getAttribute('xls:height')) {
816                 this.setRowHeight(row + yoff +1, 1* rows[row].getAttribute('xls:height'));
817             } else {
818                 this.setRowHeight( row + yoff +1, Roo.get(rows[row]).getHeight());
819             }
820             
821          
822             var cols = rows[row].getElementsByTagName('td');
823             
824             
825             for(var col=0;col < cols.length; col++) {
826                 
827                 
828                
829                 
830                 var colspan = cols[col].getAttribute('colspan');
831                 colspan  = colspan ? colspan *1 : 1;
832                 
833                 var rowspan = cols[col].getAttribute('rowspan');
834                 rowspan = rowspan ? rowspan * 1 : 1;
835                 
836                 var realcol = table_data.near( Roo.get(cols[col]).getLeft() );
837                 
838                 
839                 
840                 if (colspan > 1 || rowspan > 1) {
841                     
842                     // getting thisese right is tricky..
843                     this.mergeRegion(
844                         realcol + xoff,
845                         row + yoff +1,
846                         realcol+ xoff + (colspan -1),
847                         row + yoff + rowspan 
848                     );
849                     
850                 }
851                 
852                 // skip blank cells
853                 // set the style first..
854                 this.parseHtmlStyle( cols[col], row + yoff, realcol + xoff   , colspan, rowspan);
855                 
856                 if (!cols[col].childNodes.length) {
857                      
858                     continue;
859                 }
860                 
861                 
862                 
863                 
864                 var vt = '60';
865                 var vf = false;
866                 var xlstype = cols[col].getAttribute('xls:type');
867                 switch(xlstype) {
868                     case 'int':
869                         vt = 30; // int!!!!
870                     
871                         break;
872                         
873                     case 'float':
874                         vt = 40; // float!!!!
875                         if (cols[col].getAttribute('xls:floatformat')) {
876                             vf = cols[col].getAttribute('xls:floatformat');
877                         }
878                         break;
879                         
880                     case 'date':
881                         vt = 30;
882                         //ValueFormat="d/m/yyyy" 38635  
883                         var vf = 'd/m/yyy';
884                         if (cols[col].getAttribute('xls:dateformat')) {
885                             vf= cols[col].getAttribute('xls:dateformat');
886                         }
887                         
888                        
889                         
890                         break;
891                     
892                     default:
893                        
894                         break;
895                 }
896                
897                 if (!cols[col].childNodes[0].nodeValue) {
898                    
899                     continue;
900                 }
901                 if (!cols[col].childNodes[0].nodeValue.replace(/^\s*|\s*$/g,"").length) {
902                   
903                     continue;
904                 }
905                 // strip me.!
906                 var cell_value_text = cleanHTML(cols[col].childNodes[0].nodeValue);
907        
908                 if (cols[col].getAttribute('xls:percent')) {
909                     cell_value_text = '' + ((cell_value_text * 1) / 100);
910                 }
911
912                 if (cell_value_text.length && (vt == 30) && xlstype == 'date') {
913                     var bits = cell_value_text.split(/-/);
914                     var cur = new Date(bits[0],bits[1]-1,bits[2]);
915                     cell_value_text = '' + Math.round((cur.getTime() - Date.UTC(1899,11,30)) / (24 * 60 * 60 * 1000));
916                 }
917
918                 
919                 
920                 if (cols[col].getAttribute('xls:formula')) {
921                     var s = cols[col].getAttribute('xls:formula');
922                     vt = '';
923                     cell_value_text = s.replace(/#row#/g,(row + yoff + 1));
924                 }
925                 this.set({ r: row + yoff, c : realcol + xoff }, cell_value_text, vt, vf);
926                  
927                   
928                 
929                 
930                 
931             }
932         }
933         this.rowOffset += rows.length;
934         
935     },
936     
937     
938     
939     parseHtmlStyle : function(dom, row, col, colspan, rowspan) {
940         
941         function toCol (rgb) {
942             
943             var ar = rgb.replace(/rgb[a]?\(/, '').replace(/\)/, '').replace(/ /, '').split(',');
944             var rcs = [];
945             ar = ar.slice(0,3);
946             Roo.each(ar, function(c) { 
947                 rcs.push((c*c).toString(16)) ;   
948             });
949             return rcs.join(':');
950             
951         }
952         
953         var el = Roo.get(dom);
954         var map =  {
955             'text-align'  : function(ent,v) { 
956                 ent['HAlign'] = { 'left' : '1', 'center' : '8' ,  'right' : '4' }[v] || '1';
957             },
958             'vertical-align': function(ent,v) { 
959                 ent['VAlign'] = { 'top' : '1', 'middel' : '8' ,  'bottom' : '4' }[v] || '1';
960             },
961             
962             'color': function(ent,v) { 
963                 ent['Fore'] = toCol(v);
964                 // this is a bit dumb.. we assume that if it's not black text, then it's shaded..
965                 if (ent['Fore'] != '0:0:0') {
966                     ent['Shade'] = 1;
967                 }
968                 
969             },
970             'background-color' : function(ent,v) { 
971                 ent['Back'] = toCol(v);
972                  
973             }
974             
975         }
976        
977         var ent = {
978                 HAlign:"1",
979                 VAlign:"2",
980                 WrapText:"0",
981                 ShrinkToFit:"0",
982                 Rotation:"0",
983                 Shade:"0",
984                 Indent:"0",
985                 Locked:"0",
986                 Hidden:"0",
987                 Fore:"0:0:0",
988                 Back:"FFFF:FFFF:FFFF",
989                 PatternColor:"0:0:0",
990                 Format:"General"
991         };
992            
993         for(var k in map) {
994             var val = el.getStyle(k);
995             if (!val || !val.length) {
996                continue;
997             }
998             map[k](ent,val);
999         }
1000         // special flags..
1001         if (el.dom.getAttribute('xls:wraptext')) {
1002             ent.WrapText = 1;
1003         }
1004         if (el.dom.getAttribute('xls:valign')) {
1005             ent.VAlign= 1;
1006         }
1007         if (el.dom.getAttribute('xls:halign')) {
1008             ent.HAlign= 1;
1009         }
1010         // fonts..
1011         var fmap = {
1012             
1013            
1014             'font-size' : function(ent,v) { 
1015                 ent['Unit'] = v.replace(/px/, '');
1016             },
1017             'font-weight' : function(ent,v) { 
1018                 if (v != 'bold') return;
1019                 ent['Bold'] = 1;
1020             },
1021             'font-style' : function(ent,v) { 
1022                 if (v != 'italic') return;
1023                 ent['Italic'] = 1;
1024             } 
1025         }
1026        
1027         var fent = {
1028             Unit:"10",
1029             Bold:"0",
1030             Italic:"0",
1031             Underline:"0",
1032             StrikeThrough:"0"
1033         };
1034         
1035         for(var k in fmap) {
1036             var val = el.getStyle(k);
1037             if (!val || !val.length) {
1038                continue;
1039             }
1040             fmap[k](fent,val);
1041         }
1042         var font = el.getStyle('font-family') || 'Sans';
1043         if (font.split(',').length > 1) {
1044             font = font.split(',')[1].replace(/\s+/, '');
1045         }
1046         
1047         
1048         /// -- now create elements..
1049         
1050         var objs = this.sheet.getElementsByTagNameNS('*','Styles')[0];
1051         
1052         //<gnm:StyleRegion startCol="0" startRow="0" endCol="255" endRow="65535"
1053         var sr = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:StyleRegion');
1054         objs.appendChild(sr);
1055         objs.appendChild(this.doc.createTextNode("\n"));// add a line break..
1056
1057         sr.setAttribute('startCol', col);
1058         sr.setAttribute('endCol', col+ colspan-1);
1059         sr.setAttribute('startRow', row);
1060         sr.setAttribute('endRow', row + rowspan -1);
1061         
1062         
1063         var st = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:Style');
1064         sr.appendChild(st);
1065         // do we need some defaults..
1066         for(var k in ent) {
1067             //Roo.log(k);
1068             st.setAttribute(k, ent[k]);
1069         }
1070         
1071         var fo = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:Font');
1072         st.appendChild(fo);
1073         // do we need some defaults..
1074         for(var k in fent) {
1075             fo.setAttribute(k, fent[k]);
1076         }
1077         fo.textContent  = font;
1078         
1079         var sb = false;
1080         // borders..
1081         Roo.each(['top','left','bottom','right'], function(p) {
1082             var w = el.getStyle('border-' + p + '-width').replace(/px/, '');
1083             if (!w || !w.length || (w*1) < 1) {
1084                 return;
1085             }
1086             if (!sb) {
1087                 sb= this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:StyleBorder');
1088             }
1089             var be = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:' + p[0].toUpperCase() + p.substring(1));
1090             be.setAttribute('Style', '1');
1091             be.setAttribute('Color', '0:0:0'); // fixme..
1092             sb.appendChild(be);
1093             
1094         }, this);
1095         // start adding them all together..
1096         
1097         if (sb) {
1098             st.appendChild(sb);
1099         }
1100         
1101         
1102         
1103         
1104     },
1105     
1106     
1107     
1108     /**
1109      * writeImage:
1110      * write an image (needs base64 data to write it)
1111      * 
1112      * 
1113      * @param {Number} row  row to put it in (rows start at 0)
1114      * @param {Number} col  column to put it in
1115      * @param {Number} data  the base64 description of the images
1116      * @param {Number} width image width
1117      * @param {Number} width image height
1118      * 
1119      */
1120     
1121     
1122     writeImage : function (row, col, data, width, height) 
1123     {
1124         
1125         // our default height width is 50/50 ?!
1126         //console.log('w='+width+',height='+height);
1127                 //        <gmr:Objects>
1128         row*=1;
1129         col*=1;
1130         height*=1;
1131         width*=1;
1132         var objs = this.sheet.getElementsByTagNameNS('*','Objects')[0];
1133         var soi = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:SheetObjectImage');
1134         
1135         //<gmr:SheetObjectImage 
1136         //      ObjectBound="A3:J8" 
1137         //      ObjectOffset="0.375 0.882 0.391 0.294" 
1138         //      ObjectAnchorType="16 16 16 16" 
1139         //      Direction="17" 
1140         //      crop-top="0.000000" 
1141         //      crop-bottom="0.000000" 
1142         //      crop-left="0.000000" 
1143         //      crop-right="0.000000">
1144                 
1145                 
1146         //alert(gnumeric_colRowToName(row,col));
1147                
1148         // this is where we really have fun!!!... 
1149         // since our design currently assumes the height is enough to fit
1150         // stuff in, we only really need to work out how wide it has to be..
1151         
1152         // note we should probably use centralized calcs if it fits in the first cell!
1153         
1154         // step 1 - work out how many columns it will span..
1155         // lets hope the spreadsheet is big enought..
1156         var colwidth = 0;
1157         var endcol=col;
1158         for ( endcol=col;endcol <100; endcol++) {
1159             if (!this.colInfo[endcol]) {
1160                 this.colInfo[endcol] = 100; // eak fudge
1161             }
1162             colwidth += this.colInfo[endcol];
1163             if (colwidth > width) {
1164                 break;
1165             }
1166         }
1167        
1168         
1169         soi.setAttribute('ObjectBound',
1170             //gnumeric_colRowToName(row,col) + ':' + gnumeric_colRowToName(row+1,col+1));
1171             this.RCtoCell(row,col) + ':' + this.RCtoCell(row,endcol));
1172      
1173         var ww = 0.01; // offset a bit...
1174         var hh = 0.01; //
1175         
1176         var ww2 = 1 - ((colwidth - width) / this.colInfo[endcol]);
1177         var hh2 = 0.99;
1178         
1179         var offset_str = ww + ' '  + hh + ' ' + ww2 + ' '+hh2;
1180         //console.log(offset_str );
1181         //alert(offset_str);
1182         soi.setAttribute('ObjectOffset', offset_str);
1183         soi.setAttribute('ObjectAnchorType','16 16 16 16');
1184         soi.setAttribute('Direction','17');
1185         soi.setAttribute('crop-top','0.000000');
1186         soi.setAttribute('crop-bottom','0.000000');
1187         soi.setAttribute('crop-left','0.000000');
1188         soi.setAttribute('crop-right','0.000000');
1189                 // <Content image-type="jpeg" size-bytes="3900">......  < / Content>
1190         var content = this.doc.createElement('Content');
1191         content.setAttribute('image-type','jpeg');
1192         //alert(imgsrc);
1193         
1194         content.setAttribute('size-bytes',data.length);
1195         content.textContent = data;
1196         soi.appendChild(content);
1197         objs.appendChild(soi);
1198         return true;
1199                 //< /gnm:SheetObjectImage>
1200                 // < /gnm:Objects>
1201
1202     },
1203  
1204     /**
1205      * mergeRegion:
1206      * Merge cells in the spreadsheet. (does not check if existing merges exist..)
1207      * 
1208      * @param {Number} col1  first column 
1209      * @param {Number} row1  first row
1210      * @param {Number} col2  to column 
1211      * @param {Number} row2  to row
1212      * 
1213      */
1214     mergeRegion : function (col1,row1,col2,row2)
1215     {
1216         var cell = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:Merge');
1217         //if (col1 > 50|| col2 > 50) { // do not merge cols off to right?
1218        //     return;
1219         //}
1220         
1221         cell.textContent = this.RCtoCell(row1,col1) + ':' + this.RCtoCell(row2,col2);
1222         
1223         //var merges = this.gnumeric.getElementsByTagNameNS('*','MergedRegions');
1224         var merges = this.sheet.getElementsByTagNameNS('*','MergedRegions');
1225         if (!merges || !merges.length) {
1226             merges = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd','gnm:MergedRegions');
1227             var sl = this.sheet.getElementsByTagNameNS('*','SheetLayout')[0];
1228             this.sheet.insertBefore(merges,sl);
1229         } else {
1230             merges = merges[0];
1231         }
1232         merges.appendChild(cell);
1233     
1234     },
1235     /**
1236      * setRowHeight:
1237      * Sets the height of a row.
1238      * 
1239      * @param {Number} r  the row to set the height of. (rows start at 0)
1240      * @param {Number} height (in pixels)
1241      */
1242     setRowHeight : function (r,height)
1243     {
1244         
1245         //<gmr:Rows DefaultSizePts="12.75">
1246         //   <gmr:RowInfo No="2" Unit="38.25" MarginA="0" MarginB="0" HardSize="1"/>
1247     //  < /gmr:Rows>
1248         
1249         // this doesnt handle row ranges very well.. - with 'count in them..'
1250         
1251         if (this.rowInfoDom[r]) {
1252             this.rowInfoDom[r].setAttribute('Unit', height);
1253             return;
1254         }
1255     
1256         var rows = this.sheet.getElementsByTagNameNS('*','Rows')[0]; // assume this exists..
1257         var ri = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd','gnm:RowInfo');
1258         // assume we have no rows..
1259         ri.setAttribute('No', r-1);
1260         ri.setAttribute('Unit', height);
1261         ri.setAttribute('MarginA', 0);
1262         ri.setAttribute('MarginB', 0);
1263         ri.setAttribute('HardSize', 1);
1264         rows.appendChild(ri);
1265         this.rowInfoDom[r] = ri;
1266     },
1267      
1268     /**
1269      * setSheetName: 
1270      * Set the sheet name.
1271      * @param {String} title for sheet
1272      **/
1273     setSheetName : function(name,sheet)
1274     {
1275         sheet = sheet || 0;
1276         /*
1277         <gnm:SheetNameIndex>
1278         <gnm:SheetName>Sheet1</gnm:SheetName>
1279         <gnm:SheetName>Sheet2</gnm:SheetName>
1280         <gnm:SheetName>Sheet3</gnm:SheetName>
1281         </gnm:SheetNameIndex>
1282         */
1283         // has to set sheet name on index and body..
1284         Roo.log(sheet);
1285         Roo.log(name);
1286         var sheetnames = this.doc.getElementsByTagNameNS('*','SheetName');
1287         if (sheet >=  sheetnames.length) {
1288             
1289             sheetnames[0].parentNode.appendChild(sheetnames[sheetnames.length-1].cloneNode(true));
1290             // copy body.
1291             sheetnames = this.doc.getElementsByTagNameNS('*','Sheet');
1292             sheetnames[0].parentNode.appendChild(sheetnames[sheetnames.length-1].cloneNode(true));
1293             var sn = this.doc.getElementsByTagNameNS('*','Sheet')[sheet];
1294             var cls = sn.getElementsByTagNameNS('*','Cells')[0];
1295             while (cls.childNodes.length) {
1296                 cls.removeChild(cls.firstChild);
1297             }
1298             
1299         }
1300         
1301         var sheetn = this.doc.getElementsByTagNameNS('*','SheetName')[sheet];
1302         sheetn.textContent = name;
1303         var sheetb = this.doc.getElementsByTagNameNS('*','Sheet')[sheet].getElementsByTagNameNS('*','Name')[0];
1304         sheetb.textContent = name;
1305         this.parseDoc(sheet);
1306         
1307         
1308         
1309         
1310     },
1311      /**
1312      * setColumnWidth: 
1313      * Set the column width
1314      * @param {Number} column number (starts at '0')
1315      * @param {Number} width size of column
1316      **/
1317     setColumnWidth : function(column, width)
1318     {
1319         column = column *1; 
1320         width= width*1;
1321         if (typeof(this.colInfoDom[column]) == 'undefined') {
1322             var cols = this.doc.getElementsByTagNameNS('*','Cols')[0];
1323             var ri = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:ColInfo');
1324             ri.setAttribute('No', column);
1325             ri.setAttribute('Unit', width);
1326             ri.setAttribute('MarginA', 2);
1327             ri.setAttribute('MarginB', 2);
1328             ri.setAttribute('HardSize', 1);
1329             cols.appendChild(ri);
1330             this.colInfo[column] = width;
1331             this.colInfoDom[column]  = ri;
1332             return;
1333         }
1334         this.colInfoDom[column].setAttribute('Unit', width);
1335         
1336     },
1337     
1338     
1339     
1340     
1341     
1342      /**
1343      * toHTML: 
1344      * Convert spreadsheet into a HTML table.
1345      */
1346             
1347     toHTML :function()
1348     {
1349          var _t = this;
1350         function calcWidth(sc, span)
1351         {
1352             var n =0;
1353             for(var i =sc; i< sc+span;i++) {
1354                 n+=_t.colInfo[i];
1355             }   
1356             return n;
1357         }
1358         
1359         var grid = this.grid;
1360         // lets do a basic dump..
1361         var out = '<table style="table-layout:fixed;" cellpadding="0" cellspacing="0">';
1362         for (var r = 0; r < this.rmax;r++) {
1363             out += '<tr style="height:'+this.rowInfo[r]+'px;">';
1364             for (var c = 0; c < this.cmax;c++) {
1365                 var g = (typeof(grid[r][c]) == 'undefined') ? this.defaultCell  : grid[r][c];
1366                 
1367                 if (typeof(g.cls) =='undefined') g.cls = [];
1368                 var w= calcWidth(c,g.colspan);
1369                 out+=String.format('<td colspan="{0}" rowspan="{1}"  class="{4}"><div style="{3}">{2}</div></td>', 
1370                     g.colspan, g.rowspan, g.value,
1371                     'overflow:hidden;' + 
1372                     'width:'+w+'px;' +
1373                    
1374                     'text-overflow:ellipsis;' +
1375                     'white-space:nowrap;',
1376                      g.cls.join(' ')
1377     
1378     
1379                 );
1380                 c+=(g.colspan-1);
1381             }
1382             out += '</tr>';
1383         }
1384         //Roo.log(out);
1385         return out+'</table>';
1386         
1387         
1388         
1389     },
1390     /**
1391      * download:
1392      * @param {String} name  filename to downlaod (without xls)
1393      * @param {String} callback  (optional) - callback to call after callback is complete.
1394      */
1395     download : function(name,callback)
1396     {
1397         name = name || "Missing_download_filename";
1398         
1399         if (this.downloadURL && this.downloadURL.charAt(this.downloadURL .length-1) != '/') {
1400             this.downloadURL += '/';
1401         }
1402         
1403         var ser = new XMLSerializer();
1404         var x = new Pman.Download({
1405             method: 'POST',
1406             timeout : 120000, // quite a long wait.. 2 minutes.
1407             params : {
1408                xml : ser.serializeToString(this.doc),
1409                format : 'xls', //xml
1410                debug : 0
1411                
1412             },
1413             url : (this.downloadURL || (baseURL + '/GnumericToExcel/')) + name + '.xls',
1414             success : function() {
1415                 Roo.MessageBox.alert("Alert", "File should have downloaded now");
1416                 if (callback) {
1417                     callback();
1418                 }
1419             }
1420         });
1421          
1422     }
1423
1424 });