Home | History | Annotate | Download | only in keyboard

Lines Matching refs:function

31 function transitionMode(transition) {
41 function Character(display, id) {
47 * Convenience function to make the keyboard data more readable.
50 function C(display) {
58 function BaseKey() {}
97 getPadding: function(mode, height) {
107 sizeElement: function(mode, height) {
128 resize: function(height) {
140 makeDOM: function(mode, height) {
154 function Key(key, shift, num, symbol) {
170 makeDOM: function(mode, height) {
192 function SvgKey(aspect, className, keyId) {
204 getPadding: function(mode, height) { return 0; },
207 makeDOM: function(mode, height) {
231 function SpecialKey(aspect, content, keyId) {
243 makeDOM: function(mode, height) {
262 function ShiftKey(aspect) {
272 getPadding: function(mode, height) {
280 makeDOM: function(mode, height) {
301 this.modeElements_[mode].onclick = function() {
314 function SymbolKey() {
324 makeDOM: function(mode, height) {
341 this.modeElements_[mode].onclick = function() {
355 function DotComKey() {
365 makeDOM: function(mode, height) {
372 this.modeElements_[mode].onclick = function() {
388 function HideKeyboardKey() {
398 getPadding: function(mode, height) { return 0; },
401 makeDOM: function(mode, height) {
411 this.modeElements_[mode].onclick = function() {
425 function Row(position, keys) {
449 makeDOM: function(height) {
484 showMode: function(mode) {
496 resize: function(height) {
575 function getRowHeight() {
588 function setMode(mode) {
605 function sendKey(key) {
623 * Create a closure for the sendKey function.
627 function sendKeyFunction(key) {
628 return function() { sendKey(key); }
635 window.onresize = function() {
653 window.onload = function() {