2/21/12

RGB Color Chooser Applet Java Code

A RGB Color Chooser shows three sliders that the user can manipulate to set the red, green, and blue, components of a color. A color box shows the selected color, and there are three labels that show the numerical values of all the components. Values are in the range 0 to 255. The initial color is black.


An Applet is a program written in the Java programming language that can be included in an HTML page, much in the same way an image is included in a page. 

The program implements an interface called ChangeListener. It defines an object which listens for ChangeEvents. The function stateChange() is a method of the ChangeListener which is invoked when the target of the listener is changed.


Program Code :



/***************************************************************
*     Code 2 Learn Sample Code - http://www.code2learn.com     *
*                                                              *
*                                                              *
*    Please direct all inquiries at codeme@code2learn.com      *
***************************************************************/

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;

public class RGMColorChooser extends JApplet
                       implements ChangeListener {

   private JSlider redSlider, greenSlider, blueSlider;

   private JLabel redLabel, greenLabel, blueLabel;

   private JPanel colorbox;
              // Color box for displaying the color.

   public void init() {

       /* Create JSliders with possible values from 0 to 255. */

       redSlider = new JSlider(JSlider.HORIZONTAL, 0, 255, 0);
       greenSlider = new JSlider(JSlider.HORIZONTAL, 0, 255, 0);
       blueSlider = new JSlider(JSlider.HORIZONTAL, 0, 255, 0);

       /* Create JLabels showing current RGB values. */

       redLabel = new JLabel(" R = 0");
       greenLabel = new JLabel(" G = 0");
       blueLabel = new JLabel(" B = 0");

       /* Set the colors of the labels */

       redLabel.setBackground(Color.white);
       redLabel.setForeground(Color.red);
       redLabel.setOpaque(true);
       greenLabel.setBackground(Color.white);
       greenLabel.setForeground(new Color(0,150,0));
       greenLabel.setOpaque(true);
       blueLabel.setBackground(Color.white);
       blueLabel.setForeground(Color.blue);
       blueLabel.setOpaque(true);

       /* Set the applet to listen for changes to the JSliders' values */

       redSlider.addChangeListener(this);
       greenSlider.addChangeListener(this);
       blueSlider.addChangeListener(this);

       /* Create a JPanel whose background color will always be set to the
          currently selected color.  Otherwise, the panel is empty. */

       colorbox = new JPanel();
       colorbox.setBackground(Color.black);

       /* Create the applet layout, which consists of a row of
          three equal-sized regions holding the JSliders,
          the Labels, and the color box. */

       setBackground(Color.gray);
       getContentPane().setBackground(Color.gray);

       getContentPane().setLayout(new GridLayout(1,3,3,3));
       JPanel scrolls = new JPanel();
       JPanel labels = new JPanel();
       scrolls.setBackground(Color.gray);
       labels.setBackground(Color.gray);
       getContentPane().add(scrolls);
       getContentPane().add(labels);
       getContentPane().add(colorbox);

       /* Add the JSliders and the JLabels to their respective panels. */

       scrolls.setLayout(new GridLayout(3,1,2,2));
       scrolls.add(redSlider);
       scrolls.add(greenSlider);
       scrolls.add(blueSlider);

       labels.setLayout(new GridLayout(3,1,2,2));
       labels.add(redLabel);
       labels.add(greenLabel);
       labels.add(blueLabel);

   } 


@Override
    public void stateChanged(ChangeEvent evt) {
        // TODO Auto-generated method stub
        /* This is called when the user has changed the value on
         one of the sliders.  All the sliders are checked,
          the labels are set to display the correct values,
          and the color box is set to correspond to the new color.*/
        int r = redSlider.getValue();
        int g = greenSlider.getValue();
        int b = blueSlider.getValue();
        redLabel.setText(" R = " + r);
        greenLabel.setText(" G = " + g);
        blueLabel.setText(" B = " + b);
        colorbox.setBackground(new Color(r,g,b));

    
}

}  

SHARE THIS POST:

Related Posts:

  • Java Tutorial : What is a Class? Java class is nothing but a template for object you are going to create or it’s a blue print by using this we create an object. In simple word we can say it’s a specification or a pattern which we define and every object we… Read More
  • OOPs Concept : Polymorphism Polymorphism is the ability of an object to take on many forms. The most common use of polymorphism in OOP occurs when a parent class reference is used to refer to a child class object. Any java object that can pass more t… Read More
  • Object Oriented Programming (OOP) Explanation Object-oriented programming (OOP) is a programming paradigm that uses "objects" to design applications and computer programs. It utilizes several techniques from previously established paradigms, including inheritance… Read More
  • Java Programming with Eclipse : Basics This is intended to be a basic guide to using Eclipse. This guide is by no means comprehensive, but is sufficient to give you enough knowledge to work on your projects. Running and using Ecli… Read More
  • OOPs Concept : Inheritance After discussing Encapsulation, now its time for 'Inheritance' as OOP Concept. Inheritance can be defined as the process where one object acquires the properties of another. With the use of inheritance the information is … Read More

2 comments:

  1. Hello.... informative read.. being enrolled in a JAVA programming course @ http://www.wiziq.com/course/1617-core-java-for-beginners-icse-students I was looking for such material on the net to boost up my preparation.. thanks :)

    ReplyDelete
  2. @Srishti Dubey Thank You.. For any more information don't hesitate to write to us on codeme@code2learn.com

    ReplyDelete