encodingModel = new DefaultComboBoxModel();
for (CharsetWrapper wrapper : FileUtil.getCharsetList())
encodingModel.addElement(wrapper);
encodingList = new JComboBox(encodingModel);
encodingList.setSelectedItem(new CharsetWrapper(yoshikoder.getDefaultEncoding()));
// set to locale picker width since that'll be the longest
encodingList.setPreferredSize( new Dimension(
localeList.getPreferredSize().width,
encodingList.getPreferredSize().height) );
encodingList.addActionListener(new ActionListener(){