Home Java Example Java Awt Changing the Cursor in Java



Changing the Cursor in Java
Posted on: April 17, 2007 at 12:00 AM
In this section, you will see how to change the cursor in java.

Changing the Cursor in Java

     

Introduction

Here, you will learn how to change the mouse cursor in java. Changing the cursor means showing cursor in many different  shapes for the different objects.

First button is "Ok" button, when the cursor goes upon it, cursor shape changes to hand shape. If you move the mouse over "Cancel" button, the cursor shape changes to move cursor (MOVE_CURSOR).

In this process the following methods to be used in the program.

add(panel,BorderLayout.CENTER) :
The add() method has been used to add the panel to the frame. The BorderLayout container has the five components such as: NORTH, SOUTH, WEST, EAST and CENTER.

getCursor(): 
This method is used to declaring the predefined cursor to set for the object. This method contains the Cursor properties which indicates the several cursors.

setCursor() :
This method defined in the Component class. It changes the cursor icon when the cursor goes upon the particular component.

getPredefinedCursor() :
The getPredefinedCursor() method returns the cursor object to be specified in the cursor block.

Here is the code of the program :   

import java.awt.*;
import java.awt.event.*;

public class ChangeCursor{
  public static void main(String[] args) {
  Frame f = new Frame("Change cursor");
  Panel panel = new Panel();
  Button comp1 = new Button("Ok");
  Button comp2 = new Button("Cancel");
  panel.add(comp1);
  panel.add(comp2);
  f.add(panel,BorderLayout.CENTER);
  f.setSize(200,200);
  f.setVisible(true);
  Cursor cur = comp1.getCursor();
  Cursor cur1 = comp2.getCursor();
  comp1.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
  comp2.setCursor(Cursor.getPredefinedCursor(Cursor.MOVE_CURSOR));
  f.addWindowListener(new WindowAdapter(){
  public void windowClosing(WindowEvent we){
  System.exit(0);
  }
  });

  }
}

Download this example.

Related Tags for Changing the Cursor in Java:
javacobjectdiffobjectsmousecursorchangeshowiffortolearnshapessheareilshapehangusepemanhanginginshadifferentmntjchangingesmemeanhowobjssoginanyhalleaarwingvassrenthshoavapctsfemanyjeo


More Tutorials from this section

Ask Questions?    Discuss: Changing the Cursor in Java   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.