extends JComponent to exercise Graphics : Graphic Environment « 2D Graphics GUI « Java






extends JComponent to exercise Graphics

 
/*
   This program is a part of the companion code for Core Java 8th ed.
   (http://horstmann.com/corejava)

   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   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.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

import java.awt.EventQueue;
import java.awt.Graphics;

import javax.swing.JComponent;
import javax.swing.JFrame;

/**
 * @version 1.32 2007-06-12
 * @author Cay Horstmann
 */
public class NotHelloWorld
{
   public static void main(String[] args)
   {
      EventQueue.invokeLater(new Runnable()
         {
            public void run()
            {
               NotHelloWorldFrame frame = new NotHelloWorldFrame();
               frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
               frame.setVisible(true);
            }
         });
   }
}

/**
 * A frame that contains a message panel
 */
class NotHelloWorldFrame extends JFrame
{
   public NotHelloWorldFrame()
   {
      setTitle("NotHelloWorld");
      setSize(DEFAULT_WIDTH, DEFAULT_HEIGHT);

      // add panel to frame

      NotHelloWorldComponent comp = new NotHelloWorldComponent();
      add(comp);
   }

   public static final int DEFAULT_WIDTH = 300;
   public static final int DEFAULT_HEIGHT = 200;
}

/**
 * A component that displays a message.
 */
class NotHelloWorldComponent extends JComponent
{
   public void paintComponent(Graphics g)
   {
      g.drawString("Not a Hello, World program", MESSAGE_X, MESSAGE_Y);
   }

   public static final int MESSAGE_X = 75;
   public static final int MESSAGE_Y = 100;
}

   
  








Related examples in the same category

1.A quick utility to print out graphic device informationA quick utility to print out graphic device information
2.List all available fonts in the systemList all available fonts in the system
3.Show all fonts you have in your systemShow all fonts you have in your system
4.Determine if full-screen mode is supported directly
5.Leave full-screen mode (Return to normal windowed mode)
6.Enter full screen mode
7.Getting Screen Sizes
8.Getting Refresh Rates
9.Getting Number of Colors
10.Getting the Current Screen Refresh Rate and Number of Colors
11.Listing All Available Font Families
12.Getting the Font Faces for a Font Family
13.Create buffered images that are compatible with the screen
14.Create an image that does not support transparency from GraphicsConfiguration
15.Create an image that supports transparent pixels from GraphicsConfiguration
16.Getting Amount of Free Accelerated Image Memory
17.Get the available font family names
18.Get the available font names
19.Retrieve and print the graphic device information
20.Create an image that supports arbitrary levels of transparency from GraphicsConfiguration
21.Setting the Screen Size, Refresh Rate, or Number of Colors
22.If more than one screen is available, gets the size of each screen
23.Getting the Number of Screens
24.Get the GraphicsEnvironment and GraphicsDeviceGet the GraphicsEnvironment and GraphicsDevice