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