123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- /**
- * @license
- * Visual Blocks Editor
- *
- * Copyright 2012 Google Inc.
- * https://developers.google.com/blockly/
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /**
- * @fileoverview Checkbox field. Checked or not checked.
- * @author fraser@google.com (Neil Fraser)
- */
- 'use strict';
- goog.provide('Blockly.FieldCheckbox');
- goog.require('Blockly.Field');
- // how big should toggleable images be?
- var sz = 25;
- /**
- * Class for a checkbox field.
- * @param {string} state The initial state of the field ('TRUE' or 'FALSE').
- * @param {Function=} opt_validator A function that is executed when a new
- * option is selected. Its sole argument is the new checkbox state. If
- * it returns a value, this becomes the new checkbox state, unless the
- * value is null, in which case the change is aborted.
- * @extends {Blockly.Field}
- * @constructor
- */
- Blockly.FieldCheckbox = function(state, opt_validator,img1,img2) {
- Blockly.FieldCheckbox.superClass_.constructor.call(this, '', opt_validator);
- // do I have two images?
- if (img1 && img2) {
- this.img1 = img1;
- this.img2 = img2;
- this.size_ = new goog.math.Size(sz, sz * 1.1);
- }
- // Set the initial state.
- // console.log("setting fieldCheckbox initial state to:",state);
- this.setValue(state);
- };
- goog.inherits(Blockly.FieldCheckbox, Blockly.Field);
- /**
- * Character for the checkmark.
- */
- Blockly.FieldCheckbox.CHECK_CHAR = '\u2713';
- /**
- * Mouse cursor style when over the hotspot that initiates editability.
- */
- Blockly.FieldCheckbox.prototype.CURSOR = 'default';
- Blockly.FieldCheckbox.prototype.EDITABLE = true;
- /**
- * Install this checkbox on a block.
- */
- Blockly.FieldCheckbox.prototype.init = function() {
- if (this.fieldGroup_) {
- // Checkbox has already been initialized once.
- return;
- }
- if (!(this.img1 && this.img2)) {
- Blockly.FieldCheckbox.superClass_.init.call(this);
- // The checkbox doesn't use the inherited text element.
- // Instead it uses a custom checkmark element that is either visible or not.
- this.checkElement_ = Blockly.createSvgElement('text',
- {'class': 'blocklyText blocklyCheckbox', 'x': -3, 'y': 14},
- this.fieldGroup_);
- var textNode = document.createTextNode(Blockly.FieldCheckbox.CHECK_CHAR);
- this.checkElement_.appendChild(textNode);
- this.checkElement_.style.display = this.state_ ? 'block' : 'none';
- }
- else {
- // code from field_image and field prototype init
- // console.log("got some images");
- // Build the DOM.
- this.fieldGroup_ = Blockly.createSvgElement('g', {}, null);
- if (!this.visible_) {
- this.fieldGroup_.style.display = 'none';
- }
- this.imageElement_ = Blockly.createSvgElement('image',
- {'height': sz + 'px',
- 'width': sz * 1.1 + 'px',
- 'x': 5, 'y': -5}, this.fieldGroup_);
- this.imageElement_.setAttributeNS('http://www.w3.org/1999/xlink',
- 'xlink:href', (this.state_) ? this.img1 : this.img2);
- // if (goog.userAgent.GECKO) {
- // // Due to a Firefox bug which eats mouse events on image elements,
- // // a transparent rectangle needs to be placed on top of the image.
- // this.rectElement_ = Blockly.createSvgElement('rect',
- // {'height': sz + 'px',
- // 'width': sz + 'px',
- // 'fill-opacity': 0}, this.fieldGroup_);
- // }
- this.updateEditable();
- this.sourceBlock_.getSvgRoot().appendChild(this.fieldGroup_);
- this.mouseUpWrapper_ =
- Blockly.bindEvent_(this.fieldGroup_, 'mouseup', this, this.onMouseUp_);
- }
- };
- /**
- * Return 'TRUE' if the checkbox is checked, 'FALSE' otherwise.
- * @return {string} Current state.
- */
- Blockly.FieldCheckbox.prototype.getValue = function() {
- return String(this.state_).toUpperCase();
- };
- /**
- * Set the checkbox to be checked if strBool is 'TRUE', unchecks otherwise.
- * Can also toggle between two images if they exist.
- * @param {string} strBool New state.
- */
- Blockly.FieldCheckbox.prototype.setValue = function(strBool) {
- var newState = (strBool == 'TRUE');
- if (this.state_ !== newState) {
- if (this.sourceBlock_ && Blockly.Events.isEnabled()) {
- Blockly.Events.fire(new Blockly.Events.Change(
- this.sourceBlock_, 'field', this.name, this.state_, newState));
- }
- this.state_ = newState;
- // console.log("setting checkbox to:",this.state_);
- if (this.checkElement_) {
- this.checkElement_.style.display = newState ? 'block' : 'none';
- }
- else if (this.imageElement_) {
- this.imageElement_.setAttributeNS('http://www.w3.org/1999/xlink',
- 'xlink:href', newState ? this.img1 : this.img2);
- }
- }
- };
- /**
- * Toggle the state of the checkbox.
- * @private
- */
- Blockly.FieldCheckbox.prototype.showEditor_ = function() {
- var newState = !this.state_;
- if (this.sourceBlock_) {
- // Call any validation function, and allow it to override.
- newState = this.callValidator(newState);
- }
- if (newState !== null) {
- this.setValue(String(newState).toUpperCase());
- }
- };
|