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:
dchandler 2003-05-14 03:25:36 +00:00
parent dcb36ec338
commit 78dc46a979
6 changed files with 115 additions and 23 deletions

View file

@ -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;