forked from 4thline/cling
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request 4thline#106 from ened/workbench-playmode
Added a PlayMode panel to the AVTransport controller.
- Loading branch information
Showing
6 changed files
with
179 additions
and
1 deletion.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
support/src/main/java/org/fourthline/cling/support/avtransport/callback/SetPlayMode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Copyright (C) 2013 4th Line GmbH, Switzerland | ||
* | ||
* The contents of this file are subject to the terms of either the GNU | ||
* Lesser General Public License Version 2 or later ("LGPL") or the | ||
* Common Development and Distribution License Version 1 or later | ||
* ("CDDL") (collectively, the "License"). You may not use this file | ||
* except in compliance with the License. See LICENSE.txt for more | ||
* information. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
*/ | ||
|
||
package org.fourthline.cling.support.avtransport.callback; | ||
|
||
import org.fourthline.cling.controlpoint.ActionCallback; | ||
import org.fourthline.cling.model.action.ActionInvocation; | ||
import org.fourthline.cling.model.meta.Service; | ||
import org.fourthline.cling.model.types.UnsignedIntegerFourBytes; | ||
import org.fourthline.cling.support.model.PlayMode; | ||
|
||
import java.util.logging.Logger; | ||
|
||
/** | ||
* @author Christian Bauer | ||
*/ | ||
public abstract class SetPlayMode extends ActionCallback { | ||
|
||
private static Logger log = Logger.getLogger(SetPlayMode.class.getName()); | ||
|
||
public SetPlayMode(Service service, PlayMode playMode) { | ||
this(new UnsignedIntegerFourBytes(0), service, playMode); | ||
} | ||
|
||
public SetPlayMode(UnsignedIntegerFourBytes instanceId, Service service, PlayMode playMode) { | ||
super(new ActionInvocation(service.getAction("SetPlayMode"))); | ||
getActionInvocation().setInput("InstanceID", instanceId); | ||
getActionInvocation().setInput("NewPlayMode", playMode.toString()); | ||
} | ||
|
||
@Override | ||
public void success(ActionInvocation invocation) { | ||
log.fine("Execution successful"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
.../src/main/java/org/fourthline/cling/workbench/plugins/avtransport/impl/PlayModePanel.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Copyright (C) 2013 4th Line GmbH, Switzerland | ||
* | ||
* The contents of this file are subject to the terms of either the GNU | ||
* Lesser General Public License Version 2 or later ("LGPL") or the | ||
* Common Development and Distribution License Version 1 or later | ||
* ("CDDL") (collectively, the "License"). You may not use this file | ||
* except in compliance with the License. See LICENSE.txt for more | ||
* information. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
*/ | ||
|
||
package org.fourthline.cling.workbench.plugins.avtransport.impl; | ||
|
||
import org.fourthline.cling.support.model.PlayMode; | ||
|
||
import javax.swing.BorderFactory; | ||
import javax.swing.Box; | ||
import javax.swing.BoxLayout; | ||
import javax.swing.JComboBox; | ||
import javax.swing.JPanel; | ||
|
||
/** | ||
* @author Sebastian Roth | ||
*/ | ||
public class PlayModePanel extends JPanel { | ||
|
||
class PlayModeSpinner extends JComboBox { | ||
PlayModeSpinner() { | ||
super(PlayMode.values()); | ||
} | ||
} | ||
|
||
final private PlayModeSpinner playModeSpinner = new PlayModeSpinner(); | ||
|
||
public PlayModePanel() { | ||
super(); | ||
|
||
setBorder(BorderFactory.createTitledBorder("Play Mode")); | ||
setLayout(new BoxLayout(this, BoxLayout.X_AXIS)); | ||
|
||
add(Box.createHorizontalGlue()); | ||
|
||
add(playModeSpinner); | ||
|
||
add(Box.createHorizontalGlue()); | ||
} | ||
|
||
public PlayModeSpinner getPlayModeSpinner() { | ||
return playModeSpinner; | ||
} | ||
} |