Fixed style and positioning.
[guacamole-common-js.git] / src / main / resources / oskeyboard.js
1
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is guacamole-common-js.
16  *
17  * The Initial Developer of the Original Code is
18  * Michael Jumper.
19  * Portions created by the Initial Developer are Copyright (C) 2010
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
37
38 // Guacamole namespace
39 var Guacamole = Guacamole || {};
40
41 /**
42  * Dynamic on-screen keyboard. Given the URL to an XML keyboard layout file,
43  * this object will download and use the XML to construct a clickable on-screen
44  * keyboard with its own key events.
45  * 
46  * @constructor
47  * @param {String} url The URL of an XML keyboard layout file.
48  */
49 Guacamole.OnScreenKeyboard = function(url) {
50
51     // For each child of element, call handler defined in next
52     function parseChildren(element, next) {
53
54         var children = element.childNodes;
55         for (var i=0; i<children.length; i++) {
56
57             // Get child node
58             var child = children[i];
59
60             // Do not parse text nodes
61             if (!child.tagName)
62                 continue;
63
64             // Get handler for node
65             var handler = next[child.tagName];
66
67             // Call handler if defined
68             if (handler)
69                 handler(child);
70
71             // Throw exception if no handler
72             else
73                 throw new Error(
74                       "Unexpected " + child.tagName
75                     + " within " + element.tagName
76                 );
77
78         }
79
80     }
81
82     // Create keyboard
83     var keyboard = document.createElement("div");
84     keyboard.className = "guacamole-keyboard";
85
86     // Retrieve keyboard XML
87     var xmlhttprequest = new XMLHttpRequest();
88     xmlhttprequest.open("GET", url, false);
89     xmlhttprequest.send(null);
90
91     var xml = xmlhttprequest.responseXML;
92
93     if (xml) {
94
95         var width = 640;
96         var size = 20;
97         var unit = width / size;
98
99         function parse_row(e) {
100             
101             var row = document.createElement("div");
102             row.className = "guacamole-keyboard-row";
103
104             parseChildren(e, {
105                 
106                 "column": function(e) {
107                     row.appendChild(parse_column(e));
108                 },
109                 
110                 "gap": function parse_gap(e) {
111
112                     // Get attributes
113                     var gap_size = e.attributes["size"];
114
115                     // Create element
116                     var gap = document.createElement("div");
117                     gap.className = "guacamole-keyboard-gap";
118                     gap.textContent = " ";
119
120                     // Set gap size
121                     if (gap_size)
122                         gap.style.width = gap.style.height =
123                             parseFloat(gap_size.value)*unit + "px";
124
125                     row.appendChild(gap);
126
127                 },
128                 
129                 "key": function parse_key(e) {
130                     
131
132                     // Get attributes
133                     var key_size = e.attributes["size"];
134
135                     // Create container element
136                     var key_container = document.createElement("div");
137                     key_container.style.display = "inline-block";
138                     key_container.style.fontSize = unit + "px";
139                     key_container.style.lineHeight = unit + "px";
140                     key_container.style.height = unit + "px";
141                     
142                     // Create element
143                     var key = document.createElement("div");
144                     key.className = "guacamole-keyboard-key";
145                     key_container.appendChild(key);
146
147                     // Set key size
148                     if (key_size)
149                         key_container.style.width = parseFloat(key_size.value)*unit + "px";
150                     else
151                         key_container.style.width = unit + "px";
152
153                     parseChildren(e, {
154                         "cap": function cap(e) {
155
156                             // Get attributes
157                             var required = e.attributes["if"];
158                             var modifier = e.attributes["modifier"];
159                             var keysym   = e.attributes["keysym"];
160                             var sticky   = e.attributes["sticky"];
161                             
162                             // Get content of key cap
163                             var content = e.textContent;
164                             
165                             // If no requirements, then show cap by default
166                             if (!required) {
167                                 key.textContent = content;
168                             }
169
170                         }
171                     });
172
173                     row.appendChild(key_container);
174
175                 }
176                 
177             });
178
179             return row;
180
181         }
182
183         function parse_column(e) {
184             
185             var col = document.createElement("div");
186             col.className = "guacamole-keyboard-column";
187
188             var align = col.attributes["align"];
189
190             if (align)
191                 col.style.textAlign = align.value;
192
193             // Columns can only contain rows
194             parseChildren(e, {
195                 "row": function(e) {
196                     col.appendChild(parse_row(e));
197                 }
198             });
199
200             return col;
201
202         }
203
204
205         // Parse document
206         var keyboard_element = xml.documentElement;
207         if (keyboard_element.tagName != "keyboard")
208             throw new Error("Root element must be keyboard");
209
210         // Get attributes
211         var keyboard_size = keyboard_element.attributes["size"];
212         
213         parseChildren(keyboard_element, {
214             
215             "row": function(e) {
216                 keyboard.appendChild(parse_row(e));
217             },
218             
219             "column": function(e) {
220                 keyboard.appendChild(parse_column(e));
221             }
222             
223         });
224
225     }
226
227     // Do not allow selection or mouse movement to propagate/register.
228     keyboard.onselectstart =
229     keyboard.onmousemove   =
230     keyboard.onmouseup     =
231     keyboard.onmousedown   =
232     function(e) {
233         e.stopPropagation();
234         return false;
235     };
236
237
238     this.onkeypressed  = null;
239     this.onkeyreleased = null;
240
241     this.getElement = function() {
242         return keyboard;
243     };
244
245 };
246
247 Guacamole.OnScreenKeyboard.Key = function() {
248
249     /**
250      * Width of the key, relative to the size of the keyboard.
251      */
252     this.size = 1;
253
254     /**
255      * Whether this key is currently pressed.
256      */
257     this.pressed = false;
258
259     /**
260      * An associative map of all caps by modifier.
261      */
262     this.caps = {};
263
264 }
265
266 Guacamole.OnScreenKeyboard.Cap = function(text, keycode, modifier) {
267     
268     /**
269      * Modifier represented by this keycap
270      */
271     this.modifier = 0;
272     
273     /**
274      * The text to be displayed within this keycap
275      */
276     this.text = text;
277
278     /**
279      * The keycode this cap sends when its associated key is pressed/released
280      */
281     this.keycode = keycode;
282
283     // Set modifier if provided
284     if (modifier) this.modifier = modifier;
285     
286 }