Generates a table of all available display modes, enters full-screen mode and allows you to change the display mode : GraphicsEnvironment « 2D Graphics « Java Tutorial

Java Tutorial
1. Language
2. Data Type
3. Operators
4. Statement Control
5. Class Definition
6. Development
7. Reflection
8. Regular Expressions
9. Collections
10. Thread
11. File
12. Generics
13. I18N
14. Swing
15. Swing Event
16. 2D Graphics
17. SWT
18. SWT 2D Graphics
19. Network
20. Database
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web Services SOA
27. EJB3
28. Spring
29. PDF
30. Email
31. J2ME
32. J2EE Application
33. XML
34. Design Pattern
35. Log
36. Security
37. Apache Common
38. Ant
39. JUnit
Java
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Tutorial » 2D Graphics » GraphicsEnvironment 
16. 52. 16. Generates a table of all available display modes, enters full-screen mode and allows you to change the display mode
/*
 * Copyright (c) 1995 - 2008 Sun Microsystems, Inc.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *   - Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *
 *   - Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 *
 *   - Neither the name of Sun Microsystems nor the names of its
 *     contributors may be used to endorse or promote products derived
 *     from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

/*
 test @(#)DisplayModeTest.java 1.4 01/07/17
 @bug 4189326
 @summary Tests changing display mode
 @author martak@eng: area=FullScreen
 @ignore This test enters full-screen mode, if available, and should not
 be run as an applet or as part of the test harness.
 */

/**
 * This test generates a table of all available display modes, enters
 * full-screen mode, if available, and allows you to change the display mode.
 * The application should look fine under each enumerated display mode.
 * On UNIX, only a single display mode should be available, and on Microsoft
 * Windows, display modes should depend on direct draw availability and the
 * type of graphics card.
 */

import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.DisplayMode;
import java.awt.FlowLayout;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.ListSelectionModel;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.TableColumn;

class DisplayModeModel extends DefaultTableModel {
  private DisplayMode[] modes;

  public DisplayModeModel(DisplayMode[] modes) {
    this.modes = modes;
  }

  public DisplayMode getDisplayMode(int r) {
    return modes[r];
  }

  public String getColumnName(int c) {
    return DisplayModeTest.COLUMN_NAMES[c];
  }

  public int getColumnCount() {
    return DisplayModeTest.COLUMN_WIDTHS.length;
  }

  public boolean isCellEditable(int r, int c) {
    return false;
  }

  public int getRowCount() {
    if (modes == null) {
      return 0;
    }
    return modes.length;
  }

