コントロールとキーの有効化

このサンプルでは、ファンクションキーコントロールを全体に有効にすることや任意のキーの有効化を設定する方法を確認できます。

ファンクションキーコントロールは、コントロールと任意のキーの有効化を切り替えることができます。 一時的に設定したファンクションキーを無効にしておきたい場面などに有効です。 コントロールの有効化を切り替える方法 コントロール全体を無効化するには、enabledプロパティにfalseを指定します。 また再度有効化するには、enabledプロパティにtrueを指定します。 任意のキーの有効化を切り替える方法 任意のキーを無効化する場合、setEnabledメソッドの第1引数にfalse、第2引数に無効化したいキーを指定します。 また再度有効化するには、setEnabledメソッドの第1引数にtrue、第2引数に有効化したいキーを指定します。
import '@grapecity/inputman/CSS/gc.inputman-js.css'; import './styles.css'; import { InputMan } from '@grapecity/inputman'; InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern; // ファンクションキー let gcFunctionKey = new InputMan.GcFunctionKey(document.getElementById('functionkey'), { functionKeys: [ { key: GC.InputMan.FunctionKey.F1, description: 'F1キー' }, { key: GC.InputMan.FunctionKey.F3, description: 'F3キー' }, { key: GC.InputMan.FunctionKey.Home, description: 'Home' }, { key: GC.InputMan.FunctionKey.End, description: 'End' } ], onActived: function (s, e) { window.alert(e.description + 'が押下されました。'); } }); document.getElementById('controlEnable').addEventListener('click', (e) => { gcFunctionKey.enabled = e.target.checked; }); document.getElementById('keyEnable').addEventListener('click', (e) => { let selectKey = keyArrays[document.getElementById('targetKey').selectedIndex]; gcFunctionKey.setEnabled(e.target.checked, selectKey); }); const keyArrays = [ GC.InputMan.FunctionKey.F1, GC.InputMan.FunctionKey.F3, GC.InputMan.FunctionKey.Home, GC.InputMan.FunctionKey.End, ]
<!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> System.import('./src/app'); </script> </head> <body> <div id="functionkey"></div> <table class="sample"> <tr> <th>コントロール全体</th> <td> <label><input type="checkbox" id="controlEnable" checked>有効化する</label> </td> </tr> <tr> <th>キーの指定</th> <td> <select id="targetKey"> <option>F1</option> <option>F3</option> <option>Home</option> <option>End</option> </select> <label><input type="checkbox" id="keyEnable" checked>有効化する</label> </td> </tr> </table> </body> </html>
body { padding-bottom: 2rem; }
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: { '@grapecity/inputman': 'npm:@grapecity/inputman/index.js', '@grapecity/inputman/CSS': 'npm:@grapecity/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' }, } });