jggui.js 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918
  1. //var COUNTER = 0;
  2. (function($){
  3. function jggui(options){
  4. var _options = jQuery.extend({
  5. height : 440,
  6. width : 630,
  7. callback : false
  8. }, options);
  9. return this.each(function(){
  10. var that = this;
  11. //var _src = that.src;
  12. var _table = jQuery(that).parent().next("table").eq(0);
  13. var _jgtable = _table.parent();
  14. var _jggui = false;
  15. //FASE 1: load data
  16. var _axis = [];
  17. var _legend = [];
  18. var _tables = [];
  19. var _palette = [];
  20. var _chart = false;
  21. var _defaults = {};
  22. var _icon;
  23. _bind();
  24. //BIND
  25. function _bind(){
  26. //console.log(that);
  27. jQuery(that).click(function(){
  28. _start();
  29. _init_gui();
  30. });
  31. }
  32. function _start(){
  33. //metadata miei
  34. var _cre = /({.*})/;
  35. var _m = _cre.exec( _jgtable.attr("class") );
  36. var _my_metadata = false;
  37. if ( _m )
  38. _my_metadata = eval("(" + _m[1] + ")");;
  39. _load();
  40. //default colors
  41. _palette = [ "5131C9","FFCC00","DA1B1B","FF9900","FF6600","CCFFFF","CCFF00",
  42. "CCCCCC","FF99CC","999900","999999","66FF00","66CC00","669900","660099",
  43. "33CC00","333399","000000"];
  44. _chart = _my_metadata;//jQuery.metadata.get(_jgtable);
  45. _defaults = {
  46. //DEVONO CORRISPONDERE
  47. type : 'bvg',
  48. height : 200,
  49. width : 300,
  50. size : "200x300",
  51. title_size : 12,
  52. title_color : '000000',
  53. bar_width : 20,
  54. bar_spacing : 1,
  55. lines : [],
  56. axis_step : 1,
  57. bg : false,
  58. bg_type : false,
  59. bg_offset : false,
  60. bg_angle : 90,
  61. bg_width : 10,
  62. bg_trasparency : false,
  63. chbg : false,
  64. chbg_type : false,
  65. chbg_offset : false,
  66. chbg_angle : 90,
  67. chbg_width : 10,
  68. chbg_trasparency : false,
  69. grid : false,
  70. grid_x : 10 ,
  71. grid_y : 10,
  72. grid_line : 1,
  73. grid_blank : 1
  74. };
  75. if(!_chart) _chart = {};
  76. _chart.type = _chart.type || 'bvg';
  77. _chart.size = _chart.size || "200x300";
  78. var _s = _chart.size.split("x");
  79. _chart.height = _s[0];
  80. _chart.width = _s[1];
  81. _chart.title_size = _chart.title_size || 12;
  82. _chart.title_color = _chart.title_color || '000000';
  83. _chart.bar_width = _chart.bar_width || 20;
  84. _chart.bar_spacing = _chart.bar_spacing || 1;
  85. _chart.lines = _chart.lines || [];
  86. _chart.axis_step = _chart.axis_step || 1;
  87. _chart.bg = _chart.bg || false;
  88. _chart.bg_type = _chart.bg_type || false;
  89. _chart.bg_offset = _chart.bg_offset || false;
  90. _chart.bg_angle = _chart.bg_angle || 90;
  91. _chart.bg_width = _chart.bg_width || 10;
  92. _chart.bg_trasparency = _chart.bg_trasparency || false;
  93. _chart.chbg = _chart.chbg || false;
  94. _chart.chbg_type = _chart.chbg_type || false;
  95. _chart.chbg_offset = _chart.chbg_offset || false;
  96. _chart.chbg_angle = _chart.chbg_angle || 90;
  97. _chart.chbg_width = _chart.chbg_width || 10;
  98. _chart.chbg_trasparency = _chart.chbg_trasparency || false;
  99. _chart.grid = _chart.grid || false;
  100. _chart.grid_x = _chart.grid_x || 10
  101. _chart.grid_y = _chart.grid_y || 10;
  102. _chart.grid_line = _chart.grid_line || 1;
  103. _chart.grid_blank = _chart.grid_blank || 1;
  104. //console.log(_chart.colors);
  105. _icon = _chart.type;
  106. //console.log(this);
  107. }
  108. //LOAD
  109. function _load(){
  110. _axis = jQuery.map( jQuery(_table).find("tbody > tr > th.serie"),
  111. function(th) { return jQuery(th).text(); }
  112. );
  113. for(var x= 0;x< jQuery(_table).find("tbody > tr").size();x++){
  114. _tables.push(
  115. jQuery.map(
  116. jQuery(_table).find("tbody > tr:eq(" + x + ") > td"),
  117. function(td,index){
  118. if(parseFloat(jQuery(td).text()))
  119. return parseFloat(jQuery(td).text());
  120. else
  121. return 0;
  122. }
  123. )
  124. );
  125. }
  126. //console.log(tables);
  127. _legend = jQuery.map( jQuery(_table).find("thead > tr:last > th.serie"),
  128. function(th) { return jQuery(th).text(); }
  129. );
  130. }
  131. //TOGGLE
  132. function _toggle_filltable(){
  133. //show filltable
  134. if(_chart.fillarea){
  135. $("#filltable", _jggui).show();
  136. }else{
  137. $("#filltable", _jggui).hide();
  138. }
  139. if(_chart.filltop){
  140. var _color = _palette[_legend.length];
  141. $("#filltable", _jggui).find("#filltop").val(_color).css("background","#" + _color);
  142. }
  143. }
  144. function _toggle_lines(){
  145. //console.log($(".line"));
  146. if(_icon == 'lc' || _chart.fillarea){
  147. $(".line", _jggui).show();
  148. }else{
  149. $(".line", _jggui).hide();
  150. }
  151. }
  152. function _toggle_axis_step(){
  153. //console.log(_axis.length>10)
  154. if(_axis.length>10){//TODO:test
  155. $(".axis_step", _jggui).show();
  156. }else{
  157. $(".axis_step", _jggui).hide();
  158. }
  159. //console.log($("#axis_step"));
  160. }
  161. function _toggle_bar_options(){
  162. //console.log(_icon)
  163. if(_icon == 'bvg' || _icon == 'bvs' ||
  164. _icon == 'bhg' || _icon == 'bhs'
  165. ){
  166. $("tr.bar", _jggui).find("th,td").show();
  167. }else{
  168. $("tr.bar", _jggui).find("th,td").hide();
  169. }
  170. }
  171. function _toggle_bg(){
  172. //console.log(_chart.bg);
  173. if(_chart.bg){
  174. $("#background1", _jggui).val(_chart.bg);
  175. $(".background1", _jggui).show();
  176. $(".bg_trasparency", _jggui).show();
  177. }else{
  178. $(".background1", _jggui).hide();
  179. $(".bg_trasparency", _jggui).hide();
  180. }
  181. if(_chart.bg_type == "gradient" || _chart.bg_type == "stripes"){
  182. $("#background2", _jggui).val(_chart.bg_offset ? _chart.bg_offset : 'FFFFFF');
  183. $(".background2, .bg_angle", _jggui).show();
  184. }else{
  185. $(".background2, .bg_angle", _jggui).hide();
  186. }
  187. if(_chart.bg_type == "stripes"){
  188. $("#stripe_width", _jggui).val(_chart.bg_width);
  189. $(".stripe_width", _jggui).show();
  190. }else{
  191. $(".stripe_width", _jggui).hide();
  192. }
  193. if(_chart.chbg){
  194. $("#ch_background1", _jggui).val(_chart.chbg);
  195. $(".ch_background1", _jggui).show();
  196. $(".ch_bg_trasparency", _jggui).show();
  197. }else{
  198. $(".ch_background1", _jggui).hide();
  199. $(".ch_bg_trasparency", _jggui).hide();
  200. }
  201. if(_chart.chbg_type == "gradient" || _chart.chbg_type == "stripes"){
  202. $("#ch_background2", _jggui).val(_chart.chbg_offset ? _chart.chbg_offset : 'FFFFFF');
  203. $(".ch_background2, .ch_bg_angle", _jggui).show();
  204. }else{
  205. $(".ch_background2, .ch_bg_angle", _jggui).hide();
  206. }
  207. if(_chart.chbg_type == "stripes"){
  208. $("#ch_stripe_width", _jggui).val(_chart.chbg_width);
  209. $(".ch_stripe_width", _jggui).show();
  210. }else{
  211. $(".ch_stripe_width", _jggui).hide();
  212. }
  213. }
  214. function _toggle_grid(){
  215. //return;
  216. if(_chart.grid){
  217. $(".grid_x", _jggui).show();
  218. $(".grid_y", _jggui).show();
  219. $(".grid_line", _jggui).show();
  220. $(".grid_blank", _jggui).show();
  221. }else{
  222. $(".grid_x", _jggui).hide();
  223. $(".grid_y", _jggui).hide();
  224. $(".grid_line", _jggui).hide();
  225. $(".grid_blank", _jggui).hide();
  226. }
  227. }
  228. //UPDATE - REFRESH
  229. function _update_type(){
  230. _toggle_filltable();
  231. _toggle_bar_options();
  232. _toggle_lines();
  233. _toggle_axis_step();
  234. _refresh();
  235. }
  236. function _update(chart){
  237. _chart = $.extend(chart,_chart);
  238. _size();
  239. //###$("#JGG_top").find(".jgchart").fadeOut();//###.remove();
  240. //###$("#JGG_top").append(_clone);
  241. //###_clone.jgtable(_chart).hide().fadeIn();
  242. if(_options.callback){
  243. _options.callback();
  244. //console.log(this);
  245. _bind();
  246. }
  247. var _div = _table.parent().find(".jgchart").eq(0).clone().hide();
  248. $("#JGG_top").append(_div.fadeIn());
  249. //$("#JGG_top").find(".jgchart").
  250. $("#export_url", _jggui).val(_div.find("img").eq(0).attr("src"));
  251. }
  252. function _export(){
  253. //COUNTER++;
  254. //var _url = $("#JGG_top").find(".jgchart > img").attr("src");
  255. //console.log($(_jggui).find("img"));
  256. var _options = _metadata();
  257. var _jgcc = _jgcharts(_options);
  258. $("#export_html", _jggui).val('');
  259. $("#export_metadata", _jggui).val(_options);
  260. //$("#export_url").val(_url);
  261. $("#export_jgcharts", _jggui).val(_jgcc);
  262. }
  263. function _jgcharts(opts){
  264. return "jQuery(TARGET_CONTAINER).jgcharts(" + opts + ")";
  265. }
  266. function _metadata(){
  267. var _metadata = "{\n";
  268. var _t = [];
  269. for(prop in _chart){
  270. var _x = _filter_metadata_property(prop);
  271. if(_x)
  272. _t.push(_x);
  273. }
  274. _metadata += _t.join(",\n");
  275. _metadata += "\n}";
  276. return _metadata;
  277. }
  278. function _filter_metadata_property(prop){
  279. switch(prop){
  280. case "height":
  281. case "width":
  282. return false;
  283. break;
  284. case "title_size":
  285. case "title_color":
  286. if(_chart.title)
  287. return _metadata_property(prop);
  288. else
  289. return false;
  290. break;
  291. case "bar_width":
  292. case "bar_spacing":
  293. if(_chart.type == "bhg"||
  294. _chart.type == "bvg"||
  295. _chart.type == "bhs"||
  296. _chart.type == "bvs"
  297. ){
  298. return _metadata_property(prop);
  299. }else{
  300. return false;
  301. }
  302. break;
  303. case "fillarea":
  304. case "fillbottom":
  305. case "filltop":
  306. case "lines":
  307. if(_chart.type == "lc"){
  308. return _metadata_property(prop);
  309. }else{
  310. return false;
  311. }
  312. break;
  313. case "bg":
  314. case "bg_type":
  315. case "bg_offset":
  316. case "bg_width":
  317. case "bg_angle":
  318. case "bg_trasparency":
  319. if(_chart.bg){
  320. return _metadata_property(prop);
  321. }else{
  322. return false;
  323. }
  324. break;
  325. case "chbg":
  326. case "chbg_type":
  327. case "chbg_offset":
  328. case "chbg_width":
  329. case "chbg_angle":
  330. case "chbg_trasparency":
  331. if(_chart.chbg){
  332. return _metadata_property(prop);
  333. }else{
  334. return false;
  335. }
  336. break;
  337. case "grid":
  338. case "grid_x":
  339. case "grid_y":
  340. case "grid_line":
  341. case "grid_blank":
  342. if(_chart.grid){
  343. return _metadata_property(prop);
  344. }else{
  345. return false;
  346. }
  347. break;
  348. default:
  349. return _metadata_property(prop);
  350. break;
  351. }
  352. }
  353. function _metadata_property(prop){
  354. var _val = _prop(_chart[prop]);
  355. if(_chart[prop] !== _defaults[prop] && _val)
  356. return "\t" + prop + " : " + _val + "";
  357. else
  358. return false;
  359. }
  360. function _prop(prop){
  361. //console.log(typeof prop);
  362. switch(typeof prop){
  363. case "object":
  364. //console.log(prop.constructor);
  365. if(prop.constructor == Array){
  366. var _s = [];
  367. for(x in prop){
  368. _s.push(_prop(prop[x]))
  369. }
  370. _s = "[" + _s.join(",") + "]";
  371. if(_s !== "[]")
  372. return _s;
  373. else
  374. return false;
  375. }
  376. break;
  377. case "string":
  378. return "'"+ prop +"'";
  379. break;
  380. default:
  381. return prop;
  382. break;
  383. }
  384. }
  385. function _refresh(){
  386. _refresh_hex();
  387. _refresh_spinners();
  388. _export();
  389. _metadata_to_target();
  390. _update();
  391. }
  392. function _metadata_to_target(){
  393. var _class = _jgtable.attr("class");
  394. var _re = /{([\S\s]*)}/;
  395. if(_class)
  396. _class = _class.replace(_re,"");
  397. //console.log(_class);
  398. //console.log(_table.attr("class"));
  399. var _metadata = $("#export_metadata").val();
  400. if(_class)
  401. _metadata = _class + " " + _metadata;
  402. _jgtable.attr("class", _metadata);
  403. }
  404. function _refresh_hex(){
  405. _chart.colors = [];
  406. $(".hex").not(".custom").each(function(){
  407. //TODO:
  408. //console.log(this.id);
  409. if($(this).hasClass("serie")){
  410. _chart.colors.push(jQuery(this).val().replace("#",""));
  411. }else{
  412. _chart[this.id] = jQuery(this).val().replace("#","");
  413. //console.log(_chart[this.id]);
  414. }
  415. });
  416. //console.log(_chart.bg)
  417. if(_chart.bg){
  418. var _j = $("#background1");
  419. var _val = _j.val();
  420. _j.css("background", "#" + _val);
  421. _chart.bg = _val.replace("#","");
  422. }
  423. if(_chart.bg){
  424. var _j = $("#background2");
  425. var _val = _j.val();
  426. _j.css("background", "#" + _val);
  427. _chart.bg_offset = _val.replace("#","");
  428. }
  429. if(_chart.chbg){
  430. var _j = $("#ch_background1");
  431. var _val = _j.val();
  432. _j.css("background", "#" + _val);
  433. _chart.chbg = _val.replace("#","");
  434. }
  435. if(_chart.chbg){
  436. var _j = $("#ch_background2");
  437. var _val = _j.val();
  438. _j.css("background", "#" + _val);
  439. _chart.chbg_offset = _val.replace("#","");
  440. }
  441. }
  442. function _refresh_spinners(){
  443. var x=1;var _temp = [];
  444. _chart.lines = [];
  445. $("#seriestable").find(".line_style").each(function(){
  446. //console.log($(this).val());
  447. _temp.push($(this).val());
  448. if(x % 3 == 0){
  449. _chart.lines.push(_temp);
  450. _temp = [];
  451. }
  452. x++;
  453. });
  454. //console.log(_chart.lines);
  455. }
  456. //helpers
  457. function _size(){
  458. _chart.size = _chart.width + 'x' + _chart.height;
  459. }
  460. //INIT-EVENTS
  461. function _init_gui(){
  462. _overlay();
  463. _init_window();
  464. }
  465. function _init_window(){
  466. $("#JGG_window").append('<div id="JGG_content"><div id="JGG_top"></div><div id="JGG_bottom"></div></div>').show();
  467. //_refresh(_chart);
  468. _init_tabs();
  469. }
  470. function _init_tabs(){
  471. $("#JGG_bottom").load(_options.url+'jggui.html', function(html){
  472. $(this).html(html);
  473. _position(_options.height, _options.width);
  474. _jggui = $("#jggui");
  475. $("#jggui ul").tabs();
  476. //FASE 2.A - inizializza eventi
  477. _init_panel_colors();
  478. _init_events_panel_options();
  479. _init_events_panel_background();
  480. _init_events_panel_grid();
  481. _init_events_panel_type();
  482. _init_widgets();
  483. //_hex();
  484. //refresh
  485. $('.refresh').click(function(){
  486. _refresh();
  487. });
  488. });
  489. }
  490. function _init_widgets(){
  491. _init_spinner();
  492. _init_hex();
  493. _events_hex();
  494. //valori predefiniti hex
  495. }
  496. function _init_spinner(){
  497. $(".spinner").not(".custom").spinner({max: 10, min: 0});
  498. }
  499. function _init_hex(){
  500. //colorpickers
  501. $('.hex').each(function(){
  502. var bgColor = $(this).val();
  503. bgColor = '#'+bgColor.replace(/#/g, "");
  504. $(this).val(bgColor).css('background', bgColor);
  505. $(this).wrap('<div class="hasPicker"></div>').after('<a href="#" class="pickerIcon"><span class="inner"></span></a>');
  506. });
  507. //set up colors, then remove temp pickers
  508. $('input.hex').each(function(){
  509. $('body').append('<div id="picker" style="display: none;"></div>');
  510. $('#picker').farbtastic(this).remove();
  511. });
  512. }
  513. function _init_events_panel_type(){
  514. $(".icon")
  515. .each(function(){
  516. var _img = $(this).find("img")
  517. var _src = _img.attr("src");
  518. //console.log(_src);
  519. //console.log(_icon);
  520. if(_src.indexOf(_icon + '.png') !== -1){
  521. $(this).addClass("pressed");
  522. _update_type();
  523. }
  524. _src = _options.url + _src;
  525. _img.attr('src', _src);
  526. })
  527. .click(function(){
  528. $(this).parent().find(".pressed").removeClass("pressed");
  529. $(this).addClass("pressed");
  530. _icon = $(this).find("img").attr("src").replace(_options.url,"").replace("img/","").replace(".png","");
  531. //console.log(_type);
  532. switch(_icon){
  533. case 'lc':
  534. case 'bvg':
  535. case 'bvs':
  536. case 'bhg':
  537. case 'bhs':
  538. case 'p':
  539. case 'p3':
  540. _chart.type = _icon;
  541. _chart.fillarea = false;
  542. _chart.fillbottom = false;
  543. _chart.filltop = false;
  544. break;
  545. case 'fillall':
  546. _chart.type = 'lc';
  547. _chart.fillarea = true;
  548. _chart.fillbottom = true;
  549. _chart.filltop = true;
  550. break;
  551. case 'fillbottom':
  552. _chart.type = 'lc';
  553. _chart.fillarea = true;
  554. _chart.fillbottom = true;
  555. _chart.filltop = false;
  556. break;
  557. }
  558. _update_type();
  559. return false;
  560. });
  561. }
  562. function _init_events_panel_options(){
  563. $(".title").change(
  564. function(){
  565. _chart.title = $(this).val();
  566. }
  567. );
  568. $("#title_color").val("#" + _chart.title_color);
  569. $("#title_size")
  570. .val(_chart.title_size)
  571. .spinner({min:5, max:30})
  572. .bind('spinchange', function(event, ui) {
  573. _chart.title_size = ui.value;
  574. });
  575. //bug?: sul nero la size non fa effetto
  576. $("#ch_height")
  577. .val(_chart.height)
  578. .spinner({min:100, max:1000, stepping: 10})
  579. .bind('spinchange', function(event, ui) {
  580. _chart.height = ui.value;
  581. });
  582. $("#ch_width")
  583. .val(_chart.width)
  584. .spinner({min:100, max:1000, stepping: 10})
  585. .bind('spinchange', function(event, ui) {
  586. _chart.width = ui.value;
  587. });
  588. $("#bar_width")
  589. .val(_chart.bar_width)
  590. .spinner({min:1, max:30})
  591. .bind('spinchange', function(event, ui) {
  592. _chart.bar_width = ui.value;
  593. });
  594. $("#bar_spacing")
  595. .val(_chart.bar_spacing)
  596. .spinner({min:1, max:10})
  597. .bind('spinchange', function(event, ui) {
  598. _chart.bar_spacing = ui.value;
  599. });
  600. $("#axis_step")
  601. .val(_chart.axis_step)
  602. .spinner({min:1, max:10})
  603. .bind('spinchange', function(event, ui) {
  604. _chart.axis_step = ui.value;
  605. });
  606. }
  607. function _init_panel_colors(){
  608. _init_colors();
  609. _toggle_lines();
  610. }
  611. function _init_colors(){
  612. var _tpl = '<tr><th>SERIE</th><td class="bgColor"><input type="text" name="serie" class="hex serie" value="$COLOR" /></td>';
  613. _tpl += '<td class="line"><input type="text" class="spinner line_style" size="3" value="1" /></td>';
  614. _tpl += '<td class="line"><input type="text" class="spinner line_style" size="3" value="0" /></td>';
  615. _tpl += '<td class="line"><input type="text" class="spinner line_style" size="3" value="0" /></td>';
  616. _tpl += '</tr>';
  617. var _html = '';
  618. //console.log(_legend.length);
  619. //console.log(_legend);
  620. var y = 0;
  621. for(x in _legend){
  622. var _color = _chart.colors && _chart.colors[y] ? _chart.colors[y] : _palette[y] || '000000';
  623. _html += _tpl.replace("SERIE", _legend[x]).replace("$COLOR", _color);
  624. y++;
  625. }
  626. $("#seriestable").find("tbody").append(_html);
  627. $("#seriestable").find(".spinner").spinner();
  628. }
  629. function _init_events_panel_background(){
  630. //$("#chart-background").val(_chart.bg_type)//.trigger("update");
  631. //$("#chartarea-background").val(_chart.bg_type)//.trigger("update");
  632. $("#chart-background").change(function(){
  633. var _val = $(this).val();
  634. if(_val == 'disabled'){
  635. _val = false;
  636. _chart.bg = _val;
  637. _chart.bg_offset = _val;
  638. }else{
  639. _chart.bg = 'FFFFFF';
  640. _chart.bg_offset = 'FFFFFF';
  641. }
  642. _chart.bg_type = _val;
  643. $(this).trigger("update");
  644. _refresh();
  645. })
  646. .val(_chart.bg_type)
  647. .bind("update",function(){
  648. _toggle_bg();
  649. })
  650. .trigger("update");
  651. $("#chartarea-background").change(function(){
  652. var _val = $(this).val();
  653. if(_val == 'disabled'){
  654. _val = false;
  655. _chart.chbg = _val;
  656. _chart.chbg_offset = _val;
  657. }else{
  658. _chart.chbg = 'FFFFFF';
  659. _chart.chbg_offset = 'FFFFFF';
  660. }
  661. _chart.chbg_type = _val;
  662. $(this).trigger("update");
  663. _refresh();
  664. })
  665. .val(_chart.chbg_type)
  666. .bind("update",function(){
  667. _toggle_bg();
  668. })
  669. .trigger("update");
  670. $("#bg_trasparency_bool").change(function(){
  671. if($(this).attr("checked")){
  672. $(".bg_trasparency_bool").show();
  673. }else{
  674. $(".bg_trasparency_bool").hide();
  675. _chart.bg_trasparency = false;
  676. }
  677. }).trigger("change");
  678. $("#ch_bg_trasparency_bool").change(function(){
  679. if($(this).attr("checked")){
  680. $(".ch_bg_trasparency_bool").show();
  681. }else{
  682. $(".ch_bg_trasparency_bool").hide();
  683. _chart.chbg_trasparency = false;
  684. }
  685. }).trigger("change");
  686. $("#bg_angle")
  687. .val(_chart.bg_angle)
  688. .spinner({min:0, max:90})
  689. .bind('spinchange', function(event, ui) {
  690. _chart.bg_angle = ui.value;
  691. });
  692. $("#ch_bg_angle")
  693. .val(_chart.chbg_angle)
  694. .spinner({min:0, max:90})
  695. .bind('spinchange', function(event, ui) {
  696. _chart.chbg_angle = ui.value;
  697. });
  698. $("#bg_trasparency")
  699. .val(_chart.bg_trasparency ? _chart.bg_trasparency : 90)
  700. .spinner({min:10, max:90, stepping: 10})
  701. .bind('spinchange', function(event, ui) {
  702. //console.log(ui.value);
  703. _chart.bg_trasparency = ui.value;
  704. });
  705. $("#ch_bg_trasparency")
  706. .val(_chart.chbg_trasparency ? _chart.chbg_trasparency : 90)
  707. .spinner({min:10, max:90, stepping: 10})
  708. .bind('spinchange', function(event, ui) {
  709. //console.log(ui.value);
  710. _chart.chbg_trasparency = ui.value;
  711. });
  712. $("#stripe_width")
  713. .spinner({min:10, max:100, stepping: 5})
  714. .bind('spinchange', function(event, ui) {
  715. //console.log(ui.value);
  716. _chart.bg_width = ui.value;
  717. });
  718. $("#ch_stripe_width")
  719. .spinner({min:10, max:100, stepping: 5})
  720. .bind('spinchange', function(event, ui) {
  721. //console.log(ui.value);
  722. _chart.chbg_width = ui.value;
  723. });
  724. }
  725. function _init_events_panel_grid(){
  726. $("#grid").change(function(){
  727. _chart.grid = this.checked;
  728. $(this).trigger("update");
  729. _refresh();
  730. })
  731. .val(_chart.grid)
  732. .bind("update",function(){
  733. _toggle_grid();
  734. })
  735. .trigger("update");
  736. $("#grid_x, #grid_y, #grid_line, #grid_blank")
  737. .spinner({min:1, max:100, stepping: 1})
  738. .bind('spinchange', function(event, ui) {
  739. //console.log(ui.value);
  740. _chart[this.id] = ui.value;
  741. })
  742. .val(_chart[this.id]);
  743. }
  744. function _events_hex(){
  745. //click events for color pickers
  746. $('.pickerIcon').click(function(){
  747. if($(this).next().is('#picker')){
  748. $('#picker').remove();
  749. return false;
  750. }
  751. $('#picker').remove();
  752. $('a.on').removeClass('on');
  753. $('div.texturePicker ul:visible').fadeOut(100, function(){$(this).parent().css('position', 'static');});
  754. $(this).toggleClass('on').parent().css('position', 'relative');
  755. $(this).after('<div id="picker"></div>');
  756. $('#picker').farbtastic($(this).prev());
  757. $('body').click(function(){
  758. //$('#picker').remove();
  759. });
  760. return false;
  761. });
  762. }
  763. });
  764. };
  765. /* THICKBOX METHODS */
  766. function _position(height, width) {
  767. var TB_WIDTH = (width*1) + 30 || 630; //defaults to 630 if no paramaters were added to URL
  768. var TB_HEIGHT = (height*1) + 40 || 440; //defaults to 440 if no paramaters were added to URL
  769. $("#JGG_window").css({marginLeft: '-' + parseInt((TB_WIDTH / 2),10) + 'px', width: TB_WIDTH + 'px'});
  770. if ( !(jQuery.browser.msie && jQuery.browser.version < 7)) { // take away IE6
  771. $("#JGG_window").css({marginTop: '-' + parseInt((TB_HEIGHT / 2),13) + 'px'});
  772. }
  773. }
  774. function _remove() {
  775. $("#JGG_window").fadeOut("fast",function(){$('#JGG_window,#JGG_overlay,#JGG_HideSelect').trigger("unload").unbind().remove();});
  776. $("#JGG_load").remove();
  777. if (typeof document.body.style.maxHeight == "undefined") {//if IE 6
  778. $("body","html").css({height: "auto", width: "auto"});
  779. $("html").css("overflow","");
  780. }
  781. jQuery(document).trigger("jggui");
  782. return false;
  783. }
  784. function _overlay(){
  785. if (typeof document.body.style.maxHeight === "undefined") {//if IE 6
  786. $("body","html").css({height: "100%", width: "100%"});
  787. $("html").css("overflow","hidden");
  788. if (document.getElementById("JGG_HideSelect") === null) {//iframe to hide select elements in ie6
  789. $("body").append("<iframe id='JGG_HideSelect'></iframe><div id='JGG_overlay'></div><div id='JGG_window'></div>");
  790. $("#JGG_overlay").click(_remove);
  791. }
  792. }else{//all others
  793. if(document.getElementById("JGG_overlay") === null){
  794. $("body").append("<div id='JGG_overlay'></div><div id='JGG_window'></div>");
  795. $("#JGG_overlay").click(_remove);
  796. }
  797. }
  798. if(_detectMacXFF()){
  799. $("#JGG_overlay").addClass("JGG_overlayMacFFBGHack");//use png overlay so hide flash
  800. }else{
  801. $("#JGG_overlay").addClass("JGG_overlayBG");//use background and opacity
  802. }
  803. }
  804. function _detectMacXFF() {
  805. var userAgent = navigator.userAgent.toLowerCase();
  806. if (userAgent.indexOf('mac') != -1 && userAgent.indexOf('firefox')!=-1) {
  807. return true;
  808. }
  809. }
  810. /* THICKBOX METHODS */
  811. jQuery.fn.jggui = jggui;
  812. })(jQuery);