Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

18
LINES

< > BotCompany Repo | #1014805 // NumPadFixingInputMap

JavaX fragment (include)

please include function rsyntaxTextArea_fixNumPad.

sclass NumPadFixingInputMap extends InputMap {
  public void put(KeyStroke keyStroke, Object actionMapKey) {
    super.put(keyStroke, actionMapKey);
    Int code = rsyntaxTextArea_fixNumPad_map.get(keyStroke.getKeyCode());
    if (code != null)
      put(KeyStroke.getKeyStroke(code, keyStroke.getModifiers()), actionMapKey);
  }
  
  void replaceOn(JComponent c) {
    InputMap im = c.getInputMap();
    setParent(im.getParent());
    for (KeyStroke key : im.keys())
      put(key, im.get(key));
    c.setInputMap(JComponent.WHEN_FOCUSED, this);
  }
}

download  show line numbers  debug dex  old transpilations   

Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1014805
Snippet name: NumPadFixingInputMap
Eternal ID of this version: #1014805/3
Text MD5: 356747efae4ca725358985f6724ed620
Author: stefan
Category: javax / gui
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2018-05-03 01:27:20
Source code size: 621 bytes / 18 lines
Pitched / IR pitched: No / No
Views / Downloads: 306 / 896
Version history: 2 change(s)
Referenced in: [show references]