123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- /*globals svgEditor, svgedit, svgCanvas, $*/
- /*jslint vars: true*/
- /*
- * ext-grid.js
- *
- * Licensed under the Apache License, Version 2
- *
- * Copyright(c) 2010 Redou Mine
- * Copyright(c) 2010 Alexis Deveria
- *
- */
- // Dependencies:
- // 1) units.js
- // 2) everything else
- svgEditor.addExtension('view_grid', function() { 'use strict';
- var NS = svgedit.NS,
- svgdoc = document.getElementById('svgcanvas').ownerDocument,
- showGrid = false,
- assignAttributes = svgCanvas.assignAttributes,
- hcanvas = document.createElement('canvas'),
- canvBG = $('#canvasBackground'),
- units = svgedit.units.getTypeMap(),
- intervals = [0.01, 0.1, 1, 10, 100, 1000];
- $(hcanvas).hide().appendTo('body');
- var canvasGrid = svgdoc.createElementNS(NS.SVG, 'svg');
- assignAttributes(canvasGrid, {
- 'id': 'canvasGrid',
- 'width': '100%',
- 'height': '100%',
- 'x': 0,
- 'y': 0,
- 'overflow': 'visible',
- 'display': 'none'
- });
- canvBG.append(canvasGrid);
- // grid-pattern
- var gridPattern = svgdoc.createElementNS(NS.SVG, 'pattern');
- assignAttributes(gridPattern, {
- 'id': 'gridpattern',
- 'patternUnits': 'userSpaceOnUse',
- 'x': 0, //-(value.strokeWidth / 2), // position for strokewidth
- 'y': 0, //-(value.strokeWidth / 2), // position for strokewidth
- 'width': 100,
- 'height': 100
- });
- var gridimg = svgdoc.createElementNS(NS.SVG, 'image');
- assignAttributes(gridimg, {
- 'x': 0,
- 'y': 0,
- 'width': 100,
- 'height': 100
- });
- gridPattern.appendChild(gridimg);
- $('#svgroot defs').append(gridPattern);
- // grid-box
- var gridBox = svgdoc.createElementNS(NS.SVG, 'rect');
- assignAttributes(gridBox, {
- 'width': '100%',
- 'height': '100%',
- 'x': 0,
- 'y': 0,
- 'stroke-width': 0,
- 'stroke': 'none',
- 'fill': 'url(#gridpattern)',
- 'style': 'pointer-events: none; display:visible;'
- });
- $('#canvasGrid').append(gridBox);
- function updateGrid(zoom) {
- var i;
- // TODO: Try this with <line> elements, then compare performance difference
- var unit = units[svgEditor.curConfig.baseUnit]; // 1 = 1px
- var u_multi = unit * zoom;
- // Calculate the main number interval
- var raw_m = 100 / u_multi;
- var multi = 1;
- for (i = 0; i < intervals.length; i++) {
- var num = intervals[i];
- multi = num;
- if (raw_m <= num) {
- break;
- }
- }
- var big_int = multi * u_multi;
- // Set the canvas size to the width of the container
- hcanvas.width = big_int;
- hcanvas.height = big_int;
- var ctx = hcanvas.getContext('2d');
- var cur_d = 0.5;
- var part = big_int / 10;
- ctx.globalAlpha = 0.2;
- ctx.strokeStyle = svgEditor.curConfig.gridColor;
- for (i = 1; i < 10; i++) {
- var sub_d = Math.round(part * i) + 0.5;
- // var line_num = (i % 2)?12:10;
- var line_num = 0;
- ctx.moveTo(sub_d, big_int);
- ctx.lineTo(sub_d, line_num);
- ctx.moveTo(big_int, sub_d);
- ctx.lineTo(line_num ,sub_d);
- }
- ctx.stroke();
- ctx.beginPath();
- ctx.globalAlpha = 0.5;
- ctx.moveTo(cur_d, big_int);
- ctx.lineTo(cur_d, 0);
- ctx.moveTo(big_int, cur_d);
- ctx.lineTo(0, cur_d);
- ctx.stroke();
- var datauri = hcanvas.toDataURL('image/png');
- gridimg.setAttribute('width', big_int);
- gridimg.setAttribute('height', big_int);
- gridimg.parentNode.setAttribute('width', big_int);
- gridimg.parentNode.setAttribute('height', big_int);
- svgCanvas.setHref(gridimg, datauri);
- }
- return {
- name: 'view_grid',
- svgicons: svgEditor.curConfig.extPath + 'grid-icon.xml',
- zoomChanged: function(zoom) {
- if (showGrid) {updateGrid(zoom);}
- },
- buttons: [{
- id: 'view_grid',
- type: 'context',
- panel: 'editor_panel',
- title: 'Show/Hide Grid',
- events: {
- click: function() {
- svgEditor.curConfig.showGrid = showGrid = !showGrid;
- if (showGrid) {
- updateGrid(svgCanvas.getZoom());
- }
- $('#canvasGrid').toggle(showGrid);
- $('#view_grid').toggleClass('push_button_pressed tool_button');
- }
- }
- }]
- };
- });
|