super();
setLayout(new GridLayout(0, 2));
JLabel l = new JLabel(Messages.getString("Path to") + " ffmpeg");
JTextField tf = new JTextField(Settings.getPropertyString(ConstantKeys.configuration_ffmpeg));
tf.addFocusListener(new FocusSettingsAdapter(ConstantKeys.configuration_ffmpeg));
add(l);
add(tf);
l = new JLabel(Messages.getString("Path to") + " VLC");
tf = new JTextField(Settings.getPropertyString(ConstantKeys.configuration_vlc));
tf.addFocusListener(new FocusSettingsAdapter(ConstantKeys.configuration_vlc));
add(l);
add(tf);
l = new JLabel(Messages.getString("Fullscreen"));
JCheckBox cb = new JCheckBox("", Settings.getPropertyBoolean(ConstantKeys.configuration_fullscreen));
cb.addFocusListener(new FocusSettingsAdapter(ConstantKeys.configuration_fullscreen));
cb.addItemListener(new ItemListener(){
private GraphicsEnvironment ge_ = GraphicsEnvironment.getLocalGraphicsEnvironment();
@Override
public void itemStateChanged(ItemEvent e) {