Пример #1
0
 static void loadActionMap(LazyActionMap map) {
   map.put(new Actions(Actions.CLOSE));
   BasicLookAndFeel.installAudioActionMap(map);
 }
 static void loadActionMap(LazyActionMap map) {
   map.put(new Actions(Actions.RESTORE));
   map.put(new Actions(Actions.CLOSE));
   map.put(new Actions(Actions.MOVE));
   map.put(new Actions(Actions.RESIZE));
   map.put(new Actions(Actions.LEFT));
   map.put(new Actions(Actions.SHRINK_LEFT));
   map.put(new Actions(Actions.RIGHT));
   map.put(new Actions(Actions.SHRINK_RIGHT));
   map.put(new Actions(Actions.UP));
   map.put(new Actions(Actions.SHRINK_UP));
   map.put(new Actions(Actions.DOWN));
   map.put(new Actions(Actions.SHRINK_DOWN));
   map.put(new Actions(Actions.ESCAPE));
   map.put(new Actions(Actions.MINIMIZE));
   map.put(new Actions(Actions.MAXIMIZE));
   map.put(new Actions(Actions.NEXT_FRAME));
   map.put(new Actions(Actions.PREVIOUS_FRAME));
   map.put(new Actions(Actions.NAVIGATE_NEXT));
   map.put(new Actions(Actions.NAVIGATE_PREVIOUS));
 }