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 if we try and create a cell, it overrides the default formating..
546         
547         if (typeof(this.grid[cs.r][cs.c].dom) == 'undefined') {
548             Roo.log('no default content for cell:' + cell);
549             //this.createCell(cs.r,cs.c);
550             //return;
551         }
552         this.grid[cs.r][cs.c].value=  v;
553         if (this.grid[cs.r][cs.c].dom) {
554             this.grid[cs.r][cs.c].dom.textContent=  v;
555         }
556         
557         
558         if (typeof(vt) != 'undefined') {
559             this.grid[cs.r][cs.c].valueType = vt;
560             this.grid[cs.r][cs.c].dom.setAttribute('ValueType', vt);
561             if (vt === '' || vt === false) { // value type is empty for formula's
562                 this.grid[cs.r][cs.c].dom.removeAttribute('ValueType');
563             }
564         }
565         if (typeof(vf) != 'undefined' && vf !== false) {
566             this.grid[cs.r][cs.c].valueFormat = vf;
567             this.grid[cs.r][cs.c].dom.setAttribute('ValueFormat', vf);
568             if (vf === '' || vf === false) { // value type is empty for formula's
569                 this.grid[cs.r][cs.c].dom.removeAttribute('ValueFormat');
570             }
571         }
572         
573     },
574     
575     // private
576     copyRow : function(src, dest) {
577         if (dest == src) {
578             return;
579         }
580        // Roo.log('create Row' + dest);
581         if (typeof(this.grid[dest]) == 'undefined') {
582             this.grid[dest] = {}
583         }
584         
585            
586         for (var c = 0; c < this.cmax; c++) {
587
588             this.copyCell({ r: src, c: c } , { r: dest, c: c});
589             
590         }
591         this.rmax = Math.max(this.rmax, dest +1);
592         
593     },
594     
595     // private
596     
597     createCell: function(r,c)
598     {
599         //<gnm:Cell Row="6" Col="5" ValueType="60">Updated</gnm:Cell>    
600         var nc = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:Cell');
601         this.cellholder.appendChild(nc);
602         var lb = this.doc.createTextNode("\n");// add a line break..
603         this.cellholder.appendChild(lb);
604         
605         nc.setAttribute('Row', new String(r));
606         nc.setAttribute('Col', new String(c));
607         nc.setAttribute('ValueType', '60');
608         nc.textContent = '';
609         
610         this.grid[r][c] = Roo.applyIf({
611             valueType : '60',
612             valueFormat : '',
613             value : '',
614             dom: nc,
615             r: r,
616             c: c
617             }, _t.defaultCell);
618         
619         return nc;
620
621     },
622     
623     // private
624     copyCell : function(src, dest)
625     {
626         var old = this.grid[src.r][src.c];
627         // is it an alias...
628         if ((old.c != src.c)  || (old.r != src.r)) {
629             // only really works on horizonatal merges..
630             
631             this.grid[dest.r][dest.c] = this.grid[desc.r][old.c]; // let's hope it exists.
632             return;
633         }
634         
635         
636         var nc = Roo.apply({}, this.grid[src.r][src.c]);
637         
638         nc.value = '';
639         if (typeof(old.dom) == 'undefined') {
640             Roo.log("No cell to copy for " + Roo.encode(src));
641             return;
642         }
643         this.grid[dest.r][dest.c] = nc;
644         nc.dom = old.dom.cloneNode(true);
645         nc.dom.setAttribute('Row', dest.r);
646         nc.dom.setAttribute('Cell', dest.c);
647         nc.dom.textContent = '';
648         old.dom.parentNode.appendChild(nc.dom);
649         if (!old.styles || !old.styles.length) {
650             return;
651         }
652         //Roo.log("DEST");
653         //Roo.log(dest);
654         //Roo.log("STYLES");
655         //  .styles...
656         Roo.each(old.styles, function(s) {
657             // try and extend existing styles..
658             var er = s.getAttribute('endRow') * 1;
659             var ec = s.getAttribute('endCol') * 1;
660             //Roo.log(s);
661             if (dest.r == er) {
662                 s.setAttribute('endRow', dest.r + 1);
663             }
664             if (dest.c == ec) {
665                 s.setAttribute('endCol', dest.c + 1);
666             }
667             /*var ns = s.cloneNode(true);
668             s.parentNode.appendChild(ns);
669             ns.setAttribute('startCol', dest.c);
670             ns.setAttribute('startRow', dest.r);
671             ns.setAttribute('endCol', dest.c + 1);
672             ns.setAttribute('endRow', dest.r +1);
673             */
674         });
675         
676     },
677     
678     
679     /**
680      * applyData: 
681      * Set the value of a cell..
682      * @param {String} cell name of cell, eg. C10
683      * @param {Value} value to put in cell..
684      * 
685      * Cells should exist at present, we do not make them up...
686      */
687      
688     applyData : function(data)
689     {
690         
691         data = data || this.data;
692         for (var r = 0; r < this.rmax;r++) {
693             if (typeof(this.grid[r]) == 'undefined') continue;
694             for (var c = 0; c < this.cmax;c++) {  
695                 if (typeof(this.grid[r][c]) == 'undefined') {
696                     continue;
697                 }
698                 if (!this.grid[r][c].value.length 
699                         || !this.grid[r][c].value.match(/\{/)) {
700                     continue;
701                 }
702                 
703                 var x = new Roo.Template({ html: this.grid[r][c].value });
704                 try {
705                     var res = x.applyTemplate(data);
706                     //Roo.log("set " + r  + "," + c + ":"+res)
707                     this.set({ r: r, c: c}, x.applyTemplate(data));
708                 } catch (e) {
709                  //   Roo.log(e.toString());
710                   //  Roo.log(e);
711                     // continue?
712                 }
713                 
714             }
715         }
716             
717     },
718     
719     readTableData : function(table)
720     {
721         // read the first row.
722         var tds = Roo.get(table).select('tr').item(0).select('td');
723         var maxnc = 0;
724         
725         Roo.get(table).select('tr').each(function(trs) {
726             var nc = 0;
727            
728             trs.select('td').each(function(td) {
729                 var cs = td.dom.getAttribute('colspan');
730                 cs = cs ? cs * 1 : 1;
731                 nc += cs;
732             });
733             maxnc = Math.max(nc, maxnc);
734         });
735         
736         var tr = document.createElement('tr');
737         table.appendChild(tr);
738         var ar = {};
739         for (i =0; i < maxnc; i++) {
740             ar[i] = document.createElement('td');
741             tr.appendChild(ar[i]);
742         }
743         // find the left.
744         var ret = { cols : maxnc, pos : {} };
745         for (i =0; i < maxnc; i++) {
746             ret.pos[ Roo.get(ar[i]).getLeft()] =i;
747         }
748         ret.near = function(p) {
749             // which one is nearest..
750             
751             if (this.pos[p]) {
752                 return this.pos[p];
753             }
754             var prox = 100000;
755             var match = 0;
756             for(var i in this.pos) {
757                 var dis = Math.abs(p-i);
758                 if (dis < prox) {
759                     prox = dis;
760                     match = this.pos[i];
761                 }
762             }
763             return match;
764             
765         }
766         table.removeChild(tr);
767         return ret;
768     },
769     
770      
771    
772      
773     /**
774      * importTable: 
775      * Import a table and put it into the spreadsheet
776      * @param {HTMLTable} datagrid dom element of html table.
777      * @param {Number} xoff X offset to start rendering to
778      * @param {Number} yoff Y offset to start rendering to
779      **/
780      
781  
782     importTable : function (datagrid, xoff,yoff)
783     {
784         if (!datagrid) {
785             Roo.log("Error table not found!?");
786             return;
787         }
788         xoff = xoff || 0;
789         yoff = yoff || 0;
790         
791         
792         var table_data = this.readTableData(datagrid);
793         
794         // oroginally this cleaned line breaks, but we acutally need them..
795         var cleanHTML = function (str) {
796             
797             var ret = str;
798             ret = ret.replace(/&nbsp;/g,' ');
799            // ret = ret.replace(/\n/g,'.');
800           //  ret = ret.replace(/\r/g,'.');
801             var i;
802              
803             return ret;
804         };
805
806         
807         // <cell col="A" row="1">Test< / cell>
808         // <cell col="B" row="2" type="Number" format="test1">30< / cell>
809         var rowOffsets = {};
810         var rows = datagrid.getElementsByTagName('tr');
811         //alert(rows.length);
812         
813         
814         for(var row=0;row<rows.length;row++) {
815             
816             // let's see what affect this has..
817             // it might mess things up..
818             
819             if (rows[row].getAttribute('xls:height')) {
820                 this.setRowHeight(row + yoff +1, 1* rows[row].getAttribute('xls:height'));
821             } else {
822                 this.setRowHeight( row + yoff +1, Roo.get(rows[row]).getHeight());
823             }
824             
825          
826             var cols = rows[row].getElementsByTagName('td');
827             
828             
829             for(var col=0;col < cols.length; col++) {
830                 
831                 
832                
833                 
834                 var colspan = cols[col].getAttribute('colspan');
835                 colspan  = colspan ? colspan *1 : 1;
836                 
837                 var rowspan = cols[col].getAttribute('rowspan');
838                 rowspan = rowspan ? rowspan * 1 : 1;
839                 
840                 var realcol = table_data.near( Roo.get(cols[col]).getLeft() );
841                 
842                 
843                 
844                 if (colspan > 1 || rowspan > 1) {
845                     
846                     // getting thisese right is tricky..
847                     this.mergeRegion(
848                         realcol + xoff,
849                         row + yoff +1,
850                         realcol+ xoff + (colspan -1),
851                         row + yoff + rowspan 
852                     );
853                     
854                 }
855                 
856                 // skip blank cells
857                 // set the style first..
858                 this.parseHtmlStyle( cols[col], row + yoff, realcol + xoff   , colspan, rowspan);
859                 
860                 if (!cols[col].childNodes.length) {
861                      
862                     continue;
863                 }
864                 
865                 
866                 
867                 
868                 var vt = '60';
869                 var vf = false;
870                 var xlstype = cols[col].getAttribute('xls:type');
871                 switch(xlstype) {
872                     case 'int':
873                         vt = 30; // int!!!!
874                     
875                         break;
876                         
877                     case 'float':
878                         vt = 40; // float!!!!
879                         if (cols[col].getAttribute('xls:floatformat')) {
880                             vf = cols[col].getAttribute('xls:floatformat');
881                         }
882                         break;
883                         
884                     case 'date':
885                         vt = 30;
886                         //ValueFormat="d/m/yyyy" 38635  
887                         var vf = 'd/m/yyy';
888                         if (cols[col].getAttribute('xls:dateformat')) {
889                             vf= cols[col].getAttribute('xls:dateformat');
890                         }
891                         
892                        
893                         
894                         break;
895                     
896                     default:
897                        
898                         break;
899                 }
900                
901                 if (!cols[col].childNodes[0].nodeValue) {
902                    
903                     continue;
904                 }
905                 if (!cols[col].childNodes[0].nodeValue.replace(/^\s*|\s*$/g,"").length) {
906                   
907                     continue;
908                 }
909                 // strip me.!
910                 var cell_value_text = cleanHTML(cols[col].childNodes[0].nodeValue);
911        
912                 if (cols[col].getAttribute('xls:percent')) {
913                     cell_value_text = '' + ((cell_value_text * 1) / 100);
914                 }
915
916                 if (cell_value_text.length && (vt == 30) && xlstype == 'date') {
917                     var bits = cell_value_text.split(/-/);
918                     var cur = new Date(bits[0],bits[1]-1,bits[2]);
919                     cell_value_text = '' + Math.round((cur.getTime() - Date.UTC(1899,11,30)) / (24 * 60 * 60 * 1000));
920                 }
921
922                 
923                 
924                 if (cols[col].getAttribute('xls:formula')) {
925                     var s = cols[col].getAttribute('xls:formula');
926                     vt = '';
927                     cell_value_text = s.replace(/#row#/g,(row + yoff + 1));
928                 }
929                 this.set({ r: row + yoff, c : realcol + xoff }, cell_value_text, vt, vf);
930                  
931                   
932                 
933                 
934                 
935             }
936         }
937         this.rowOffset += rows.length;
938         
939     },
940     
941     
942     
943     parseHtmlStyle : function(dom, row, col, colspan, rowspan) {
944         
945         function toCol (rgb) {
946             
947             var ar = rgb.replace(/rgb[a]?\(/, '').replace(/\)/, '').replace(/ /, '').split(',');
948             var rcs = [];
949             ar = ar.slice(0,3);
950             Roo.each(ar, function(c) { 
951                 rcs.push((c*c).toString(16)) ;   
952             });
953             return rcs.join(':');
954             
955         }
956         
957         var el = Roo.get(dom);
958         var map =  {
959             'text-align'  : function(ent,v) { 
960                 ent['HAlign'] = { 'left' : '1', 'center' : '8' ,  'right' : '4' }[v] || '1';
961             },
962             'vertical-align': function(ent,v) { 
963                 ent['VAlign'] = { 'top' : '1', 'middel' : '8' ,  'bottom' : '4' }[v] || '1';
964             },
965             
966             'color': function(ent,v) { 
967                 ent['Fore'] = toCol(v);
968                 // this is a bit dumb.. we assume that if it's not black text, then it's shaded..
969                 if (ent['Fore'] != '0:0:0') {
970                     ent['Shade'] = 1;
971                 }
972                 
973             },
974             'background-color' : function(ent,v) { 
975                 ent['Back'] = toCol(v);
976                  
977             }
978             
979         }
980        
981         var ent = {
982                 HAlign:"1",
983                 VAlign:"2",
984                 WrapText:"0",
985                 ShrinkToFit:"0",
986                 Rotation:"0",
987                 Shade:"0",
988                 Indent:"0",
989                 Locked:"0",
990                 Hidden:"0",
991                 Fore:"0:0:0",
992                 Back:"FFFF:FFFF:FFFF",
993                 PatternColor:"0:0:0",
994                 Format:"General"
995         };
996            
997         for(var k in map) {
998             var val = el.getStyle(k);
999             if (!val || !val.length) {
1000                continue;
1001             }
1002             map[k](ent,val);
1003         }
1004         // special flags..
1005         if (el.dom.getAttribute('xls:wraptext')) {
1006             ent.WrapText = 1;
1007         }
1008         if (el.dom.getAttribute('xls:valign')) {
1009             ent.VAlign= 1;
1010         }
1011         if (el.dom.getAttribute('xls:halign')) {
1012             ent.HAlign= 1;
1013         }
1014         // fonts..
1015         var fmap = {
1016             
1017            
1018             'font-size' : function(ent,v) { 
1019                 ent['Unit'] = v.replace(/px/, '');
1020             },
1021             'font-weight' : function(ent,v) { 
1022                 if (v != 'bold') return;
1023                 ent['Bold'] = 1;
1024             },
1025             'font-style' : function(ent,v) { 
1026                 if (v != 'italic') return;
1027                 ent['Italic'] = 1;
1028             } 
1029         }
1030        
1031         var fent = {
1032             Unit:"10",
1033             Bold:"0",
1034             Italic:"0",
1035             Underline:"0",
1036             StrikeThrough:"0"
1037         };
1038         
1039         for(var k in fmap) {
1040             var val = el.getStyle(k);
1041             if (!val || !val.length) {
1042                continue;
1043             }
1044             fmap[k](fent,val);
1045         }
1046         var font = el.getStyle('font-family') || 'Sans';
1047         if (font.split(',').length > 1) {
1048             font = font.split(',')[1].replace(/\s+/, '');
1049         }
1050         
1051         
1052         /// -- now create elements..
1053         
1054         var objs = this.sheet.getElementsByTagNameNS('*','Styles')[0];
1055         
1056         //<gnm:StyleRegion startCol="0" startRow="0" endCol="255" endRow="65535"
1057         var sr = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:StyleRegion');
1058         objs.appendChild(sr);
1059         objs.appendChild(this.doc.createTextNode("\n"));// add a line break..
1060
1061         sr.setAttribute('startCol', col);
1062         sr.setAttribute('endCol', col+ colspan-1);
1063         sr.setAttribute('startRow', row);
1064         sr.setAttribute('endRow', row + rowspan -1);
1065         
1066         
1067         var st = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:Style');
1068         sr.appendChild(st);
1069         // do we need some defaults..
1070         for(var k in ent) {
1071             //Roo.log(k);
1072             st.setAttribute(k, ent[k]);
1073         }
1074         
1075         var fo = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:Font');
1076         st.appendChild(fo);
1077         // do we need some defaults..
1078         for(var k in fent) {
1079             fo.setAttribute(k, fent[k]);
1080         }
1081         fo.textContent  = font;
1082         
1083         var sb = false;
1084         // borders..
1085         Roo.each(['top','left','bottom','right'], function(p) {
1086             var w = el.getStyle('border-' + p + '-width').replace(/px/, '');
1087             if (!w || !w.length || (w*1) < 1) {
1088                 return;
1089             }
1090             if (!sb) {
1091                 sb= this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:StyleBorder');
1092             }
1093             var be = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:' + p[0].toUpperCase() + p.substring(1));
1094             be.setAttribute('Style', '1');
1095             be.setAttribute('Color', '0:0:0'); // fixme..
1096             sb.appendChild(be);
1097             
1098         }, this);
1099         // start adding them all together..
1100         
1101         if (sb) {
1102             st.appendChild(sb);
1103         }
1104         
1105         
1106         
1107         
1108     },
1109     
1110     
1111     
1112     /**
1113      * writeImage:
1114      * write an image (needs base64 data to write it)
1115      * 
1116      * 
1117      * @param {Number} row  row to put it in (rows start at 0)
1118      * @param {Number} col  column to put it in
1119      * @param {Number} data  the base64 description of the images
1120      * @param {Number} width image width
1121      * @param {Number} width image height
1122      * 
1123      */
1124     
1125     
1126     writeImage : function (row, col, data, width, height) 
1127     {
1128         
1129         // our default height width is 50/50 ?!
1130         //console.log('w='+width+',height='+height);
1131                 //        <gmr:Objects>
1132         row*=1;
1133         col*=1;
1134         height*=1;
1135         width*=1;
1136         var objs = this.sheet.getElementsByTagNameNS('*','Objects')[0];
1137         var soi = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:SheetObjectImage');
1138         
1139         //<gmr:SheetObjectImage 
1140         //      ObjectBound="A3:J8" 
1141         //      ObjectOffset="0.375 0.882 0.391 0.294" 
1142         //      ObjectAnchorType="16 16 16 16" 
1143         //      Direction="17" 
1144         //      crop-top="0.000000" 
1145         //      crop-bottom="0.000000" 
1146         //      crop-left="0.000000" 
1147         //      crop-right="0.000000">
1148                 
1149                 
1150         //alert(gnumeric_colRowToName(row,col));
1151                
1152         // this is where we really have fun!!!... 
1153         // since our design currently assumes the height is enough to fit
1154         // stuff in, we only really need to work out how wide it has to be..
1155         
1156         // note we should probably use centralized calcs if it fits in the first cell!
1157         
1158         // step 1 - work out how many columns it will span..
1159         // lets hope the spreadsheet is big enought..
1160         var colwidth = 0;
1161         var endcol=col;
1162         for ( endcol=col;endcol <100; endcol++) {
1163             if (!this.colInfo[endcol]) {
1164                 this.colInfo[endcol] = 100; // eak fudge
1165             }
1166             colwidth += this.colInfo[endcol];
1167             if (colwidth > width) {
1168                 break;
1169             }
1170         }
1171        
1172         
1173         soi.setAttribute('ObjectBound',
1174             //gnumeric_colRowToName(row,col) + ':' + gnumeric_colRowToName(row+1,col+1));
1175             this.RCtoCell(row,col) + ':' + this.RCtoCell(row,endcol));
1176      
1177         var ww = 0.01; // offset a bit...
1178         var hh = 0.01; //
1179         
1180         var ww2 = 1 - ((colwidth - width) / this.colInfo[endcol]);
1181         var hh2 = 0.99;
1182         
1183         var offset_str = ww + ' '  + hh + ' ' + ww2 + ' '+hh2;
1184         //console.log(offset_str );
1185         //alert(offset_str);
1186         soi.setAttribute('ObjectOffset', offset_str);
1187         soi.setAttribute('ObjectAnchorType','16 16 16 16');
1188         soi.setAttribute('Direction','17');
1189         soi.setAttribute('crop-top','0.000000');
1190         soi.setAttribute('crop-bottom','0.000000');
1191         soi.setAttribute('crop-left','0.000000');
1192         soi.setAttribute('crop-right','0.000000');
1193                 // <Content image-type="jpeg" size-bytes="3900">......  < / Content>
1194         var content = this.doc.createElement('Content');
1195         content.setAttribute('image-type','jpeg');
1196         //alert(imgsrc);
1197         
1198         content.setAttribute('size-bytes',data.length);
1199         content.textContent = data;
1200         soi.appendChild(content);
1201         objs.appendChild(soi);
1202         return true;
1203                 //< /gnm:SheetObjectImage>
1204                 // < /gnm:Objects>
1205
1206     },
1207  
1208     /**
1209      * mergeRegion:
1210      * Merge cells in the spreadsheet. (does not check if existing merges exist..)
1211      * 
1212      * @param {Number} col1  first column 
1213      * @param {Number} row1  first row
1214      * @param {Number} col2  to column 
1215      * @param {Number} row2  to row
1216      * 
1217      */
1218     mergeRegion : function (col1,row1,col2,row2)
1219     {
1220         var cell = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:Merge');
1221         //if (col1 > 50|| col2 > 50) { // do not merge cols off to right?
1222        //     return;
1223         //}
1224         
1225         cell.textContent = this.RCtoCell(row1,col1) + ':' + this.RCtoCell(row2,col2);
1226         
1227         //var merges = this.gnumeric.getElementsByTagNameNS('*','MergedRegions');
1228         var merges = this.sheet.getElementsByTagNameNS('*','MergedRegions');
1229         if (!merges || !merges.length) {
1230             merges = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd','gnm:MergedRegions');
1231             var sl = this.sheet.getElementsByTagNameNS('*','SheetLayout')[0];
1232             this.sheet.insertBefore(merges,sl);
1233         } else {
1234             merges = merges[0];
1235         }
1236         merges.appendChild(cell);
1237     
1238     },
1239     /**
1240      * setRowHeight:
1241      * Sets the height of a row.
1242      * 
1243      * @param {Number} r  the row to set the height of. (rows start at 0)
1244      * @param {Number} height (in pixels)
1245      */
1246     setRowHeight : function (r,height)
1247     {
1248         
1249         //<gmr:Rows DefaultSizePts="12.75">
1250         //   <gmr:RowInfo No="2" Unit="38.25" MarginA="0" MarginB="0" HardSize="1"/>
1251     //  < /gmr:Rows>
1252         
1253         // this doesnt handle row ranges very well.. - with 'count in them..'
1254         
1255         if (this.rowInfoDom[r]) {
1256             this.rowInfoDom[r].setAttribute('Unit', height);
1257             return;
1258         }
1259     
1260         var rows = this.sheet.getElementsByTagNameNS('*','Rows')[0]; // assume this exists..
1261         var ri = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd','gnm:RowInfo');
1262         // assume we have no rows..
1263         ri.setAttribute('No', r-1);
1264         ri.setAttribute('Unit', height);
1265         ri.setAttribute('MarginA', 0);
1266         ri.setAttribute('MarginB', 0);
1267         ri.setAttribute('HardSize', 1);
1268         rows.appendChild(ri);
1269         this.rowInfoDom[r] = ri;
1270     },
1271      
1272     /**
1273      * setSheetName: 
1274      * Set the sheet name.
1275      * @param {String} title for sheet
1276      **/
1277     setSheetName : function(name,sheet)
1278     {
1279         sheet = sheet || 0;
1280         /*
1281         <gnm:SheetNameIndex>
1282         <gnm:SheetName>Sheet1</gnm:SheetName>
1283         <gnm:SheetName>Sheet2</gnm:SheetName>
1284         <gnm:SheetName>Sheet3</gnm:SheetName>
1285         </gnm:SheetNameIndex>
1286         */
1287         // has to set sheet name on index and body..
1288         Roo.log(sheet);
1289         Roo.log(name);
1290         var sheetnames = this.doc.getElementsByTagNameNS('*','SheetName');
1291         if (sheet >=  sheetnames.length) {
1292             
1293             sheetnames[0].parentNode.appendChild(sheetnames[sheetnames.length-1].cloneNode(true));
1294             // copy body.
1295             sheetnames = this.doc.getElementsByTagNameNS('*','Sheet');
1296             sheetnames[0].parentNode.appendChild(sheetnames[sheetnames.length-1].cloneNode(true));
1297             var sn = this.doc.getElementsByTagNameNS('*','Sheet')[sheet];
1298             var cls = sn.getElementsByTagNameNS('*','Cells')[0];
1299             while (cls.childNodes.length) {
1300                 cls.removeChild(cls.firstChild);
1301             }
1302             
1303         }
1304         
1305         var sheetn = this.doc.getElementsByTagNameNS('*','SheetName')[sheet];
1306         sheetn.textContent = name;
1307         var sheetb = this.doc.getElementsByTagNameNS('*','Sheet')[sheet].getElementsByTagNameNS('*','Name')[0];
1308         sheetb.textContent = name;
1309         this.parseDoc(sheet);
1310         
1311         
1312         
1313         
1314     },
1315      /**
1316      * setColumnWidth: 
1317      * Set the column width
1318      * @param {Number} column number (starts at '0')
1319      * @param {Number} width size of column
1320      **/
1321     setColumnWidth : function(column, width)
1322     {
1323         column = column *1; 
1324         width= width*1;
1325         if (typeof(this.colInfoDom[column]) == 'undefined') {
1326             var cols = this.doc.getElementsByTagNameNS('*','Cols')[0];
1327             var ri = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'gnm:ColInfo');
1328             ri.setAttribute('No', column);
1329             ri.setAttribute('Unit', width);
1330             ri.setAttribute('MarginA', 2);
1331             ri.setAttribute('MarginB', 2);
1332             ri.setAttribute('HardSize', 1);
1333             cols.appendChild(ri);
1334             this.colInfo[column] = width;
1335             this.colInfoDom[column]  = ri;
1336             return;
1337         }
1338         this.colInfoDom[column].setAttribute('Unit', width);
1339         
1340     },
1341     
1342     
1343     
1344     
1345     
1346      /**
1347      * toHTML: 
1348      * Convert spreadsheet into a HTML table.
1349      */
1350             
1351     toHTML :function()
1352     {
1353          var _t = this;
1354         function calcWidth(sc, span)
1355         {
1356             var n =0;
1357             for(var i =sc; i< sc+span;i++) {
1358                 n+=_t.colInfo[i];
1359             }   
1360             return n;
1361         }
1362         
1363         var grid = this.grid;
1364         // lets do a basic dump..
1365         var out = '<table style="table-layout:fixed;" cellpadding="0" cellspacing="0">';
1366         for (var r = 0; r < this.rmax;r++) {
1367             out += '<tr style="height:'+this.rowInfo[r]+'px;">';
1368             for (var c = 0; c < this.cmax;c++) {
1369                 var g = (typeof(grid[r][c]) == 'undefined') ? this.defaultCell  : grid[r][c];
1370                 
1371                 if (typeof(g.cls) =='undefined') g.cls = [];
1372                 var w= calcWidth(c,g.colspan);
1373                 out+=String.format('<td colspan="{0}" rowspan="{1}"  class="{4}"><div style="{3}">{2}</div></td>', 
1374                     g.colspan, g.rowspan, g.value,
1375                     'overflow:hidden;' + 
1376                     'width:'+w+'px;' +
1377                    
1378                     'text-overflow:ellipsis;' +
1379                     'white-space:nowrap;',
1380                      g.cls.join(' ')
1381     
1382     
1383                 );
1384                 c+=(g.colspan-1);
1385             }
1386             out += '</tr>';
1387         }
1388         //Roo.log(out);
1389         return out+'</table>';
1390         
1391         
1392         
1393     },
1394     /**
1395      * download:
1396      * @param {String} name  filename to downlaod (without xls)
1397      * @param {String} callback  (optional) - callback to call after callback is complete.
1398      */
1399     download : function(name,callback)
1400     {
1401         name = name || "Missing_download_filename";
1402         
1403         if (this.downloadURL && this.downloadURL.charAt(this.downloadURL .length-1) != '/') {
1404             this.downloadURL += '/';
1405         }
1406         
1407         var ser = new XMLSerializer();
1408         var x = new Pman.Download({
1409             method: 'POST',
1410             timeout : 120000, // quite a long wait.. 2 minutes.
1411             params : {
1412                xml : ser.serializeToString(this.doc),
1413                format : 'xls', //xml
1414                debug : 0
1415                
1416             },
1417             url : (this.downloadURL || (baseURL + '/GnumericToExcel/')) + name + '.xls',
1418             success : function() {
1419                 Roo.MessageBox.alert("Alert", "File should have downloaded now");
1420                 if (callback) {
1421                     callback();
1422                 }
1423             }
1424         });
1425          
1426     }
1427
1428 });