label.alignment_output_command = Alignment output - {0}
label.annotations = Annotations
label.structure_options = Structure Options
+label.structure_import_options = Structure Import Options
label.features = Features
label.overview_params = Overview {0}
label.paste_newick_file = Paste Newick file
label.tftype_plddt = pLDDT
label.optional = (optional)
label.choose_tempfac_type = Choose Temperature Factor type
+label.interpret_tempfac_as = Interpret Temperature Factor as
label.add_pae_matrix_file = Add PAE matrix file
label.nothing_selected = Nothing selected
lbl_pdbFile.setFont(VERDANA_10);
lbl_chooseTempFacType.setFont(VERDANA_12);
- lbl_chooseTempFacType.setText(new StringBuilder()
- .append(MessageManager.getString("label.choose_tempfac_type"))
- .append(" ").append(MessageManager.getString("label.optional"))
- .toString());
+ lbl_chooseTempFacType.setText(MessageManager.getString("label.interpret_tempfac_as"));
combo_tempFacAs.setFont(VERDANA_12);
for (TFType t : TFType.values())
});
btn_paeMatrixFile.setFont(VERDANA_12);
- btn_paeMatrixFile.setText(new StringBuilder()
- .append(MessageManager.getString("label.add_pae_matrix_file"))
- .append(" ").append(MessageManager.getString("label.optional"))
- .toString());
+ btn_paeMatrixFile.setText(MessageManager.getString("label.add_pae_matrix_file"));
btn_paeMatrixFile.addActionListener(new ActionListener()
{
@Override
gbc.insets = new Insets(0, 0, 18, 0);
pnl_fileOptions.add(lbl_pdbFile, gbc);
gbc.gridy++;
+
gbc.insets = new Insets(0, 0, 2, 0);
+ pnl_fileOptions.add(new JLabel(MessageManager.getString("label.structure_import_options")), gbc);
+ gbc.gridy++;
+
+ gbc.insets = new Insets(0, 0, 6, 0);
pnl_fileOptions.add(lbl_chooseTempFacType, gbc);
gbc.gridy++;
gbc.insets = new Insets(0, 0, 18, 0);
pnl_fileOptions.add(combo_tempFacAs, gbc);
gbc.gridy++;
- gbc.insets = new Insets(0, 0, 2, 0);
+ gbc.insets = new Insets(0, 0, 6, 0);
pnl_fileOptions.add(btn_paeMatrixFile, gbc);
gbc.gridy++;
+ gbc.insets = new Insets(0, 0, 2, 0);
gbc.weighty = 1.0;
pnl_fileOptions.add(lbl_paeFile, gbc);
lbl_chooseTempFacType.setEnabled(b);
combo_tempFacAs.setEnabled(b);
btn_paeMatrixFile.setEnabled(b);
+ lbl_paeFile.setEnabled(b);
}
}