Ignore:
Timestamp:
05/10/18 16:04:51 (6 years ago)
Author:
davidb
Message:

Reworking of the code-base to separate logic from graphics. This version of Expeditee now supports a JFX graphics as an alternative to SWING

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/apollo/widgets/AudioConfiguration.java

    r315 r1102  
    3131import org.expeditee.items.ItemParentStateChangedEvent;
    3232import org.expeditee.items.Text;
    33 import org.expeditee.items.widgets.InteractiveWidget;
    34 
    35 public class AudioConfiguration extends InteractiveWidget implements Observer {
     33import org.expeditee.items.widgets.SwingWidget;
     34
     35public class AudioConfiguration extends SwingWidget implements Observer {
    3636       
    3737        private static MixerItem[] inputMixerItems = null;
    3838
    39         private JComboBox inputMixureCombo;
     39        private JComboBox<MixerItem> inputMixureCombo;
    4040        private JSlider masterVolumeSlider;
    4141        private JCheckBox masterMuteCheckBox;
     
    4848                Font descFont = new Font("Arial", Font.PLAIN, 12);
    4949
    50                 inputMixureCombo = new JComboBox(getInputMixerItems());
     50                inputMixureCombo = new JComboBox<MixerItem>(getInputMixerItems());
    5151               
    5252                inputMixureCombo.addActionListener( new ActionListener() {
Note: See TracChangeset for help on using the changeset viewer.