  public Object getValueAt(int rowIndex, int colIndex) {
    DisplayMode dm = modes[rowIndex];
    switch (colIndex) {
    case DisplayModeTest.INDEX_WIDTH:
      return Integer.toString(dm.getWidth());
    case DisplayModeTest.INDEX_HEIGHT:
      return Integer.toString(dm.getHeight());
    case DisplayModeTest.INDEX_BITDEPTH: {
      int bitDepth = dm.getBitDepth();
      String ret;
      if (bitDepth == DisplayMode.BIT_DEPTH_MULTI) {
        ret = "Multi";
      else {
        ret = Integer.toString(bitDepth);
      }
      return ret;
    }
    case DisplayModeTest.INDEX_REFRESHRATE: {
      int refreshRate = dm.getRefreshRate();
      String ret;
      if (refreshRate == DisplayMode.REFRESH_RATE_UNKNOWN) {
        ret = "Unknown";
      else {
        ret = Integer.toString(refreshRate);
      }
      return ret;
    }
    }
    throw new ArrayIndexOutOfBoundsException("Invalid column value");
  }

}

public class DisplayModeTest extends JFrame implements ActionListener,
    ListSelectionListener {

  private boolean waiting = false;
  private GraphicsDevice device;
  private DisplayMode originalDM;
  private JButton exit = new JButton("Exit");
  private JButton changeDM = new JButton("Set Display");
  private JLabel currentDM = new JLabel();
  private JTable dmList = new JTable();
  private JScrollPane dmPane = new JScrollPane(dmList);
  private boolean isFullScreen = false;

  public static final int INDEX_WIDTH = 0;
  public static final int INDEX_HEIGHT = 1;
  public static final int INDEX_BITDEPTH = 2;
  public static final int INDEX_REFRESHRATE = 3;

  public static final int[] COLUMN_WIDTHS = new int[] { 100100100100 };
  public static final String[] COLUMN_NAMES = new String[] { "Width""Height",
      "Bit Depth""Refresh Rate" };

  public DisplayModeTest(GraphicsDevice device) {
    super(device.getDefaultConfiguration());
    this.device = device;
    setTitle("Display Mode Test");
    originalDM = device.getDisplayMode();
    setDMLabel(originalDM);
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    // Make sure a DM is always selected in the list
    exit.addActionListener(this);
    changeDM.addActionListener(this);
    changeDM.setEnabled(device.isDisplayChangeSupported());
  }

  public void actionPerformed(ActionEvent ev) {
    Object source = ev.getSource();
    if (source == exit) {
      device.setDisplayMode(originalDM);
      System.exit(0);
    else // if (source == changeDM)
      int index = dmList.getSelectionModel().getAnchorSelectionIndex();
      if (index >= 0) {
        DisplayModeModel model = (DisplayModeModeldmList.getModel();
        DisplayMode dm = model.getDisplayMode(index);
        device.setDisplayMode(dm);
        setDMLabel(dm);
        setSize(new Dimension(dm.getWidth(), dm.getHeight()));
        validate();
      }
    }
  }

  public void valueChanged(ListSelectionEvent ev) {
    changeDM.setEnabled(device.isDisplayChangeSupported());
  }

  private void initComponents(Container c) {
    setContentPane(c);
    c.setLayout(new BorderLayout());
    // Current DM
    JPanel currentPanel = new JPanel(new FlowLayout(FlowLayout.CENTER));
    c.add(currentPanel, BorderLayout.NORTH);
    JLabel current = new JLabel("Current Display Mode : ");
    currentPanel.add(current);
    currentPanel.add(currentDM);
    // Display Modes
    JPanel modesPanel = new JPanel(new GridLayout(12));
    c.add(modesPanel, BorderLayout.CENTER);
    // List of display modes
    for (int i = 0; i < COLUMN_WIDTHS.length; i++) {
      TableColumn col = new TableColumn(i, COLUMN_WIDTHS[i]);
      col.setIdentifier(COLUMN_NAMES[i]);
      col.setHeaderValue(COLUMN_NAMES[i]);
      dmList.addColumn(col);
    }
    dmList.getSelectionModel().setSelectionMode(
        ListSelectionModel.SINGLE_SELECTION);
    dmList.getSelectionModel().addListSelectionListener(this);
    modesPanel.add(dmPane);
    // Controls
    JPanel controlsPanelA = new JPanel(new BorderLayout());
    modesPanel.add(controlsPanelA);
    JPanel controlsPanelB = new JPanel(new GridLayout(21));
    controlsPanelA.add(controlsPanelB, BorderLayout.NORTH);
    // Exit
    JPanel exitPanel = new JPanel(new FlowLayout(FlowLayout.CENTER));
    controlsPanelB.add(exitPanel);
    exitPanel.add(exit);
    // Change DM
    JPanel changeDMPanel = new JPanel(new FlowLayout(FlowLayout.CENTER));
    controlsPanelB.add(changeDMPanel);
    changeDMPanel.add(changeDM);
    controlsPanelA.add(new JPanel(), BorderLayout.CENTER);
  }

  public void setVisible(boolean isVis) {
    super.setVisible(isVis);
    if (isVis) {
      dmList.setModel(new DisplayModeModel(device.getDisplayModes()));
    }
  }

  public void setDMLabel(DisplayMode newMode) {
    int bitDepth = newMode.getBitDepth();
    int refreshRate = newMode.getRefreshRate();
    String bd, rr;
    if (bitDepth == DisplayMode.BIT_DEPTH_MULTI) {
      bd = "Multi";
    else {
      bd = Integer.toString(bitDepth);
    }
    if (refreshRate == DisplayMode.REFRESH_RATE_UNKNOWN) {
      rr = "Unknown";
    else {
      rr = Integer.toString(refreshRate);
    }
    currentDM.setText(COLUMN_NAMES[INDEX_WIDTH": " + newMode.getWidth()
        " " + COLUMN_NAMES[INDEX_HEIGHT": " + newMode.getHeight() " "
        + COLUMN_NAMES[INDEX_BITDEPTH": " + bd + " "
        + COLUMN_NAMES[INDEX_REFRESHRATE": " + rr);
  }

  public void begin() {
    isFullScreen = device.isFullScreenSupported();
    setUndecorated(isFullScreen);
    setResizable(!isFullScreen);
    if (isFullScreen) {
      // Full-screen mode
      device.setFullScreenWindow(this);
      validate();
    else {
      // Windowed mode
      pack();
      setVisible(true);
    }
  }

  public static void main(String[] args) {
    GraphicsEnvironment env = GraphicsEnvironment.getLocalGraphicsEnvironment();
    GraphicsDevice[] devices = env.getScreenDevices();
    // REMIND : Multi-monitor full-screen mode not yet supported
    for (int i = 0; i < /* devices.length */; i++) {
      DisplayModeTest test = new DisplayModeTest(devices[i]);
      test.initComponents(test.getContentPane());
      test.begin();
    }
  }
}
16. 52. GraphicsEnvironment
16. 52. 1. List all fonts system installed
16. 52. 2. Different buffer capabilities for each GraphicsConfiguration on each GraphicsDevice
16. 52. 3. Get all fonts
16. 52. 4. Getting Screen Sizes
16. 52. 5. Getting Refresh Rates
16. 52. 6. Getting Number of Colors
16. 52. 7. Getting the Current Screen Refresh Rate and Number of Colors
16. 52. 8. Getting the Font Faces for a Font Family
16. 52. 9. Get the available font family names
16. 52. 10. Getting Amount of Free Accelerated Image Memory
16. 52. 11. Create an image that does not support transparency from GraphicsConfiguration
16. 52. 12. Create an image that supports transparent pixels from GraphicsConfiguration
16. 52. 13. Create an image that supports arbitrary levels of transparency from GraphicsConfiguration
16. 52. 14. Create buffered images that are compatible with the screen
16. 52. 15. Retrieve and print the graphic device information
16. 52. 16. Generates a table of all available display modes, enters full-screen mode and allows you to change the display mode
16. 52. 17. Setting the Screen Size, Refresh Rate, or Number of Colors
16. 52. 18. If more than one screen is available, gets the size of each screen
16. 52. 19. Computes the maximum bounds of the current screen device. If this method is called on JDK 1.4, Xinerama-aware results are returned.
16. 52. 20. Computes the center point of the current screen device.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.