X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=tim%2Fprune%2Fcorrelate%2FAudioTimestampSelector.java;fp=tim%2Fprune%2Fcorrelate%2FAudioTimestampSelector.java;h=0000000000000000000000000000000000000000;hb=ce6f2161b8596f7018d6a76bff79bc9e571f35fd;hp=781dbd7a6b771d4cbbc2de89bb872245e1e2dfc9;hpb=2d8cb72e84d5cc1089ce77baf1e34ea3ea2f8465;p=GpsPrune.git diff --git a/tim/prune/correlate/AudioTimestampSelector.java b/tim/prune/correlate/AudioTimestampSelector.java deleted file mode 100644 index 781dbd7..0000000 --- a/tim/prune/correlate/AudioTimestampSelector.java +++ /dev/null @@ -1,75 +0,0 @@ -package tim.prune.correlate; - -import java.awt.BorderLayout; -import java.awt.GridLayout; - -import javax.swing.BorderFactory; -import javax.swing.ButtonGroup; -import javax.swing.JLabel; -import javax.swing.JPanel; -import javax.swing.JRadioButton; -import javax.swing.border.EtchedBorder; - -import tim.prune.I18nManager; - -/** - * GUI element to allow the selection of timestamp options - * for audio clip correlation - */ -public class AudioTimestampSelector extends JPanel -{ - /** Array of radio buttons */ - private JRadioButton[] _radios = new JRadioButton[3]; - - - /** - * Constructor - * @param inTopLabelKey key for description label at top - * @param inLowerLabelKey key for description label at bottom, if any - */ - public AudioTimestampSelector(String inTopLabelKey, String inLowerLabelKey) - { - createComponents(inTopLabelKey, inLowerLabelKey); - setBorder(BorderFactory.createCompoundBorder( - BorderFactory.createEtchedBorder(EtchedBorder.LOWERED), BorderFactory.createEmptyBorder(4, 4, 4, 4)) - ); - } - - /** - * Create the GUI components - * @param inTopLabelKey key for description label at top - * @param inLowerLabelKey key for description label at bottom, if any - */ - private void createComponents(String inTopLabelKey, String inLowerLabelKey) - { - setLayout(new BorderLayout()); - add(new JLabel(I18nManager.getText(inTopLabelKey)), BorderLayout.NORTH); - // panel for the radio buttons - JPanel gridPanel = new JPanel(); - gridPanel.setLayout(new GridLayout(0, 3, 15, 3)); - final String[] keys = {"beginning", "middle", "end"}; - ButtonGroup group = new ButtonGroup(); - for (int i=0; i<3; i++) - { - _radios[i] = new JRadioButton(I18nManager.getText("dialog.correlate.timestamp." + keys[i])); - group.add(_radios[i]); - gridPanel.add(_radios[i]); - } - _radios[0].setSelected(true); - add(gridPanel, BorderLayout.CENTER); - if (inLowerLabelKey != null) { - add(new JLabel(I18nManager.getText(inLowerLabelKey)), BorderLayout.SOUTH); - } - } - - /** - * Get the option selected by the user - * @return 0 for beginning, 1 for middle or 2 for end - */ - public int getSelectedOption() - { - for (int i=0; i<_radios.length; i++) - if (_radios[i].isSelected()) {return i;} - return 0; - } -}