1 /*
  2     Copyright 2008-2017
  3         Matthias Ehmann,
  4         Michael Gerhaeuser,
  5         Carsten Miller,
  6         Bianca Valentin,
  7         Alfred Wassermann,
  8         Peter Wilfahrt
  9 
 10     This file is part of JSXGraph.
 11 
 12     JSXGraph is free software dual licensed under the GNU LGPL or MIT License.
 13 
 14     You can redistribute it and/or modify it under the terms of the
 15 
 16       * GNU Lesser General Public License as published by
 17         the Free Software Foundation, either version 3 of the License, or
 18         (at your option) any later version
 19       OR
 20       * MIT License: https://github.com/jsxgraph/jsxgraph/blob/master/LICENSE.MIT
 21 
 22     JSXGraph is distributed in the hope that it will be useful,
 23     but WITHOUT ANY WARRANTY; without even the implied warranty of
 24     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 25     GNU Lesser General Public License for more details.
 26 
 27     You should have received a copy of the GNU Lesser General Public License and
 28     the MIT License along with JSXGraph. If not, see <http://www.gnu.org/licenses/>
 29     and <http://opensource.org/licenses/MIT/>.
 30  */
 31 
 32 
 33 /*global JXG: true, define: true, window: true*/
 34 /*jslint nomen: true, plusplus: true*/
 35 
 36 /* depends:
 37  jxg
 38  utils/env
 39  utils/type
 40  */
 41 
 42 /**
 43  * @fileoverview In this file the Text element is defined.
 44  */
 45 
 46 define([
 47     'jxg', 'utils/env', 'utils/type'
 48 ], function (JXG, Env, Type) {
 49 
 50     "use strict";
 51 
 52     var priv = {
 53             CheckboxChangeEventHandler: function () {
 54                 this._value = this.rendNodeCheckbox.checked;
 55                 this.board.update();
 56             }
 57         };
 58 
 59     /**
 60      * @class This element is used to provide a constructor for special texts containing a form checkbox element.
 61      *
 62      * @pseudo
 63      * @description
 64      * @name Checkbox
 65      * @augments Text
 66      * @constructor
 67      * @type JXG.Text
 68      *
 69      * @param {number,function_number,function_String_String} x,y,label Parent elements for checkbox elements.
 70      *                     <p>
 71      *                     x and y are the coordinates of the lower left corner of the text box.
 72      *                      The position of the text is fixed,
 73      *                     x and y are numbers. The position is variable if x or y are functions.
 74      *                     <p>
 75      *                     The label of the input element may be given  as string.
 76      *
 77      * @example
 78      *   // Create a checkbox element at position [0,3].
 79      *   var checkbox = board.create('checkbox', [0, 3, 'Change Y'], {});
 80      *   var p = board.create('point', [
 81      *       function(){ return 0.5;}, // X-coordinate
 82      *       function() {
 83      *           y = 0.5;
 84      *           if (checkbox.Value()) {
 85      *               y += 0.5;
 86      *           }
 87      *           return y;
 88      *       }]);
 89      * </pre><div class="jxgbox" id="0e835e0b-ed0c-4b85-b682-78158c0e6f5c" style="width: 300px; height: 300px;"></div>
 90      * <script type="text/javascript">
 91      *   var t1_board = JXG.JSXGraph.initBoard('0e835e0b-ed0c-4b85-b682-78158c0e6f5c', {boundingbox: [-3, 6, 5, -3], axis: true, showcopyright: false, shownavigation: false});
 92      *   var checkbox = t1_board.create('checkbox', [0, 3, 'Change Y'], {});
 93      *   var p = t1_board.create('point', [
 94      *       function(){ return 0.5;}, // X-coordinate
 95      *       function() {
 96      *           y = 0.5;
 97      *           if (checkbox.Value()) {
 98      *               y += 0.5;
 99      *           }
100      *           return y;
101      *       }]);
102      * </script><pre>
103      *
104      * The checkbox can be supplied with custom-made events by using the property rendNodeCheckbox.
105      * @example
106      * var checkbox = board.create('checkbox', [0, 4, 'Click me']),
107      *     p = board.create('point', [1, 1]);
108      *
109      * JXG.addEvent(checkbox.rendNodeCheckbox, 'change', function() {
110      *     if (this.Value()) {
111      *         p.moveTo([4, 1]);
112      *     } else {
113      *         p.moveTo([1, 1]);
114      *     }
115      * }, checkbox);
116      * </pre><div class="jxgbox" id="b2f2345a-057d-44ce-bd7a-6aaff70bc810" style="width: 300px; height: 300px;"></div>
117      * <script type="text/javascript">
118      * var t1_board = JXG.JSXGraph.initBoard('b2f2345a-057d-44ce-bd7a-6aaff70bc810', {boundingbox: [-3, 6, 5, -3], axis: true, showcopyright: false, shownavigation: false});
119      * var checkbox = board.create('checkbox', [0, 4, 'Click me']),
120      *     p = board.create('point', [1, 1]);
121      *
122      * JXG.addEvent(checkbox.rendNodeCheckbox, 'change', function() {
123      *     if (this.Value()) {
124      *         p.moveTo([4, 1]);
125      *     } else {
126      *         p.moveTo([1, 1]);
127      *     }
128      * }, checkbox);
129      * </script><pre>
130      */
131     JXG.createCheckbox = function (board, parents, attributes) {
132         var t, par,
133             attr = Type.copyAttributes(attributes, board.options, 'checkbox');
134 
135         //if (parents.length !== 3) {
136             //throw new Error("JSXGraph: Can't create checkbox with parent types '" +
137             //    (typeof parents[0]) + "' and '" + (typeof parents[1]) + "'." +
138             //    "\nPossible parents are: [[x,y], label]");
139         //}
140 
141         par = [parents[0], parents[1],
142             '<form style="display:inline">' +
143             '<input type="checkbox" /><span></span>' +
144             '</form>'
145             ];
146 
147         //t = JXG.createText(board, par, attr);
148         t = board.create('text', par, attr);
149         t.type = Type.OBJECT_TYPE_CHECKBOX;
150 
151         t.rendNodeForm = t.rendNode.childNodes[0];
152         t.rendNodeForm.id = t.rendNode.id + '_form';
153 
154         t.rendNodeCheckbox = t.rendNodeForm.childNodes[0];
155         t.rendNodeCheckbox.id = t.rendNode.id + '_checkbox';
156 
157         t.rendNodeTag = t.rendNodeCheckbox; // Needed for unified treatment in setAttribute
158         t.rendNodeTag.disabled = !!attr.disabled;
159 
160         t.rendNodeLabel = t.rendNodeForm.childNodes[1];
161         t.rendNodeLabel.id = t.rendNode.id + '_label';
162         t.rendNodeLabel.innerHTML = parents[2];
163 
164         // This sets the font-size of the checkbox itself
165         t.visPropOld.fontsize = "0px";
166         board.renderer.updateTextStyle(t, false);
167 
168         t._value = false;
169 
170         t.Value = function () {
171             return this._value;
172         };
173 
174         t.update = function () {
175             if (this.needsUpdate) {
176                 this._value = this.rendNodeCheckbox.checked;
177             }
178             return this;
179         };
180 
181         Env.addEvent(t.rendNodeCheckbox, 'change', priv.CheckboxChangeEventHandler, t);
182 
183         return t;
184     };
185 
186     JXG.registerElement('checkbox', JXG.createCheckbox);
187 
188     return {
189         createCheckbox: JXG.createCheckbox
190     };
191 });
192