Basis gelegd voor PanelDevice, todo:

- knop icons cachen om echte togglers mogelijk te maken
- rij if...elseif equals statements met een ButtonList loop korter maken?
- sliders afhandelen
- feedback terugsturen
- naamgeving aanpassen
This commit is contained in:
2011-03-01 09:58:00 +00:00
parent eae4f80c24
commit 1bb7cb7797
21 changed files with 314 additions and 4 deletions

View File

@@ -17,6 +17,7 @@ import pm.device.gui.GUIDevice;
import pm.device.javainput.extreme3d.Extreme3DDevice;
import pm.device.javainput.rumblepad.RumblepadDevice;
import pm.device.jintellitype.JIntellitypeDevice;
import pm.device.panel.PanelDevice;
import pm.device.player.PlayerDevice;
import pm.device.text.TextDevice;
import pm.device.text.lan.LanTextDevice;
@@ -51,22 +52,23 @@ public class Main extends EventListener {
}
public void initialise() throws DeviceInitialiseException {
//add(new JIntellitypeDevice());
add(new JIntellitypeDevice());
//add(new PlayerDevice());
//add(new RumblepadDevice());
//add(new WiimoteDevice());
//add(new GUIDevice());
//add(new TextDevice());
add(new PanelDevice());
//add(new LanTextDevice());
//add(new Extreme3DDevice());
startDevices();
//add(new ExampleApplication());
//add(new WMPApplication());
add(new GomPlayerApplication());
//add(new GomPlayerApplication());
//add(new WinampApplication());
//add(new iTunesApplication());
add(new VLCApplication());
add(new iTunesApplication());
//add(new VLCApplication());
//add(new MPCApplication());
startApplications();
}