概要

リソースファイルを使ってメニューバーやツールバーを生成します。

サンプルコード

public JMenuBar createMenubar() {
  JMenuBar mb = new JMenuBar();
  String[] menuKeys = tokenize(getResourceString("menubar"));
  for (int i = 0; i < menuKeys.length; i++) {
    JMenu m = createMenu(menuKeys[i]);
    if (m != null) {
      mb.add(m);
    }
  }
  return mb;
}

private JMenu createMenu(String key) {
  String[] itemKeys = tokenize(getResourceString(key));
  String mitext = getResourceString(key + labelSuffix);
  JMenu menu = new JMenu(mitext);
  String mn = getResourceString(key + mneSuffix);
  if (mn != null) {
    String tmp = mn.toUpperCase().trim();
    if (tmp.length() == 1) {
      if (mitext.indexOf(tmp) < 0) {
        menu.setText(mitext + " (" + tmp + ")");
      }
      byte[] bt = tmp.getBytes();
      menu.setMnemonic((int) bt[0]);
    }
  }
  for (int i = 0; i < itemKeys.length; i++) {
    if (itemKeys[i].equals("-")) {
      menu.addSeparator();
    } else {
      JMenuItem mi = createMenuItem(itemKeys[i]);
      menu.add(mi);
    }
  }
  menus.put(key, menu);
  return menu;
}

private JMenuItem createMenuItem(String cmd) {
  String mitext = getResourceString(cmd + labelSuffix);
  JMenuItem mi = new JMenuItem(mitext);
  URL url = getResource(cmd + imageSuffix);
  if (url != null) {
    mi.setHorizontalTextPosition(JButton.RIGHT);
    mi.setIcon(new ImageIcon(url));
  }
  String astr = getResourceString(cmd + actionSuffix);
  if (astr == null) {
    astr = cmd;
  }
  String mn = getResourceString(cmd + mneSuffix);
  if (mn != null) {
    String tmp = mn.toUpperCase().trim();
    if (tmp.length() == 1) {
      if (mitext.indexOf(tmp) < 0) {
        mi.setText(mitext + " (" + tmp + ")");
      }
      byte[] bt = tmp.getBytes();
      mi.setMnemonic((int) bt[0]);
    }
  }
  mi.setActionCommand(astr);
  Action a = getAction(astr);
  if (a != null) {
    mi.addActionListener(a);
    // a.addPropertyChangeListener(createActionChangeListener(mi));
    mi.setEnabled(a.isEnabled());
  } else {
    mi.setEnabled(false);
  }
  menuItems.put(cmd, mi);
  return mi;
}

public JMenuItem getMenuItem(String cmd) {
  return (JMenuItem) menuItems.get(cmd);
}

public JMenu getMenu(String cmd) {
  return (JMenu) menus.get(cmd);
}

public Action getAction(String cmd) {
  return (Action) commands.get(cmd);
}

public Action[] getActions() {
  return actions;
}
View in GitHub: Java, Kotlin

解説

アプリケーションの起動時にリソースファイルからメニューのテキストの生成、アイコン、ショートカットなどの指定を行います。

  • 上記のサンプルでは、バージョンと終了メニューのみ動作してその他のメニューは何も実行しない
  • src.zipMain.properties.utf8Main_ja_JP.properties.utf8(日本語用)などのリソースファイルを編集してメニュー作成したり、以下のようにdefaultActionsに上記のpropertiesファイルに書いたActionを追加してテストが可能
    public Action[] defaultActions = {
      new NewAction(),
      // new OpenAction(),
      new ExitAction(),
      new HelpAction(),
      new VersionAction(),
    };
    
  • リソースファイルで日本語などは使用不可のため以下のようにantからnative2asciiでユニコードエスケープする必要がある JDK 1.6.0で変更
<condition property="have.resources">
 <available file="${res.dir}" />
</condition>
<target name="prepare-resource" depends="prepare" if="have.resources">
 <mkdir dir="${build.res}" />
 <native2ascii encoding="UTF-8" src="${res.dir}" dest="${build.res}"
               includes="**/*.properties.utf8" ext="" />
 <copy todir="${build.res}">
  <fileset dir="${res.dir}" excludes="**/*.properties.*, **/*.bak" />
 </copy>
</target>

ResourceBundle res = ResourceBundle.getBundle(baseName, new ResourceBundle.Control() {
  @Override public java.util.List<String> getFormats(String baseName) {
    if (baseName == null) throw new NullPointerException();
    return Arrays.asList("properties");
  }

  @Override public ResourceBundle newBundle(
      String baseName, Locale locale, String format, ClassLoader loader, boolean reload)
        throws IllegalAccessException, InstantiationException, IOException {
    if (baseName == null || locale == null || format == null || loader == null)
        throw new NullPointerException();
    ResourceBundle bundle = null;
    if (format.equals("properties")) {
      String bundleName = toBundleName(baseName, locale);
      String resourceName = toResourceName(bundleName, format);
      InputStream stream = null;
      if (reload) {
        URL url = loader.getResource(resourceName);
        if (url != null) {
          URLConnection connection = url.openConnection();
          if (connection != null) {
            connection.setUseCaches(false);
            stream = connection.getInputStream();
          }
        }
      } else {
        stream = loader.getResourceAsStream(resourceName);
      }
      if (stream != null) {
        //BufferedInputStream bis = new BufferedInputStream(stream);
        try (Reader r = new BufferedReader(new InputStreamReader(stream, StandardCharsets.UTF_8))) {
          bundle = new PropertyResourceBundle(r);
        }
      }
    }
    return bundle;
  }
});

参考リンク

コメント