Jskad keyboards are now configured via keyboards.ini, a file that has
comments that explain its function. It's quite simple. This is in response to Jeff C. H. Wu's request.
This commit is contained in:
parent
dcb36ec338
commit
78dc46a979
6 changed files with 115 additions and 23 deletions
|
@ -73,8 +73,16 @@ public class Jskad extends JPanel implements DocumentListener {
|
|||
|
||||
/** the middleman that keeps code regarding Tibetan keyboards
|
||||
* clean */
|
||||
private final static JskadKeyboardManager keybdMgr
|
||||
= new JskadKeyboardManager(JskadKeyboardFactory.getAllAvailableJskadKeyboards());
|
||||
private final static JskadKeyboardManager keybdMgr;
|
||||
|
||||
static {
|
||||
try {
|
||||
keybdMgr
|
||||
= new JskadKeyboardManager(JskadKeyboardFactory.getAllAvailableJskadKeyboards());
|
||||
} catch (Exception e) {
|
||||
throw new ThdlLazyException(e);
|
||||
}
|
||||
}
|
||||
|
||||
private JComboBox fontFamilies, fontSizes;
|
||||
private JFileChooser fileChooser;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue