@blockdia/scratch-blocks 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (243) hide show
  1. package/.nvmrc +1 -0
  2. package/LICENSE +674 -0
  3. package/README.md +57 -0
  4. package/TRADEMARK +1 -0
  5. package/blockly_compressed_horizontal.js +2268 -0
  6. package/blockly_compressed_vertical.js +2296 -0
  7. package/blockly_uncompressed_horizontal.js +1212 -0
  8. package/blockly_uncompressed_vertical.js +1212 -0
  9. package/blocks_common/colour.js +61 -0
  10. package/blocks_common/math.js +159 -0
  11. package/blocks_common/matrix.js +54 -0
  12. package/blocks_common/note.js +58 -0
  13. package/blocks_common/text.js +57 -0
  14. package/blocks_compressed.js +37 -0
  15. package/blocks_compressed_horizontal.js +68 -0
  16. package/blocks_compressed_vertical.js +216 -0
  17. package/blocks_horizontal/control.js +212 -0
  18. package/blocks_horizontal/default_toolbox.js +139 -0
  19. package/blocks_horizontal/event.js +190 -0
  20. package/blocks_horizontal/wedo.js +325 -0
  21. package/blocks_vertical/control.js +532 -0
  22. package/blocks_vertical/data.js +666 -0
  23. package/blocks_vertical/default_toolbox.js +571 -0
  24. package/blocks_vertical/event.js +329 -0
  25. package/blocks_vertical/extensions.js +294 -0
  26. package/blocks_vertical/looks.js +591 -0
  27. package/blocks_vertical/motion.js +587 -0
  28. package/blocks_vertical/operators.js +470 -0
  29. package/blocks_vertical/procedures.js +1051 -0
  30. package/blocks_vertical/sensing.js +555 -0
  31. package/blocks_vertical/sound.js +246 -0
  32. package/blocks_vertical/vertical_extensions.js +289 -0
  33. package/build/gen_blocks.js +1 -0
  34. package/build/test_expect.js +1 -0
  35. package/build/test_input.js +1 -0
  36. package/build.py +647 -0
  37. package/cleanup.sh +101 -0
  38. package/core/block.js +1837 -0
  39. package/core/block_animations.js +107 -0
  40. package/core/block_drag_surface.js +299 -0
  41. package/core/block_dragger.js +424 -0
  42. package/core/block_events.js +531 -0
  43. package/core/block_render_svg_horizontal.js +892 -0
  44. package/core/block_render_svg_vertical.js +1734 -0
  45. package/core/block_svg.js +1355 -0
  46. package/core/blockly.js +620 -0
  47. package/core/blocks.js +37 -0
  48. package/core/bubble.js +664 -0
  49. package/core/bubble_dragger.js +285 -0
  50. package/core/colours.js +177 -0
  51. package/core/comment.js +293 -0
  52. package/core/comment_events.js +539 -0
  53. package/core/connection.js +776 -0
  54. package/core/connection_db.js +300 -0
  55. package/core/constants.js +408 -0
  56. package/core/contextmenu.js +534 -0
  57. package/core/css.js +1354 -0
  58. package/core/data_category.js +490 -0
  59. package/core/dragged_connection_manager.js +260 -0
  60. package/core/dropdowndiv.js +408 -0
  61. package/core/events.js +429 -0
  62. package/core/events_abstract.js +113 -0
  63. package/core/extensions.js +450 -0
  64. package/core/field.js +810 -0
  65. package/core/field_angle.js +410 -0
  66. package/core/field_checkbox.js +133 -0
  67. package/core/field_colour.js +253 -0
  68. package/core/field_colour_slider.js +387 -0
  69. package/core/field_date.js +353 -0
  70. package/core/field_dropdown.js +447 -0
  71. package/core/field_iconmenu.js +309 -0
  72. package/core/field_image.js +200 -0
  73. package/core/field_label.js +136 -0
  74. package/core/field_label_serializable.js +125 -0
  75. package/core/field_matrix.js +566 -0
  76. package/core/field_note.js +850 -0
  77. package/core/field_number.js +366 -0
  78. package/core/field_numberdropdown.js +77 -0
  79. package/core/field_textdropdown.js +164 -0
  80. package/core/field_textinput.js +675 -0
  81. package/core/field_textinput_removable.js +105 -0
  82. package/core/field_variable.js +385 -0
  83. package/core/field_variable_getter.js +185 -0
  84. package/core/field_vertical_separator.js +161 -0
  85. package/core/flyout_base.js +935 -0
  86. package/core/flyout_button.js +324 -0
  87. package/core/flyout_dragger.js +83 -0
  88. package/core/flyout_extension_category_header.js +159 -0
  89. package/core/flyout_horizontal.js +475 -0
  90. package/core/flyout_vertical.js +770 -0
  91. package/core/generator.js +426 -0
  92. package/core/gesture.js +1010 -0
  93. package/core/grid.js +227 -0
  94. package/core/icon.js +205 -0
  95. package/core/inject.js +496 -0
  96. package/core/input.js +285 -0
  97. package/core/insertion_marker_manager.js +678 -0
  98. package/core/intersection_observer.js +102 -0
  99. package/core/msg.js +62 -0
  100. package/core/mutator.js +426 -0
  101. package/core/names.js +198 -0
  102. package/core/options.js +244 -0
  103. package/core/procedures.js +739 -0
  104. package/core/rendered_connection.js +417 -0
  105. package/core/scratch_block_comment.js +646 -0
  106. package/core/scratch_blocks_utils.js +246 -0
  107. package/core/scratch_bubble.js +699 -0
  108. package/core/scratch_events.js +131 -0
  109. package/core/scratch_msgs.js +85 -0
  110. package/core/scrollbar.js +875 -0
  111. package/core/toolbox.js +803 -0
  112. package/core/tooltip.js +337 -0
  113. package/core/touch.js +226 -0
  114. package/core/trashcan.js +343 -0
  115. package/core/ui_events.js +91 -0
  116. package/core/ui_menu_utils.js +68 -0
  117. package/core/utils.js +825 -0
  118. package/core/variable_events.js +259 -0
  119. package/core/variable_map.js +415 -0
  120. package/core/variable_model.js +116 -0
  121. package/core/variables.js +674 -0
  122. package/core/warning.js +199 -0
  123. package/core/widgetdiv.js +344 -0
  124. package/core/workspace.js +673 -0
  125. package/core/workspace_audio.js +170 -0
  126. package/core/workspace_comment.js +426 -0
  127. package/core/workspace_comment_render_svg.js +706 -0
  128. package/core/workspace_comment_svg.js +609 -0
  129. package/core/workspace_drag_surface_svg.js +195 -0
  130. package/core/workspace_dragger.js +132 -0
  131. package/core/workspace_svg.js +2382 -0
  132. package/core/xml.js +930 -0
  133. package/core/zoom_controls.js +301 -0
  134. package/dist/horizontal.js +222 -0
  135. package/dist/vertical.js +222 -0
  136. package/dist/web/horizontal.js +232 -0
  137. package/dist/web/vertical.js +232 -0
  138. package/i18n/common.py +234 -0
  139. package/i18n/create_messages.py +162 -0
  140. package/i18n/create_scratch_msgs.js +69 -0
  141. package/i18n/dedup_json.py +73 -0
  142. package/i18n/js_to_json.js +46 -0
  143. package/i18n/js_to_json.py +136 -0
  144. package/i18n/json_to_js.js +52 -0
  145. package/i18n/json_to_js.py +185 -0
  146. package/i18n/sync_tx_translations.js +111 -0
  147. package/i18n/test_scratch_msgs.js +87 -0
  148. package/i18n/tests.py +47 -0
  149. package/i18n/xliff_to_json.py +232 -0
  150. package/local_build.sh +70 -0
  151. package/media/click.mp3 +0 -0
  152. package/media/click.ogg +0 -0
  153. package/media/click.wav +0 -0
  154. package/media/comment-arrow-down.svg +10 -0
  155. package/media/comment-arrow-up.svg +10 -0
  156. package/media/delete-x.svg +10 -0
  157. package/media/delete.mp3 +0 -0
  158. package/media/delete.ogg +0 -0
  159. package/media/delete.wav +0 -0
  160. package/media/dropdown-arrow-dark.svg +1 -0
  161. package/media/dropdown-arrow.svg +1 -0
  162. package/media/extensions/microbit-block-icon.svg +130 -0
  163. package/media/extensions/music-block-icon.svg +17 -0
  164. package/media/extensions/pen-block-icon.svg +19 -0
  165. package/media/extensions/wedo2-block-icon.svg +36 -0
  166. package/media/eyedropper.svg +22 -0
  167. package/media/green-flag.svg +17 -0
  168. package/media/handclosed.cur +0 -0
  169. package/media/handdelete.cur +0 -0
  170. package/media/handopen.cur +0 -0
  171. package/media/icons/arrow.svg +12 -0
  172. package/media/icons/arrow_button.svg +1 -0
  173. package/media/icons/control_forever.svg +1 -0
  174. package/media/icons/control_repeat.svg +1 -0
  175. package/media/icons/control_stop.svg +1 -0
  176. package/media/icons/control_wait.svg +1 -0
  177. package/media/icons/event_broadcast_blue.svg +1 -0
  178. package/media/icons/event_broadcast_coral.svg +1 -0
  179. package/media/icons/event_broadcast_green.svg +1 -0
  180. package/media/icons/event_broadcast_magenta.svg +1 -0
  181. package/media/icons/event_broadcast_orange.svg +1 -0
  182. package/media/icons/event_broadcast_purple.svg +1 -0
  183. package/media/icons/event_when-broadcast-received_blue.svg +1 -0
  184. package/media/icons/event_when-broadcast-received_coral.svg +1 -0
  185. package/media/icons/event_when-broadcast-received_green.svg +1 -0
  186. package/media/icons/event_when-broadcast-received_magenta.svg +1 -0
  187. package/media/icons/event_when-broadcast-received_orange.svg +1 -0
  188. package/media/icons/event_when-broadcast-received_purple.svg +1 -0
  189. package/media/icons/event_whenflagclicked.svg +1 -0
  190. package/media/icons/remove.svg +19 -0
  191. package/media/icons/set-led_blue.svg +1 -0
  192. package/media/icons/set-led_coral.svg +1 -0
  193. package/media/icons/set-led_green.svg +1 -0
  194. package/media/icons/set-led_magenta.svg +1 -0
  195. package/media/icons/set-led_mystery.svg +1 -0
  196. package/media/icons/set-led_orange.svg +1 -0
  197. package/media/icons/set-led_purple.svg +1 -0
  198. package/media/icons/set-led_white.svg +1 -0
  199. package/media/icons/set-led_yellow.svg +1 -0
  200. package/media/icons/wedo_motor-clockwise.svg +1 -0
  201. package/media/icons/wedo_motor-counterclockwise.svg +1 -0
  202. package/media/icons/wedo_motor-speed_fast.svg +1 -0
  203. package/media/icons/wedo_motor-speed_med.svg +1 -0
  204. package/media/icons/wedo_motor-speed_slow.svg +1 -0
  205. package/media/icons/wedo_when-distance_close.svg +1 -0
  206. package/media/icons/wedo_when-tilt-backward.svg +1 -0
  207. package/media/icons/wedo_when-tilt-forward.svg +1 -0
  208. package/media/icons/wedo_when-tilt-left.svg +1 -0
  209. package/media/icons/wedo_when-tilt-right.svg +1 -0
  210. package/media/icons/wedo_when-tilt.svg +1 -0
  211. package/media/repeat.svg +18 -0
  212. package/media/rotate-left.svg +1 -0
  213. package/media/rotate-right.svg +1 -0
  214. package/media/sprites.png +0 -0
  215. package/media/status-not-ready.svg +13 -0
  216. package/media/status-ready.svg +13 -0
  217. package/media/zoom-in.svg +1 -0
  218. package/media/zoom-out.svg +1 -0
  219. package/media/zoom-reset.svg +1 -0
  220. package/msg/js/en.js +290 -0
  221. package/msg/json/en.json +285 -0
  222. package/msg/messages.js +359 -0
  223. package/msg/scratch_msgs.js +22969 -0
  224. package/package.json +60 -0
  225. package/pull_from_blockly.sh +151 -0
  226. package/renovate.json5 +15 -0
  227. package/shim/blockly_compressed_horizontal-blocks_compressed.js +1 -0
  228. package/shim/blockly_compressed_horizontal.Blockly.js +1 -0
  229. package/shim/blockly_compressed_horizontal.goog.js +1 -0
  230. package/shim/blockly_compressed_horizontal.js +1 -0
  231. package/shim/blockly_compressed_vertical-blocks_compressed.js +1 -0
  232. package/shim/blockly_compressed_vertical.Blockly.js +1 -0
  233. package/shim/blockly_compressed_vertical.goog.js +1 -0
  234. package/shim/blockly_compressed_vertical.js +1 -0
  235. package/shim/blocks_compressed_horizontal-blockly_compressed_horizontal-messages.js +1 -0
  236. package/shim/blocks_compressed_horizontal.js +1 -0
  237. package/shim/blocks_compressed_vertical-blockly_compressed_vertical-messages.js +1 -0
  238. package/shim/blocks_compressed_vertical.js +1 -0
  239. package/shim/gh-pages.js +1 -0
  240. package/shim/horizontal.js +1 -0
  241. package/shim/index.js +17 -0
  242. package/shim/vertical.js +1 -0
  243. package/universal-python.js +82 -0
package/core/grid.js ADDED
@@ -0,0 +1,227 @@
1
+ /**
2
+ * @license
3
+ * Visual Blocks Editor
4
+ *
5
+ * Copyright 2017 Google Inc.
6
+ * https://developers.google.com/blockly/
7
+ *
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ */
20
+
21
+ /**
22
+ * @fileoverview Object for configuring and updating a workspace grid in
23
+ * Blockly.
24
+ * @author fenichel@google.com (Rachel Fenichel)
25
+ */
26
+ 'use strict';
27
+
28
+ goog.provide('Blockly.Grid');
29
+
30
+ goog.require('Blockly.utils');
31
+
32
+ goog.require('goog.userAgent');
33
+
34
+
35
+ /**
36
+ * Class for a workspace's grid.
37
+ * @param {!SVGElement} pattern The grid's SVG pattern, created during injection.
38
+ * @param {!Object} options A dictionary of normalized options for the grid.
39
+ * See grid documentation:
40
+ * https://developers.google.com/blockly/guides/configure/web/grid
41
+ * @constructor
42
+ */
43
+ Blockly.Grid = function(pattern, options) {
44
+ /**
45
+ * The grid's SVG pattern, created during injection.
46
+ * @type {!SVGElement}
47
+ * @private
48
+ */
49
+ this.gridPattern_ = pattern;
50
+
51
+ /**
52
+ * The spacing of the grid lines (in px).
53
+ * @type {number}
54
+ * @private
55
+ */
56
+ this.spacing_ = options['spacing'];
57
+
58
+ /**
59
+ * How long the grid lines should be (in px).
60
+ * @type {number}
61
+ * @private
62
+ */
63
+ this.length_ = options['length'];
64
+
65
+ /**
66
+ * The horizontal grid line, if it exists.
67
+ * @type {SVGElement}
68
+ * @private
69
+ */
70
+ this.line1_ = pattern.firstChild;
71
+
72
+ /**
73
+ * The vertical grid line, if it exists.
74
+ * @type {SVGElement}
75
+ * @private
76
+ */
77
+ this.line2_ = this.line1_ && this.line1_.nextSibling;
78
+
79
+ /**
80
+ * Whether blocks should snap to the grid.
81
+ * @type {boolean}
82
+ * @private
83
+ */
84
+ this.snapToGrid_ = options['snap'];
85
+ };
86
+
87
+ /**
88
+ * The scale of the grid, used to set stroke width on grid lines.
89
+ * This should always be the same as the workspace scale.
90
+ * @type {number}
91
+ * @private
92
+ */
93
+ Blockly.Grid.prototype.scale_ = 1;
94
+
95
+ /**
96
+ * Dispose of this grid and unlink from the DOM.
97
+ * @package
98
+ */
99
+ Blockly.Grid.prototype.dispose = function() {
100
+ this.gridPattern_ = null;
101
+ };
102
+
103
+ /**
104
+ * Whether blocks should snap to the grid, based on the initial configuration.
105
+ * @return {boolean} True if blocks should snap, false otherwise.
106
+ * @package
107
+ */
108
+ Blockly.Grid.prototype.shouldSnap = function() {
109
+ return this.snapToGrid_;
110
+ };
111
+
112
+ /**
113
+ * Get the spacing of the grid points (in px).
114
+ * @return {number} The spacing of the grid points.
115
+ * @package
116
+ */
117
+ Blockly.Grid.prototype.getSpacing = function() {
118
+ return this.spacing_;
119
+ };
120
+
121
+ /**
122
+ * Get the id of the pattern element, which should be randomized to avoid
123
+ * conflicts with other Blockly instances on the page.
124
+ * @return {string} The pattern ID.
125
+ * @package
126
+ */
127
+ Blockly.Grid.prototype.getPatternId = function() {
128
+ return this.gridPattern_.id;
129
+ };
130
+
131
+ /**
132
+ * Update the grid with a new scale.
133
+ * @param {number} scale The new workspace scale.
134
+ * @package
135
+ */
136
+ Blockly.Grid.prototype.update = function(scale) {
137
+ this.scale_ = scale;
138
+ // MSIE freaks if it sees a 0x0 pattern, so set empty patterns to 100x100.
139
+ var safeSpacing = (this.spacing_ * scale) || 100;
140
+
141
+ this.gridPattern_.setAttribute('width', safeSpacing);
142
+ this.gridPattern_.setAttribute('height', safeSpacing);
143
+
144
+ var half = Math.floor(this.spacing_ / 2) + 0.5;
145
+ var start = half - this.length_ / 2;
146
+ var end = half + this.length_ / 2;
147
+
148
+ half *= scale;
149
+ start *= scale;
150
+ end *= scale;
151
+
152
+ this.setLineAttributes_(this.line1_, scale, start, end, half, half);
153
+ this.setLineAttributes_(this.line2_, scale, half, half, start, end);
154
+ };
155
+
156
+ /**
157
+ * Set the attributes on one of the lines in the grid. Use this to update the
158
+ * length and stroke width of the grid lines.
159
+ * @param {!SVGElement} line Which line to update.
160
+ * @param {number} width The new stroke size (in px).
161
+ * @param {number} x1 The new x start position of the line (in px).
162
+ * @param {number} x2 The new x end position of the line (in px).
163
+ * @param {number} y1 The new y start position of the line (in px).
164
+ * @param {number} y2 The new y end position of the line (in px).
165
+ * @private
166
+ */
167
+ Blockly.Grid.prototype.setLineAttributes_ = function(line, width, x1, x2, y1, y2) {
168
+ if (line) {
169
+ line.setAttribute('stroke-width', width);
170
+ line.setAttribute('x1', x1);
171
+ line.setAttribute('y1', y1);
172
+ line.setAttribute('x2', x2);
173
+ line.setAttribute('y2', y2);
174
+ }
175
+ };
176
+
177
+ /**
178
+ * Move the grid to a new x and y position, and make sure that change is visible.
179
+ * @param {number} x The new x position of the grid (in px).
180
+ * @param {number} y The new y position ofthe grid (in px).
181
+ * @package
182
+ */
183
+ Blockly.Grid.prototype.moveTo = function(x, y) {
184
+ this.gridPattern_.setAttribute('x', x);
185
+ this.gridPattern_.setAttribute('y', y);
186
+
187
+ if (goog.userAgent.IE || goog.userAgent.EDGE) {
188
+ // IE/Edge doesn't notice that the x/y offsets have changed.
189
+ // Force an update.
190
+ this.update(this.scale_);
191
+ }
192
+ };
193
+
194
+ /**
195
+ * Create the DOM for the grid described by options.
196
+ * @param {string} rnd A random ID to append to the pattern's ID.
197
+ * @param {!Object} gridOptions The object containing grid configuration.
198
+ * @param {!SVGElement} defs The root SVG element for this workspace's defs.
199
+ * @return {!SVGElement} The SVG element for the grid pattern.
200
+ * @package
201
+ */
202
+ Blockly.Grid.createDom = function(rnd, gridOptions, defs) {
203
+ /*
204
+ <pattern id="blocklyGridPattern837493" patternUnits="userSpaceOnUse">
205
+ <rect stroke="#888" />
206
+ <rect stroke="#888" />
207
+ </pattern>
208
+ */
209
+ var gridPattern = Blockly.utils.createSvgElement('pattern',
210
+ {
211
+ 'id': 'blocklyGridPattern' + rnd,
212
+ 'patternUnits': 'userSpaceOnUse'
213
+ }, defs);
214
+ if (gridOptions['length'] > 0 && gridOptions['spacing'] > 0) {
215
+ Blockly.utils.createSvgElement('line',
216
+ {'stroke': gridOptions['colour']}, gridPattern);
217
+ if (gridOptions['length'] > 1) {
218
+ Blockly.utils.createSvgElement('line',
219
+ {'stroke': gridOptions['colour']}, gridPattern);
220
+ }
221
+ // x1, y1, x1, x2 properties will be set later in update.
222
+ } else {
223
+ // Edge 16 doesn't handle empty patterns
224
+ Blockly.utils.createSvgElement('line', {}, gridPattern);
225
+ }
226
+ return gridPattern;
227
+ };
package/core/icon.js ADDED
@@ -0,0 +1,205 @@
1
+ /**
2
+ * @license
3
+ * Visual Blocks Editor
4
+ *
5
+ * Copyright 2013 Google Inc.
6
+ * https://developers.google.com/blockly/
7
+ *
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ */
20
+
21
+ /**
22
+ * @fileoverview Object representing an icon on a block.
23
+ * @author fraser@google.com (Neil Fraser)
24
+ */
25
+ 'use strict';
26
+
27
+ goog.provide('Blockly.Icon');
28
+
29
+ goog.require('goog.dom');
30
+ goog.require('goog.math.Coordinate');
31
+
32
+
33
+ /**
34
+ * Class for an icon.
35
+ * @param {Blockly.Block} block The block associated with this icon.
36
+ * @constructor
37
+ */
38
+ Blockly.Icon = function(block) {
39
+ this.block_ = block;
40
+ };
41
+
42
+ /**
43
+ * Does this icon get hidden when the block is collapsed.
44
+ */
45
+ Blockly.Icon.prototype.collapseHidden = true;
46
+
47
+ /**
48
+ * Height and width of icons.
49
+ */
50
+ Blockly.Icon.prototype.SIZE = 17;
51
+
52
+ /**
53
+ * Bubble UI (if visible).
54
+ * @type {Blockly.Bubble}
55
+ * @protected
56
+ */
57
+ Blockly.Icon.prototype.bubble_ = null;
58
+
59
+ /**
60
+ * Absolute coordinate of icon's center.
61
+ * @type {goog.math.Coordinate}
62
+ * @protected
63
+ */
64
+ Blockly.Icon.prototype.iconXY_ = null;
65
+
66
+ /**
67
+ * Create the icon on the block.
68
+ */
69
+ Blockly.Icon.prototype.createIcon = function() {
70
+ if (this.iconGroup_) {
71
+ // Icon already exists.
72
+ return;
73
+ }
74
+ /* Here's the markup that will be generated:
75
+ <g class="blocklyIconGroup">
76
+ ...
77
+ </g>
78
+ */
79
+ this.iconGroup_ = Blockly.utils.createSvgElement('g',
80
+ {'class': 'blocklyIconGroup'}, null);
81
+ if (this.block_.isInFlyout) {
82
+ Blockly.utils.addClass(
83
+ /** @type {!Element} */ (this.iconGroup_), 'blocklyIconGroupReadonly');
84
+ }
85
+ this.drawIcon_(this.iconGroup_);
86
+
87
+ this.block_.getSvgRoot().appendChild(this.iconGroup_);
88
+ Blockly.bindEventWithChecks_(
89
+ this.iconGroup_, 'mouseup', this, this.iconClick_);
90
+ this.updateEditable();
91
+ };
92
+
93
+ /**
94
+ * Dispose of this icon.
95
+ */
96
+ Blockly.Icon.prototype.dispose = function() {
97
+ // Dispose of and unlink the icon.
98
+ goog.dom.removeNode(this.iconGroup_);
99
+ this.iconGroup_ = null;
100
+ // Dispose of and unlink the bubble.
101
+ this.setVisible(false);
102
+ this.block_ = null;
103
+ };
104
+
105
+ /**
106
+ * Add or remove the UI indicating if this icon may be clicked or not.
107
+ */
108
+ Blockly.Icon.prototype.updateEditable = function() {
109
+ };
110
+
111
+ /**
112
+ * Is the associated bubble visible?
113
+ * @return {boolean} True if the bubble is visible.
114
+ */
115
+ Blockly.Icon.prototype.isVisible = function() {
116
+ return !!this.bubble_;
117
+ };
118
+
119
+ /**
120
+ * Clicking on the icon toggles if the bubble is visible.
121
+ * @param {!Event} e Mouse click event.
122
+ * @protected
123
+ */
124
+ Blockly.Icon.prototype.iconClick_ = function(e) {
125
+ if (this.block_.workspace.isDragging()) {
126
+ // Drag operation is concluding. Don't open the editor.
127
+ return;
128
+ }
129
+ if (!this.block_.isInFlyout && !Blockly.utils.isRightButton(e)) {
130
+ this.setVisible(!this.isVisible());
131
+ }
132
+ };
133
+
134
+ /**
135
+ * Change the colour of the associated bubble to match its block.
136
+ */
137
+ Blockly.Icon.prototype.updateColour = function() {
138
+ if (this.isVisible()) {
139
+ this.bubble_.setColour(this.block_.getColour());
140
+ }
141
+ };
142
+
143
+ /**
144
+ * Render the icon.
145
+ * @param {number} cursorX Horizontal offset at which to position the icon.
146
+ * @return {number} Horizontal offset for next item to draw.
147
+ */
148
+ Blockly.Icon.prototype.renderIcon = function(cursorX) {
149
+ if (this.collapseHidden && this.block_.isCollapsed()) {
150
+ this.iconGroup_.setAttribute('display', 'none');
151
+ return cursorX;
152
+ }
153
+ this.iconGroup_.setAttribute('display', 'block');
154
+
155
+ var TOP_MARGIN = 5;
156
+ var width = this.SIZE;
157
+ if (this.block_.RTL) {
158
+ cursorX -= width;
159
+ }
160
+ this.iconGroup_.setAttribute('transform',
161
+ 'translate(' + cursorX + ',' + TOP_MARGIN + ')');
162
+ this.computeIconLocation();
163
+ if (this.block_.RTL) {
164
+ cursorX -= Blockly.BlockSvg.SEP_SPACE_X;
165
+ } else {
166
+ cursorX += width + Blockly.BlockSvg.SEP_SPACE_X;
167
+ }
168
+ return cursorX;
169
+ };
170
+
171
+ /**
172
+ * Notification that the icon has moved. Update the arrow accordingly.
173
+ * @param {!goog.math.Coordinate} xy Absolute location in workspace coordinates.
174
+ */
175
+ Blockly.Icon.prototype.setIconLocation = function(xy) {
176
+ this.iconXY_ = xy;
177
+ if (this.isVisible()) {
178
+ this.bubble_.setAnchorLocation(xy);
179
+ }
180
+ };
181
+
182
+ /**
183
+ * Notification that the icon has moved, but we don't really know where.
184
+ * Recompute the icon's location from scratch.
185
+ */
186
+ Blockly.Icon.prototype.computeIconLocation = function() {
187
+ // Find coordinates for the centre of the icon and update the arrow.
188
+ var blockXY = this.block_.getRelativeToSurfaceXY();
189
+ var iconXY = Blockly.utils.getRelativeXY(this.iconGroup_);
190
+ var newXY = new goog.math.Coordinate(
191
+ blockXY.x + iconXY.x + this.SIZE / 2,
192
+ blockXY.y + iconXY.y + this.SIZE / 2);
193
+ if (!goog.math.Coordinate.equals(this.getIconLocation(), newXY)) {
194
+ this.setIconLocation(newXY);
195
+ }
196
+ };
197
+
198
+ /**
199
+ * Returns the center of the block's icon relative to the surface.
200
+ * @return {!goog.math.Coordinate} Object with x and y properties in workspace
201
+ * coordinates.
202
+ */
203
+ Blockly.Icon.prototype.getIconLocation = function() {
204
+ return this.iconXY_;
205
+ };