ソフトウェアキーボードでは、表示するキーの種類やレイアウトを変更できます。
表示するキーの種類
表示するキーの種類は、GcSoftKeyboard.displayTypeプロパティで設定します。DisplayType.Numeric | DisplayType.Alphabetのように、ビット論理和を使用して複数の値を指定できます。
値
説明
DisplayType.Numeric
数字キー(0〜9)
DisplayType.Alphabet
アルファベット(a〜z)
DisplayType.Symbol
記号(!?#$.,;:"'`*()<>[]{}_|\/-+=~^&@%)
DisplayType.All
すべてのキー
大文字アルファベットキーの表示
アルファベットキーは、小文字のみを表示するか、大文字と小文字を両方表示するかを選択できます。小文字のみを表示した場合は、CapsキーとShiftキーも表示されます。GcSoftKeyboard.showCapitalLettersプロパティで設定します。
値
説明
true
大文字と小文字を両方表示します。
false
小文字のみを表示します。
キーのレイアウト
キーのレイアウトは、ABC順とQWERTY順(標準的なキーボードと同じ順)の2種類から選択できます。GcSoftKeyboard.qwertyLayoutプロパティで設定します。
値
説明
true
QWERTY順のレイアウトで表示します。
false
ABC順のレイアウトで表示します。
import '@mescius/inputman/CSS/gc.inputman-js.css';
import { InputMan } from '@mescius/inputman';
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
const gcSoftKeyboard = new InputMan.GcSoftKeyboard(document.getElementById('gcSoftKeyboard'), {
target: document.getElementById('input')
});
document.getElementById('input').addEventListener('focus', () => {
gcSoftKeyboard.open();
});
// 数字キーを表示するかどうか
document.getElementById('displayTypeNumeric').addEventListener('change', () => {
gcSoftKeyboard.displayType ^= InputMan.DisplayType.Numeric;
});
// アルファベットキーを表示するかどうか
document.getElementById('displayTypeAlphabet').addEventListener('change', () => {
gcSoftKeyboard.displayType ^= InputMan.DisplayType.Alphabet;
});
// 記号キーを表示するかどうか
document.getElementById('displayTypeSymbol').addEventListener('change', () => {
gcSoftKeyboard.displayType ^= InputMan.DisplayType.Symbol;
});
// 大文字アルファベットキーを表示するかどうか
document.getElementById('showCapitalLetters').addEventListener('change', (e) => {
gcSoftKeyboard.showCapitalLetters = e.target.checked;
});
// QWERTYレイアウトで表示するかどうか
document.getElementById('qwertyLayout').addEventListener('change', (e) => {
gcSoftKeyboard.qwertyLayout = e.target.checked;
});
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>ソフトウェアキーボード - キーの種類</title>
<!-- SystemJS -->
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="systemjs.config.js"></script>
<script>
window.onload = function() {
System.import('./src/app');
}
</script>
</head>
<body>
フォーカス時に表示<br>
<input id="input">
<div id="gcSoftKeyboard"></div>
<table class="sample">
<tr>
<th>表示するキー</th>
<td>
<label><input type="checkbox" id="displayTypeNumeric" checked>数字</label>
<label><input type="checkbox" id="displayTypeAlphabet" checked>アルファベット</label>
<label><input type="checkbox" id="displayTypeSymbol" checked>記号</label>
</td>
</tr>
<tr>
<th>大文字アルファベットキー</th>
<td><label><input type="checkbox" id="showCapitalLetters" checked>大文字アルファベットキーを表示</label>
</td>
</tr>
<tr>
<th>QWERTYレイアウト</th>
<td><label><input type="checkbox" id="qwertyLayout">QWERTYレイアウトで表示</label>
</td>
</tr>
</table>
</body>
</html>
body {
min-height: 500px;
}
System.config({
transpiler: 'plugin-babel',
babelOptions: {
es2015: true
},
meta: {
'*.css': { loader: 'css' }
},
paths: {
// paths serve as alias
'npm:': 'node_modules/'
},
// map tells the System loader where to look for things
map: {
'@mescius/inputman': 'npm:@mescius/inputman/index.js',
'@mescius/inputman/CSS': 'npm:@mescius/inputman/CSS',
'css': 'npm:systemjs-plugin-css/css.js',
'plugin-babel': 'npm:systemjs-plugin-babel/plugin-babel.js',
'systemjs-babel-build': 'npm:systemjs-plugin-babel/systemjs-babel-browser.js'
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
src: {
defaultExtension: 'js'
},
"node_modules": {
defaultExtension: 'js'
},
}
});