Sin descripción

zoom_controls.js 6.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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. * @fileoverview Object representing a zoom icons.
  22. * @author carloslfu@gmail.com (Carlos Galarza)
  23. */
  24. 'use strict';
  25. goog.provide('Blockly.ZoomControls');
  26. goog.require('goog.dom');
  27. /**
  28. * Class for a zoom controls.
  29. * @param {!Blockly.Workspace} workspace The workspace to sit in.
  30. * @constructor
  31. */
  32. Blockly.ZoomControls = function(workspace) {
  33. this.workspace_ = workspace;
  34. };
  35. /**
  36. * Width of the zoom controls.
  37. * @type {number}
  38. * @private
  39. */
  40. Blockly.ZoomControls.prototype.WIDTH_ = 32;
  41. /**
  42. * Height of the zoom controls.
  43. * @type {number}
  44. * @private
  45. */
  46. Blockly.ZoomControls.prototype.HEIGHT_ = 110;
  47. /**
  48. * Distance between zoom controls and bottom edge of workspace.
  49. * @type {number}
  50. * @private
  51. */
  52. Blockly.ZoomControls.prototype.MARGIN_BOTTOM_ = 20;
  53. /**
  54. * Distance between zoom controls and right edge of workspace.
  55. * @type {number}
  56. * @private
  57. */
  58. Blockly.ZoomControls.prototype.MARGIN_SIDE_ = 20;
  59. /**
  60. * The SVG group containing the zoom controls.
  61. * @type {Element}
  62. * @private
  63. */
  64. Blockly.ZoomControls.prototype.svgGroup_ = null;
  65. /**
  66. * Left coordinate of the zoom controls.
  67. * @type {number}
  68. * @private
  69. */
  70. Blockly.ZoomControls.prototype.left_ = 0;
  71. /**
  72. * Top coordinate of the zoom controls.
  73. * @type {number}
  74. * @private
  75. */
  76. Blockly.ZoomControls.prototype.top_ = 0;
  77. /**
  78. * Create the zoom controls.
  79. * @return {!Element} The zoom controls SVG group.
  80. */
  81. Blockly.ZoomControls.prototype.createDom = function() {
  82. var workspace = this.workspace_;
  83. /* Here's the markup that will be generated:
  84. <g class="blocklyZoom">
  85. <clippath id="blocklyZoomoutClipPath837493">
  86. <rect width="32" height="32" y="77"></rect>
  87. </clippath>
  88. <image width="96" height="124" x="-64" y="-15" xlink:href="media/sprites.png">
  89. clip-path="url(#blocklyZoomoutClipPath837493)"></image>
  90. <clippath id="blocklyZoominClipPath837493">
  91. <rect width="32" height="32" y="43"></rect>
  92. </clippath>
  93. <image width="96" height="124" x="-32" y="-49" xlink:href="media/sprites.png">
  94. clip-path="url(#blocklyZoominClipPath837493)"></image>
  95. <clippath id="blocklyZoomresetClipPath837493">
  96. <rect width="32" height="32"></rect>
  97. </clippath>
  98. <image width="96" height="124" y="-92" xlink:href="media/sprites.png">
  99. clip-path="url(#blocklyZoomresetClipPath837493)"></image>
  100. </g>
  101. */
  102. this.svgGroup_ = Blockly.createSvgElement('g',
  103. {'class': 'blocklyZoom'}, null);
  104. var rnd = String(Math.random()).substring(2);
  105. var clip = Blockly.createSvgElement('clipPath',
  106. {'id': 'blocklyZoomoutClipPath' + rnd},
  107. this.svgGroup_);
  108. Blockly.createSvgElement('rect',
  109. {'width': 32, 'height': 32, 'y': 77},
  110. clip);
  111. var zoomoutSvg = Blockly.createSvgElement('image',
  112. {'width': Blockly.SPRITE.width,
  113. 'height': Blockly.SPRITE.height, 'x': -64,
  114. 'y': -15,
  115. 'clip-path': 'url(#blocklyZoomoutClipPath' + rnd + ')'},
  116. this.svgGroup_);
  117. zoomoutSvg.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href',
  118. workspace.options.pathToMedia + Blockly.SPRITE.url);
  119. var clip = Blockly.createSvgElement('clipPath',
  120. {'id': 'blocklyZoominClipPath' + rnd},
  121. this.svgGroup_);
  122. Blockly.createSvgElement('rect',
  123. {'width': 32, 'height': 32, 'y': 43},
  124. clip);
  125. var zoominSvg = Blockly.createSvgElement('image',
  126. {'width': Blockly.SPRITE.width,
  127. 'height': Blockly.SPRITE.height,
  128. 'x': -32,
  129. 'y': -49,
  130. 'clip-path': 'url(#blocklyZoominClipPath' + rnd + ')'},
  131. this.svgGroup_);
  132. zoominSvg.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href',
  133. workspace.options.pathToMedia + Blockly.SPRITE.url);
  134. var clip = Blockly.createSvgElement('clipPath',
  135. {'id': 'blocklyZoomresetClipPath' + rnd},
  136. this.svgGroup_);
  137. Blockly.createSvgElement('rect',
  138. {'width': 32, 'height': 32},
  139. clip);
  140. var zoomresetSvg = Blockly.createSvgElement('image',
  141. {'width': Blockly.SPRITE.width,
  142. 'height': Blockly.SPRITE.height, 'y': -92,
  143. 'clip-path': 'url(#blocklyZoomresetClipPath' + rnd + ')'},
  144. this.svgGroup_);
  145. zoomresetSvg.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href',
  146. workspace.options.pathToMedia + Blockly.SPRITE.url);
  147. // Attach event listeners.
  148. Blockly.bindEvent_(zoomresetSvg, 'mousedown', workspace, workspace.zoomReset);
  149. Blockly.bindEvent_(zoominSvg, 'mousedown', null, function(e) {
  150. workspace.zoomCenter(1);
  151. e.stopPropagation(); // Don't start a workspace scroll.
  152. });
  153. Blockly.bindEvent_(zoomoutSvg, 'mousedown', null, function(e) {
  154. workspace.zoomCenter(-1);
  155. e.stopPropagation(); // Don't start a workspace scroll.
  156. });
  157. return this.svgGroup_;
  158. };
  159. /**
  160. * Initialize the zoom controls.
  161. * @param {number} bottom Distance from workspace bottom to bottom of controls.
  162. * @return {number} Distance from workspace bottom to the top of controls.
  163. */
  164. Blockly.ZoomControls.prototype.init = function(bottom) {
  165. this.bottom_ = this.MARGIN_BOTTOM_ + bottom;
  166. return this.bottom_ + this.HEIGHT_;
  167. };
  168. /**
  169. * Dispose of this zoom controls.
  170. * Unlink from all DOM elements to prevent memory leaks.
  171. */
  172. Blockly.ZoomControls.prototype.dispose = function() {
  173. if (this.svgGroup_) {
  174. goog.dom.removeNode(this.svgGroup_);
  175. this.svgGroup_ = null;
  176. }
  177. this.workspace_ = null;
  178. };
  179. /**
  180. * Move the zoom controls to the bottom-right corner.
  181. */
  182. Blockly.ZoomControls.prototype.position = function() {
  183. var metrics = this.workspace_.getMetrics();
  184. if (!metrics) {
  185. // There are no metrics available (workspace is probably not visible).
  186. return;
  187. }
  188. if (this.workspace_.RTL) {
  189. this.left_ = this.MARGIN_SIDE_ + Blockly.Scrollbar.scrollbarThickness;
  190. } else {
  191. this.left_ = metrics.viewWidth + metrics.absoluteLeft -
  192. this.WIDTH_ - this.MARGIN_SIDE_ - Blockly.Scrollbar.scrollbarThickness;
  193. }
  194. this.top_ = metrics.viewHeight + metrics.absoluteTop -
  195. this.HEIGHT_ - this.bottom_;
  196. this.svgGroup_.setAttribute('transform',
  197. 'translate(' + this.left_ + ',' + this.top_ + ')');
  198. };