I have created a java tabbed pane. In the tabbed pane i have created a tab called Video. I want whenever i click on the video tab a video should automatically be played on the tab panel itself. Can I do this? If yes please tell me how to do it.
Asked
Active
Viewed 365 times
3 Answers
2
You have to add a ChangeListener
to your JTabbedPane
component and override the stateChanged
method:
tabbedPane.addChangeListener(new ChangeListener() {
@Override
public void stateChanged(ChangeEvent e) {
if (e.getSource() instanceof JTabbedPane) {
JTabbedPane pane = (JTabbedPane) e.getSource();
if (pane.getSelectedIndex() == 2) {
// start playing the media clip in tab 2
mediaPlayer.start();
}
}
}
});
Here is a complete, working code:
package tabvideo;
import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.GridLayout;
import java.awt.event.KeyEvent;
import java.io.File;
import java.io.IOException;
import java.net.URL;
import javax.swing.ImageIcon;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTabbedPane;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import javax.media.CannotRealizeException;
import javax.media.NoPlayerException;
import javax.media.Player;
import javax.media.Manager;
public class TabbedPaneVideoDemo extends JPanel {
Player mediaPlayer = null;
public TabbedPaneVideoDemo() {
super(new GridLayout(1, 1));
JTabbedPane tabbedPane = new JTabbedPane();
ImageIcon icon = createImageIcon("images/icon.gif");
JComponent panel1 = makeTextPanel("Panel #1");
tabbedPane.addTab("Tab 1", icon, panel1, "Does nothing");
tabbedPane.setMnemonicAt(0, KeyEvent.VK_1);
JComponent panel2 = makeTextPanel("Panel #2");
tabbedPane.addTab("Tab 2", icon, panel2, "Does twice as much nothing");
tabbedPane.setMnemonicAt(1, KeyEvent.VK_2);
JComponent panel3 = makeTextPanel("Panel #3");
tabbedPane.addTab("Tab 3", icon, panel3, "Still does nothing");
tabbedPane.setMnemonicAt(2, KeyEvent.VK_3);
JComponent panel4 = makeVideoPanel("somevideo.avi");
tabbedPane.addTab("Tab 4", icon, panel4, "Playes video!");
tabbedPane.setMnemonicAt(3, KeyEvent.VK_4);
tabbedPane.addChangeListener(new ChangeListener() {
@Override
public void stateChanged(ChangeEvent e) {
if (e.getSource() instanceof JTabbedPane) {
JTabbedPane pane = (JTabbedPane) e.getSource();
if (pane.getSelectedIndex() == 2) {
// start playing the media clip in tab 2
mediaPlayer.start();
}
}
}
});
// Add the tabbed pane to this panel.
add(tabbedPane);
// The following line enables to use scrolling tabs.
tabbedPane.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);
}
protected JPanel makeVideoPanel(String filename) {
JPanel panel = new JPanel(false);
panel.setLayout(new BorderLayout()); // use a BorderLayout
// Use lightweight components for Swing compatibility
Manager.setHint(Manager.LIGHTWEIGHT_RENDERER, true);
try {
URL mediaURL = new File(filename).toURI().toURL();
// create a player to play the media specified in the URL
mediaPlayer = Manager.createRealizedPlayer(mediaURL);
// get the components for the video and the playback controls
Component video = mediaPlayer.getVisualComponent();
Component controls = mediaPlayer.getControlPanelComponent();
if (video != null)
panel.add(video, BorderLayout.CENTER); // add video component
if (controls != null)
panel.add(controls, BorderLayout.SOUTH); // add controls
} // end try
catch (NoPlayerException noPlayerException) {
System.err.println("No media player found");
} // end catch
catch (CannotRealizeException cannotRealizeException) {
System.err.println("Could not realize media player");
} // end catch
catch (IOException iOException) {
System.err.println("Error reading from the source");
} // end catch
return panel;
} // end MediaPanel constructor
/** Returns an ImageIcon, or null if the path was invalid. */
protected static ImageIcon createImageIcon(String path) {
java.net.URL imgURL = TabbedPaneVideoDemo.class.getResource(path);
if (imgURL != null) {
return new ImageIcon(imgURL);
} else {
System.err.println("Couldn't find file: " + path);
return null;
}
}
protected JComponent makeTextPanel(String text) {
JPanel panel = new JPanel(false);
JLabel filler = new JLabel(text);
filler.setHorizontalAlignment(JLabel.CENTER);
panel.setLayout(new GridLayout(1, 1));
panel.add(filler);
return panel;
}
/**
* Create the GUI and show it. For thread safety, this method should be
* invoked from the event dispatch thread.
*/
private static void createAndShowGUI() {
// Create and set up the window.
JFrame frame = new JFrame("TabbedPaneDemo");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Add content to the window.
frame.add(new TabbedPaneVideoDemo(), BorderLayout.CENTER);
// Display the window.
frame.pack();
frame.setVisible(true);
}
public static void main(String[] args) {
// Schedule a job for the event dispatch thread:
// creating and showing this application's GUI.
SwingUtilities.invokeLater(new Runnable() {
public void run() {
// Turn off metal's use of bold fonts
UIManager.put("swing.boldMetal", Boolean.FALSE);
createAndShowGUI();
}
});
}
}

RGO
- 4,586
- 3
- 26
- 40
0
use the JTabbedPane
getModel()
of type SingleSelectionModel
, add a ChangeListener
to the model, you'll get an event, when a tab has been selected.

Mordechai
- 15,437
- 2
- 41
- 82
0
EDIT: Do you mean, it should run automatically w/o any button press, then use the JTabbedPane
getModel()
of type SingleSelectionModel
, add a ChangeListener
to the model, you'll get an event, when a tab has been selected.
If you mean it should run inside the small tab, maybe you can run a Thread
that displays frames of IconImages
.

Mordechai
- 15,437
- 2
- 41
- 82
-
Well I wanted to do so, but - by mistake - this happened. (So I just edited again, and added the word EDIT:) – Mordechai Oct 17 '12 at 14:48