jinlin
2024-08-02 826cd5b51d5106cfea07e397eda184fb15ec7a30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*
 * ext-eyedropper.js
 *
 * Licensed under the Apache License, Version 2
 *
 * Copyright(c) 2010 Jeff Schiller
 *
 */
 
// Dependencies:
// 1) jQuery
// 2) history.js
// 3) svg_editor.js
// 4) svgcanvas.js
 
methodDraw.addExtension("eyedropper", function(S) {
    var svgcontent = S.svgcontent,
      svgns = "http://www.w3.org/2000/svg",
      svgdoc = S.svgroot.parentNode.ownerDocument,
      svgCanvas = methodDraw.canvas,
      ChangeElementCommand = svgedit.history.ChangeElementCommand,
      addToHistory = function(cmd) { svgCanvas.undoMgr.addCommandToHistory(cmd); },
      currentStyle = {fillPaint: "red", fillOpacity: 1.0,
              strokePaint: "black", strokeOpacity: 1.0,
              strokeWidth: 5, strokeDashArray: null,
              opacity: 1.0,
              strokeLinecap: 'butt',
              strokeLinejoin: 'miter'
              };
    function getStyle(opts) {
      // if we are in eyedropper mode, we don't want to disable the eye-dropper tool
      var mode = svgCanvas.getMode();
      if (mode == "eyedropper") return;
      var tool = $('#tool_eyedropper');
 
    }
 
    var getPaint = function(color, opac, type) {
      // update the editor's fill paint
      var opts = null;
      if (color.indexOf("url(#") === 0) {
        var refElem = svgCanvas.getRefElem(color);
        if(refElem) {
          refElem = refElem.cloneNode(true);
        } else {
          refElem =  $("#" + type + "_color defs *")[0];
        }
 
        opts = { alpha: opac };
        opts[refElem.tagName] = refElem;
      }
      else if (color.indexOf("#") === 0) {
        opts = {
          alpha: opac,
          solidColor: color.substr(1)
        };
      }
      else {
        opts = {
          alpha: opac,
          solidColor: 'none'
        };
      }
      return new $.jGraduate.Paint(opts);
    };
 
    return {
      name: "eyedropper",
      svgicons: "extensions/eyedropper-icon.xml",
      buttons: [{
        id: "tool_eyedropper",
        type: "mode",
        title: "吸管工具",
        position: 8,
        key: "I",
        icon: "extensions/eyedropper.png",
        events: {
          "click": function() {
            svgCanvas.setMode("eyedropper");
          }
        }
      }],
 
      mouseDown: function(opts) {
        var mode = svgCanvas.getMode();
        var e = opts.event;
        var target = (e.target.id === "svgroot") ? document.getElementById('canvas_background') : e.target;
        if (mode == "eyedropper" && target) {
          currentStyle.fillPaint = target.getAttribute("fill") || "white";
          currentStyle.fillOpacity = target.getAttribute("fill-opacity") || 1.0;
          currentStyle.strokePaint = target.getAttribute("stroke") || 'none';
          currentStyle.strokeOpacity = target.getAttribute("stroke-opacity") || 1.0;
          currentStyle.strokeWidth = target.getAttribute("stroke-width");
          currentStyle.strokeDashArray = target.getAttribute("stroke-dasharray");
          currentStyle.strokeLinecap = target.getAttribute("stroke-linecap");
          currentStyle.strokeLinejoin = target.getAttribute("stroke-linejoin");
          currentStyle.opacity = target.getAttribute("opacity") || 1.0;
          opts.selectedElements = opts.selectedElements.filter(Boolean)
          if (!opts.selectedElements.length) { //nothing selected, just update colors
            var fill = getPaint(currentStyle.fillPaint, currentStyle.fillOpacity*100, "fill");
            var stroke = getPaint(currentStyle.strokePaint, currentStyle.strokeOpacity*100, "stroke");
            methodDraw.paintBox.fill.setPaint(fill)
            methodDraw.paintBox.stroke.setPaint(stroke)
            return;
          }
          if ($.inArray(opts.selectedElements.nodeName, ['g', 'use']) == -1) {
            var changes = {};
            var change = function(elem, attrname, newvalue) {
              changes[attrname] = elem.getAttribute(attrname);
              elem.setAttribute(attrname, newvalue);
            };
            var batchCmd = new S.BatchCommand();
            opts.selectedElements.forEach(function(element){
              if (currentStyle.fillPaint)       change(element, "fill", currentStyle.fillPaint);
              if (currentStyle.fillOpacity)     change(element, "fill-opacity", currentStyle.fillOpacity);
              if (currentStyle.strokePaint)     change(element, "stroke", currentStyle.strokePaint);
              if (currentStyle.strokeOpacity)   change(element, "stroke-opacity", currentStyle.strokeOpacity);
              if (currentStyle.strokeWidth)     change(element, "stroke-width", currentStyle.strokeWidth);
              if (currentStyle.strokeDashArray) change(element, "stroke-dasharray", currentStyle.strokeDashArray);
              if (currentStyle.opacity)         change(element, "opacity", currentStyle.opacity);
              if (currentStyle.strokeLinecap)   change(element, "stroke-linecap", currentStyle.strokeLinecap);
              if (currentStyle.strokeLinejoin)  change(element, "stroke-linejoin", currentStyle.strokeLinejoin);
              batchCmd.addSubCommand(new ChangeElementCommand(element, changes));
              changes = {};
            });
            var fill = getPaint(currentStyle.fillPaint, currentStyle.fillOpacity*100, "fill")
            var stroke = getPaint(currentStyle.strokePaint, currentStyle.strokeOpacity*100, "stroke")
            methodDraw.paintBox.fill.update(true)
            methodDraw.paintBox.stroke.update(true)
            addToHistory(batchCmd);
          }
        }
      }
    };
});