devxlogo

Right-Clicks on a Single Button Mouse

Right-Clicks on a Single Button Mouse

Those of us with a two- or three-button mouse are familiar with the idea of a right-click, but how can you detect which button is pressed from your Java code? And to keep your applet or application platform independent, how can you cater for similar functionality with a one-button mouse? Fortunately, the InputEvent modifier flags serve double duty, so that clicking the right button or holding down the Alt key while clicking the left button, have the same effect. By masking the event modifiers in a mouseClicked method, you can permit the user to press Shift, Ctrl, Meta or Alt keys.

 import java.awt.*;import java.awt.event.*;public class YourClass implements MouseListener {    // Your constructors and methods here    public void mouseClicked(MouseEvent ev) {        int mask = InputEvent.BUTTON1_MASK - 1;        int mods = ev.getModifiers() & mask;        if (mods == 0) {            // Left button clicked        }        else {            // Right button clicked        }    }}

Note that this code does not distinguish between the right and center buttons on a three button mouse, but it could be extended to do so.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist