@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.
- package/.nvmrc +1 -0
- package/LICENSE +674 -0
- package/README.md +57 -0
- package/TRADEMARK +1 -0
- package/blockly_compressed_horizontal.js +2268 -0
- package/blockly_compressed_vertical.js +2296 -0
- package/blockly_uncompressed_horizontal.js +1212 -0
- package/blockly_uncompressed_vertical.js +1212 -0
- package/blocks_common/colour.js +61 -0
- package/blocks_common/math.js +159 -0
- package/blocks_common/matrix.js +54 -0
- package/blocks_common/note.js +58 -0
- package/blocks_common/text.js +57 -0
- package/blocks_compressed.js +37 -0
- package/blocks_compressed_horizontal.js +68 -0
- package/blocks_compressed_vertical.js +216 -0
- package/blocks_horizontal/control.js +212 -0
- package/blocks_horizontal/default_toolbox.js +139 -0
- package/blocks_horizontal/event.js +190 -0
- package/blocks_horizontal/wedo.js +325 -0
- package/blocks_vertical/control.js +532 -0
- package/blocks_vertical/data.js +666 -0
- package/blocks_vertical/default_toolbox.js +571 -0
- package/blocks_vertical/event.js +329 -0
- package/blocks_vertical/extensions.js +294 -0
- package/blocks_vertical/looks.js +591 -0
- package/blocks_vertical/motion.js +587 -0
- package/blocks_vertical/operators.js +470 -0
- package/blocks_vertical/procedures.js +1051 -0
- package/blocks_vertical/sensing.js +555 -0
- package/blocks_vertical/sound.js +246 -0
- package/blocks_vertical/vertical_extensions.js +289 -0
- package/build/gen_blocks.js +1 -0
- package/build/test_expect.js +1 -0
- package/build/test_input.js +1 -0
- package/build.py +647 -0
- package/cleanup.sh +101 -0
- package/core/block.js +1837 -0
- package/core/block_animations.js +107 -0
- package/core/block_drag_surface.js +299 -0
- package/core/block_dragger.js +424 -0
- package/core/block_events.js +531 -0
- package/core/block_render_svg_horizontal.js +892 -0
- package/core/block_render_svg_vertical.js +1734 -0
- package/core/block_svg.js +1355 -0
- package/core/blockly.js +620 -0
- package/core/blocks.js +37 -0
- package/core/bubble.js +664 -0
- package/core/bubble_dragger.js +285 -0
- package/core/colours.js +177 -0
- package/core/comment.js +293 -0
- package/core/comment_events.js +539 -0
- package/core/connection.js +776 -0
- package/core/connection_db.js +300 -0
- package/core/constants.js +408 -0
- package/core/contextmenu.js +534 -0
- package/core/css.js +1354 -0
- package/core/data_category.js +490 -0
- package/core/dragged_connection_manager.js +260 -0
- package/core/dropdowndiv.js +408 -0
- package/core/events.js +429 -0
- package/core/events_abstract.js +113 -0
- package/core/extensions.js +450 -0
- package/core/field.js +810 -0
- package/core/field_angle.js +410 -0
- package/core/field_checkbox.js +133 -0
- package/core/field_colour.js +253 -0
- package/core/field_colour_slider.js +387 -0
- package/core/field_date.js +353 -0
- package/core/field_dropdown.js +447 -0
- package/core/field_iconmenu.js +309 -0
- package/core/field_image.js +200 -0
- package/core/field_label.js +136 -0
- package/core/field_label_serializable.js +125 -0
- package/core/field_matrix.js +566 -0
- package/core/field_note.js +850 -0
- package/core/field_number.js +366 -0
- package/core/field_numberdropdown.js +77 -0
- package/core/field_textdropdown.js +164 -0
- package/core/field_textinput.js +675 -0
- package/core/field_textinput_removable.js +105 -0
- package/core/field_variable.js +385 -0
- package/core/field_variable_getter.js +185 -0
- package/core/field_vertical_separator.js +161 -0
- package/core/flyout_base.js +935 -0
- package/core/flyout_button.js +324 -0
- package/core/flyout_dragger.js +83 -0
- package/core/flyout_extension_category_header.js +159 -0
- package/core/flyout_horizontal.js +475 -0
- package/core/flyout_vertical.js +770 -0
- package/core/generator.js +426 -0
- package/core/gesture.js +1010 -0
- package/core/grid.js +227 -0
- package/core/icon.js +205 -0
- package/core/inject.js +496 -0
- package/core/input.js +285 -0
- package/core/insertion_marker_manager.js +678 -0
- package/core/intersection_observer.js +102 -0
- package/core/msg.js +62 -0
- package/core/mutator.js +426 -0
- package/core/names.js +198 -0
- package/core/options.js +244 -0
- package/core/procedures.js +739 -0
- package/core/rendered_connection.js +417 -0
- package/core/scratch_block_comment.js +646 -0
- package/core/scratch_blocks_utils.js +246 -0
- package/core/scratch_bubble.js +699 -0
- package/core/scratch_events.js +131 -0
- package/core/scratch_msgs.js +85 -0
- package/core/scrollbar.js +875 -0
- package/core/toolbox.js +803 -0
- package/core/tooltip.js +337 -0
- package/core/touch.js +226 -0
- package/core/trashcan.js +343 -0
- package/core/ui_events.js +91 -0
- package/core/ui_menu_utils.js +68 -0
- package/core/utils.js +825 -0
- package/core/variable_events.js +259 -0
- package/core/variable_map.js +415 -0
- package/core/variable_model.js +116 -0
- package/core/variables.js +674 -0
- package/core/warning.js +199 -0
- package/core/widgetdiv.js +344 -0
- package/core/workspace.js +673 -0
- package/core/workspace_audio.js +170 -0
- package/core/workspace_comment.js +426 -0
- package/core/workspace_comment_render_svg.js +706 -0
- package/core/workspace_comment_svg.js +609 -0
- package/core/workspace_drag_surface_svg.js +195 -0
- package/core/workspace_dragger.js +132 -0
- package/core/workspace_svg.js +2382 -0
- package/core/xml.js +930 -0
- package/core/zoom_controls.js +301 -0
- package/dist/horizontal.js +222 -0
- package/dist/vertical.js +222 -0
- package/dist/web/horizontal.js +232 -0
- package/dist/web/vertical.js +232 -0
- package/i18n/common.py +234 -0
- package/i18n/create_messages.py +162 -0
- package/i18n/create_scratch_msgs.js +69 -0
- package/i18n/dedup_json.py +73 -0
- package/i18n/js_to_json.js +46 -0
- package/i18n/js_to_json.py +136 -0
- package/i18n/json_to_js.js +52 -0
- package/i18n/json_to_js.py +185 -0
- package/i18n/sync_tx_translations.js +111 -0
- package/i18n/test_scratch_msgs.js +87 -0
- package/i18n/tests.py +47 -0
- package/i18n/xliff_to_json.py +232 -0
- package/local_build.sh +70 -0
- package/media/click.mp3 +0 -0
- package/media/click.ogg +0 -0
- package/media/click.wav +0 -0
- package/media/comment-arrow-down.svg +10 -0
- package/media/comment-arrow-up.svg +10 -0
- package/media/delete-x.svg +10 -0
- package/media/delete.mp3 +0 -0
- package/media/delete.ogg +0 -0
- package/media/delete.wav +0 -0
- package/media/dropdown-arrow-dark.svg +1 -0
- package/media/dropdown-arrow.svg +1 -0
- package/media/extensions/microbit-block-icon.svg +130 -0
- package/media/extensions/music-block-icon.svg +17 -0
- package/media/extensions/pen-block-icon.svg +19 -0
- package/media/extensions/wedo2-block-icon.svg +36 -0
- package/media/eyedropper.svg +22 -0
- package/media/green-flag.svg +17 -0
- package/media/handclosed.cur +0 -0
- package/media/handdelete.cur +0 -0
- package/media/handopen.cur +0 -0
- package/media/icons/arrow.svg +12 -0
- package/media/icons/arrow_button.svg +1 -0
- package/media/icons/control_forever.svg +1 -0
- package/media/icons/control_repeat.svg +1 -0
- package/media/icons/control_stop.svg +1 -0
- package/media/icons/control_wait.svg +1 -0
- package/media/icons/event_broadcast_blue.svg +1 -0
- package/media/icons/event_broadcast_coral.svg +1 -0
- package/media/icons/event_broadcast_green.svg +1 -0
- package/media/icons/event_broadcast_magenta.svg +1 -0
- package/media/icons/event_broadcast_orange.svg +1 -0
- package/media/icons/event_broadcast_purple.svg +1 -0
- package/media/icons/event_when-broadcast-received_blue.svg +1 -0
- package/media/icons/event_when-broadcast-received_coral.svg +1 -0
- package/media/icons/event_when-broadcast-received_green.svg +1 -0
- package/media/icons/event_when-broadcast-received_magenta.svg +1 -0
- package/media/icons/event_when-broadcast-received_orange.svg +1 -0
- package/media/icons/event_when-broadcast-received_purple.svg +1 -0
- package/media/icons/event_whenflagclicked.svg +1 -0
- package/media/icons/remove.svg +19 -0
- package/media/icons/set-led_blue.svg +1 -0
- package/media/icons/set-led_coral.svg +1 -0
- package/media/icons/set-led_green.svg +1 -0
- package/media/icons/set-led_magenta.svg +1 -0
- package/media/icons/set-led_mystery.svg +1 -0
- package/media/icons/set-led_orange.svg +1 -0
- package/media/icons/set-led_purple.svg +1 -0
- package/media/icons/set-led_white.svg +1 -0
- package/media/icons/set-led_yellow.svg +1 -0
- package/media/icons/wedo_motor-clockwise.svg +1 -0
- package/media/icons/wedo_motor-counterclockwise.svg +1 -0
- package/media/icons/wedo_motor-speed_fast.svg +1 -0
- package/media/icons/wedo_motor-speed_med.svg +1 -0
- package/media/icons/wedo_motor-speed_slow.svg +1 -0
- package/media/icons/wedo_when-distance_close.svg +1 -0
- package/media/icons/wedo_when-tilt-backward.svg +1 -0
- package/media/icons/wedo_when-tilt-forward.svg +1 -0
- package/media/icons/wedo_when-tilt-left.svg +1 -0
- package/media/icons/wedo_when-tilt-right.svg +1 -0
- package/media/icons/wedo_when-tilt.svg +1 -0
- package/media/repeat.svg +18 -0
- package/media/rotate-left.svg +1 -0
- package/media/rotate-right.svg +1 -0
- package/media/sprites.png +0 -0
- package/media/status-not-ready.svg +13 -0
- package/media/status-ready.svg +13 -0
- package/media/zoom-in.svg +1 -0
- package/media/zoom-out.svg +1 -0
- package/media/zoom-reset.svg +1 -0
- package/msg/js/en.js +290 -0
- package/msg/json/en.json +285 -0
- package/msg/messages.js +359 -0
- package/msg/scratch_msgs.js +22969 -0
- package/package.json +60 -0
- package/pull_from_blockly.sh +151 -0
- package/renovate.json5 +15 -0
- package/shim/blockly_compressed_horizontal-blocks_compressed.js +1 -0
- package/shim/blockly_compressed_horizontal.Blockly.js +1 -0
- package/shim/blockly_compressed_horizontal.goog.js +1 -0
- package/shim/blockly_compressed_horizontal.js +1 -0
- package/shim/blockly_compressed_vertical-blocks_compressed.js +1 -0
- package/shim/blockly_compressed_vertical.Blockly.js +1 -0
- package/shim/blockly_compressed_vertical.goog.js +1 -0
- package/shim/blockly_compressed_vertical.js +1 -0
- package/shim/blocks_compressed_horizontal-blockly_compressed_horizontal-messages.js +1 -0
- package/shim/blocks_compressed_horizontal.js +1 -0
- package/shim/blocks_compressed_vertical-blockly_compressed_vertical-messages.js +1 -0
- package/shim/blocks_compressed_vertical.js +1 -0
- package/shim/gh-pages.js +1 -0
- package/shim/horizontal.js +1 -0
- package/shim/index.js +17 -0
- package/shim/vertical.js +1 -0
- package/universal-python.js +82 -0
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Visual Blocks Editor
|
|
4
|
+
*
|
|
5
|
+
* Copyright 2015 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 a zoom icons.
|
|
23
|
+
* @author carloslfu@gmail.com (Carlos Galarza)
|
|
24
|
+
*/
|
|
25
|
+
'use strict';
|
|
26
|
+
|
|
27
|
+
goog.provide('Blockly.ZoomControls');
|
|
28
|
+
|
|
29
|
+
goog.require('Blockly.Touch');
|
|
30
|
+
goog.require('goog.dom');
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Class for a zoom controls.
|
|
35
|
+
* @param {!Blockly.Workspace} workspace The workspace to sit in.
|
|
36
|
+
* @constructor
|
|
37
|
+
*/
|
|
38
|
+
Blockly.ZoomControls = function(workspace) {
|
|
39
|
+
this.workspace_ = workspace;
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Zoom in icon path.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @private
|
|
46
|
+
*/
|
|
47
|
+
Blockly.ZoomControls.prototype.ZOOM_IN_PATH_ = 'zoom-in.svg';
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Zoom out icon path.
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @private
|
|
53
|
+
*/
|
|
54
|
+
Blockly.ZoomControls.prototype.ZOOM_OUT_PATH_ = 'zoom-out.svg';
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Zoom reset icon path.
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @private
|
|
60
|
+
*/
|
|
61
|
+
Blockly.ZoomControls.prototype.ZOOM_RESET_PATH_ = 'zoom-reset.svg';
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Width of the zoom controls.
|
|
65
|
+
* @type {number}
|
|
66
|
+
* @private
|
|
67
|
+
*/
|
|
68
|
+
Blockly.ZoomControls.prototype.WIDTH_ = 36;
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Height of the zoom controls.
|
|
72
|
+
* @type {number}
|
|
73
|
+
* @private
|
|
74
|
+
*/
|
|
75
|
+
Blockly.ZoomControls.prototype.HEIGHT_ = 124;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Distance between each zoom control.
|
|
79
|
+
* @type {number}
|
|
80
|
+
* @private
|
|
81
|
+
*/
|
|
82
|
+
Blockly.ZoomControls.prototype.MARGIN_BETWEEN_ = 8;
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* Distance between zoom controls and bottom edge of workspace.
|
|
86
|
+
* @type {number}
|
|
87
|
+
* @private
|
|
88
|
+
*/
|
|
89
|
+
Blockly.ZoomControls.prototype.MARGIN_BOTTOM_ = 12;
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* Distance between zoom controls and right edge of workspace.
|
|
93
|
+
* @type {number}
|
|
94
|
+
* @private
|
|
95
|
+
*/
|
|
96
|
+
Blockly.ZoomControls.prototype.MARGIN_SIDE_ = 12;
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* The SVG group containing the zoom controls.
|
|
100
|
+
* @type {Element}
|
|
101
|
+
* @private
|
|
102
|
+
*/
|
|
103
|
+
Blockly.ZoomControls.prototype.svgGroup_ = null;
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Left coordinate of the zoom controls.
|
|
107
|
+
* @type {number}
|
|
108
|
+
* @private
|
|
109
|
+
*/
|
|
110
|
+
Blockly.ZoomControls.prototype.left_ = 0;
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* Top coordinate of the zoom controls.
|
|
114
|
+
* @type {number}
|
|
115
|
+
* @private
|
|
116
|
+
*/
|
|
117
|
+
Blockly.ZoomControls.prototype.top_ = 0;
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Create the zoom controls.
|
|
121
|
+
* @return {!Element} The zoom controls SVG group.
|
|
122
|
+
*/
|
|
123
|
+
Blockly.ZoomControls.prototype.createDom = function() {
|
|
124
|
+
this.svgGroup_ =
|
|
125
|
+
Blockly.utils.createSvgElement('g', {'class': 'blocklyZoom'}, null);
|
|
126
|
+
this.createZoomOutSvg_();
|
|
127
|
+
this.createZoomInSvg_();
|
|
128
|
+
this.createZoomResetSvg_();
|
|
129
|
+
return this.svgGroup_;
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* Initialize the zoom controls.
|
|
134
|
+
* @param {number} bottom Distance from workspace bottom to bottom of controls.
|
|
135
|
+
* @return {number} Distance from workspace bottom to the top of controls.
|
|
136
|
+
*/
|
|
137
|
+
Blockly.ZoomControls.prototype.init = function(bottom) {
|
|
138
|
+
this.bottom_ = this.MARGIN_BOTTOM_ + bottom;
|
|
139
|
+
return this.bottom_ + this.HEIGHT_;
|
|
140
|
+
};
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* Dispose of this zoom controls.
|
|
144
|
+
* Unlink from all DOM elements to prevent memory leaks.
|
|
145
|
+
*/
|
|
146
|
+
Blockly.ZoomControls.prototype.dispose = function() {
|
|
147
|
+
if (this.svgGroup_) {
|
|
148
|
+
goog.dom.removeNode(this.svgGroup_);
|
|
149
|
+
this.svgGroup_ = null;
|
|
150
|
+
}
|
|
151
|
+
this.workspace_ = null;
|
|
152
|
+
};
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* Move the zoom controls to the bottom-right corner.
|
|
156
|
+
*/
|
|
157
|
+
Blockly.ZoomControls.prototype.position = function() {
|
|
158
|
+
var metrics = this.workspace_.getMetrics();
|
|
159
|
+
if (!metrics) {
|
|
160
|
+
// There are no metrics available (workspace is probably not visible).
|
|
161
|
+
return;
|
|
162
|
+
}
|
|
163
|
+
if (this.workspace_.RTL) {
|
|
164
|
+
this.left_ = this.MARGIN_SIDE_ + Blockly.Scrollbar.scrollbarThickness;
|
|
165
|
+
if (metrics.toolboxPosition == Blockly.TOOLBOX_AT_LEFT) {
|
|
166
|
+
this.left_ += metrics.flyoutWidth;
|
|
167
|
+
if (this.workspace_.toolbox_) {
|
|
168
|
+
this.left_ += metrics.absoluteLeft;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
} else {
|
|
172
|
+
this.left_ = metrics.viewWidth + metrics.absoluteLeft -
|
|
173
|
+
this.WIDTH_ - this.MARGIN_SIDE_ - Blockly.Scrollbar.scrollbarThickness;
|
|
174
|
+
|
|
175
|
+
if (metrics.toolboxPosition == Blockly.TOOLBOX_AT_RIGHT) {
|
|
176
|
+
this.left_ -= metrics.flyoutWidth;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
this.top_ = metrics.viewHeight + metrics.absoluteTop -
|
|
180
|
+
this.HEIGHT_ - this.bottom_;
|
|
181
|
+
if (metrics.toolboxPosition == Blockly.TOOLBOX_AT_BOTTOM) {
|
|
182
|
+
this.top_ -= metrics.flyoutHeight;
|
|
183
|
+
}
|
|
184
|
+
this.svgGroup_.setAttribute('transform',
|
|
185
|
+
'translate(' + this.left_ + ',' + this.top_ + ')');
|
|
186
|
+
};
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* Create the zoom in icon and its event handler.
|
|
190
|
+
* The Scratch Blocks implementation of this function is different from the
|
|
191
|
+
* Blockly implementation.
|
|
192
|
+
* @private
|
|
193
|
+
*/
|
|
194
|
+
Blockly.ZoomControls.prototype.createZoomOutSvg_ = function() {
|
|
195
|
+
/* This markup will be generated and added to the "blocklyZoom" group:
|
|
196
|
+
<image width="36" height="36" y="44" xlink:href="../media/zoom-out.svg">
|
|
197
|
+
</image>
|
|
198
|
+
*/
|
|
199
|
+
var ws = this.workspace_;
|
|
200
|
+
/**
|
|
201
|
+
* Zoom out control.
|
|
202
|
+
* @type {SVGElement}
|
|
203
|
+
*/
|
|
204
|
+
var zoomoutSvg = Blockly.utils.createSvgElement(
|
|
205
|
+
'image',
|
|
206
|
+
{
|
|
207
|
+
'width': this.WIDTH_,
|
|
208
|
+
'height': this.WIDTH_,
|
|
209
|
+
'y': (this.WIDTH_ * 1) + (this.MARGIN_BETWEEN_ * 1)
|
|
210
|
+
},
|
|
211
|
+
this.svgGroup_
|
|
212
|
+
);
|
|
213
|
+
zoomoutSvg.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href',
|
|
214
|
+
ws.options.pathToMedia + this.ZOOM_OUT_PATH_);
|
|
215
|
+
// Attach listener.
|
|
216
|
+
Blockly.bindEventWithChecks_(zoomoutSvg, 'mousedown', null, function(e) {
|
|
217
|
+
ws.markFocused();
|
|
218
|
+
ws.zoomCenter(-1);
|
|
219
|
+
Blockly.Touch.clearTouchIdentifier(); // Don't block future drags.
|
|
220
|
+
e.stopPropagation(); // Don't start a workspace scroll.
|
|
221
|
+
e.preventDefault(); // Stop double-clicking from selecting text.
|
|
222
|
+
});
|
|
223
|
+
};
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* Create the zoom out icon and its event handler.
|
|
227
|
+
* The Scratch Blocks implementation of this function is different from the
|
|
228
|
+
* Blockly implementation.
|
|
229
|
+
* @private
|
|
230
|
+
*/
|
|
231
|
+
Blockly.ZoomControls.prototype.createZoomInSvg_ = function() {
|
|
232
|
+
/* This markup will be generated and added to the "blocklyZoom" group:
|
|
233
|
+
<image width="36" height="36" y="0" xlink:href="../media/zoom-in.svg">
|
|
234
|
+
</image>
|
|
235
|
+
*/
|
|
236
|
+
var ws = this.workspace_;
|
|
237
|
+
/**
|
|
238
|
+
* Zoom in control.
|
|
239
|
+
* @type {SVGElement}
|
|
240
|
+
*/
|
|
241
|
+
var zoominSvg = Blockly.utils.createSvgElement(
|
|
242
|
+
'image',
|
|
243
|
+
{
|
|
244
|
+
'width': this.WIDTH_,
|
|
245
|
+
'height': this.WIDTH_,
|
|
246
|
+
'y': 0
|
|
247
|
+
},
|
|
248
|
+
this.svgGroup_
|
|
249
|
+
);
|
|
250
|
+
zoominSvg.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href',
|
|
251
|
+
ws.options.pathToMedia + this.ZOOM_IN_PATH_);
|
|
252
|
+
|
|
253
|
+
// Attach listener.
|
|
254
|
+
Blockly.bindEventWithChecks_(zoominSvg, 'mousedown', null, function(e) {
|
|
255
|
+
ws.markFocused();
|
|
256
|
+
ws.zoomCenter(1);
|
|
257
|
+
Blockly.Touch.clearTouchIdentifier(); // Don't block future drags.
|
|
258
|
+
e.stopPropagation(); // Don't start a workspace scroll.
|
|
259
|
+
e.preventDefault(); // Stop double-clicking from selecting text.
|
|
260
|
+
});
|
|
261
|
+
};
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* Create the zoom reset icon and its event handler.
|
|
265
|
+
* The Scratch Blocks implementation of this function is different from the
|
|
266
|
+
* Blockly implementation.
|
|
267
|
+
* @private
|
|
268
|
+
*/
|
|
269
|
+
Blockly.ZoomControls.prototype.createZoomResetSvg_ = function() {
|
|
270
|
+
/* This markup will be generated and added to the "blocklyZoom" group:
|
|
271
|
+
<image width="36" height="36" y="88" xlink:href="../media/zoom-reset.svg">
|
|
272
|
+
</image>
|
|
273
|
+
*/
|
|
274
|
+
var ws = this.workspace_;
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* Zoom reset control.
|
|
278
|
+
* @type {SVGElement}
|
|
279
|
+
*/
|
|
280
|
+
var zoomresetSvg = Blockly.utils.createSvgElement(
|
|
281
|
+
'image',
|
|
282
|
+
{
|
|
283
|
+
'width': this.WIDTH_,
|
|
284
|
+
'height': this.WIDTH_,
|
|
285
|
+
'y': (this.WIDTH_ * 2) + (this.MARGIN_BETWEEN_ * 2)
|
|
286
|
+
},
|
|
287
|
+
this.svgGroup_
|
|
288
|
+
);
|
|
289
|
+
zoomresetSvg.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href',
|
|
290
|
+
ws.options.pathToMedia + this.ZOOM_RESET_PATH_);
|
|
291
|
+
|
|
292
|
+
// Attach event listeners.
|
|
293
|
+
Blockly.bindEventWithChecks_(zoomresetSvg, 'mousedown', null, function(e) {
|
|
294
|
+
ws.markFocused();
|
|
295
|
+
ws.setScale(ws.options.zoomOptions.startScale);
|
|
296
|
+
ws.scrollCenter();
|
|
297
|
+
Blockly.Touch.clearTouchIdentifier(); // Don't block future drags.
|
|
298
|
+
e.stopPropagation(); // Don't start a workspace scroll.
|
|
299
|
+
e.preventDefault(); // Stop double-clicking from selecting text.
|
|
300
|
+
});
|
|
301
|
+
};
|