0
votes
1answer
16 views

Java with multiple JPopup

I am trying to build some very basic interactive GUI for a chess-game. The idea is to help players by allowing them to get "help" by allowing them to click on each chess-piece and see suggestions ...
0
votes
2answers
39 views

Java Swing Scrolling By Dragging the Mouse

I am trying to create a hand scroller that will scroll as you drag your mouse across a JPanel. So far I cannot get the view to change. Here is my code: import java.awt.*; import java.awt.event.*; ...
0
votes
1answer
33 views

Getting individual MousePoint related to cell of JTable

I have JTable and right now I get the Point of a clicked point in a cell like this: table.addMouseListener(new MouseAdapter() { public void mouseReleased(MouseEvent e) { JTable target = ...
0
votes
1answer
60 views

JTree selection on mouse release

I'm using a JTree to generate some tab for my application. Every time I select a node on right panel I load a new page. I'd like to generate the node selection event on mouse release.
1
vote
1answer
74 views

JButton in a JTabbedPane

I'm writing an interactive program with JTabbedPane and JButton. So far, I've been able to make it so when the "Reserve a Flight" tab is clicked, this panel shows up: I want an image that will ...
1
vote
1answer
33 views

Interactable Image

I already have a program that uses this picture, but how would I go about programming it so that a user could click on each individual blue square and receive a response? I have already tried ...
1
vote
2answers
56 views

Is there a way to show a popup like a “cloud” when you passed your mouse over a textfield in Java?

I'm looking for a way to display a baloon tip when i mouse-over a textfield in Java, for example to guide the user in the way to put some specific data: ID: 0-0000-000 or something like that... Is ...
1
vote
2answers
45 views

How can I avoid int-floor bias while mouse-targeting at small speeds?

I have a simple algorithm for an object to follow the mouse pointer at a given max speed in Java. The crux of the algorithm is this: // Set up displacement trackers for later. // (These are used in ...
12
votes
1answer
164 views

Why Are all Middle Clicks in Java Reported as Having the Alt Modifier?

Why do the MouseEvents in Java share modifiers between keys and mouse buttons? Consider, the simple code below: public static void main(String[] args) { JFrame frame = new JFrame(); ...
0
votes
1answer
99 views

Visual marker of mouse clicks using Java

I am creating a screen recorder software using Java. Almost 80% work has been completed. Now I need to create a visual marker of mouse clicks using Java. So that I can see in the playback video that ...
-6
votes
3answers
108 views

Mouse event handling in Swing

I was wondering, how does a Swing component know where the mouse is and when it is clicked, and how could I use that in my own class, without having to add a new mouse listener every time i want to ...
0
votes
2answers
48 views

Error with addMouseListener

When I compile the following code I get the error: The method addMouseListener(Player) is undefined for the type Player Code: import java.awt.event.MouseEvent; import ...
-1
votes
1answer
117 views

JTabbedPane won't change panel on mouseclick

I have a Main class that stores a TabbedComponent(extending JTabbedPane) as a variable. Another class (ToolbarComponent(extending JMenuBar) is also stored as a variable within my main class. Upon a ...
0
votes
2answers
115 views

I want to create an invisible clickable object over an image in Java

So I'm creating a game in Java in which the user clicks on an image that's different from the rest. I've already got the images for the level created, but I just want to make it so that if the user ...
-1
votes
1answer
189 views

Java - Resizing a Drawn Object

Let's say that I have drawn a square on the screen using the following code: I want that if the user clicks on the shape, a border with four small boxes (north, south, east and west) is drawn on the ...
3
votes
3answers
123 views

Program not executing function when mouse is clicked

When the mouse is left-clicked, the colors horizontally adjacent to each other are supposed to swap and when right-clicked, the colors vertically adjacent are supposed to swap. Nothing is happening ...
0
votes
2answers
131 views

Creating my own event for right button click

I have some component on the frame and I need it to respond just on right button click. I have to use my own event. Should I extend MouseEvent? How can I separate right button click from others in my ...
3
votes
5answers
332 views

Java Swing - mouseMoved event is fired slowly

Currently I am experiencing issues with the mouseMoved event in Java - Swing. Briefly, I have got a JPanel and I have attached MouseMotionListener to it, in order to hide or show JscrollPane on the ...
1
vote
4answers
731 views

How to get location of a mouse click relative to a swing window

Say I'm in a Java Swing JFrame. I click my mouse. I want to get the location of the mouse click within the GUI. In java, the line int mouseX = MouseInfo.getPointerInfo().getLocation.x; Seems to ...
2
votes
2answers
424 views

Java drag image better & Overlapping image detection

I have two questions for you: [SOLVED] - In java, I have the ability to move around an image using the mouse listeners. Instead of moving the image exactly where my pointer is, how do I make it so ...
0
votes
1answer
125 views

Java: I'd like a JLabel to respond to mouse events only sometimes. Is there a way to hide a mouse listener until wanted?

I see there are methods already built for adding and removing mouse listeners, I suppose I could add them and remove them as needed. I just wasn't sure if there was a better way. Having my JLabel ...
1
vote
1answer
82 views

Mouse positon updating incorrectly

I'm trying to get the mouse position and light up a button when the curser is over it. However the mouse position isn't updating right. I think the y position is messed up because currently if i am ...
1
vote
1answer
579 views

How to change icon on mouse over?

i got icon for example white hint.setIcon(newjavax.swing.ImageIcon(getClass().getResource ("/mastermaind/resources/white.png"))); how can i make when you dragging the mouse over icon to change icon ...
-1
votes
1answer
433 views

Java: Waiting for mouse input (click)

I am making some sort of turn-based battle system in a JFrame where the player clicks a button when it's his turn. The problem is: how can the program wait for a mouse click on the button? It goes ...
0
votes
1answer
774 views

Find the mouse position in a JFrame

I'm stuck with the following. I'm programming a game and I need to get the mouse pointer location inside the JFrame, I don't need to get the pointer location on the screen, but just in the JFrame. ...
0
votes
2answers
58 views

Mouse returns to home position when i drag

I have created a JLabel lab1. Added it to a panel and added mousemotionlistener to the label lab1.addMouseMotionListener(new InfoListener()); Here is the mouseDragged code public void ...
-1
votes
1answer
247 views

file path display Instead of image in jtable

I use the following code for display image in display at mouse clicked event.when i use the following code it will show the path of the image in particular cell.how to display the image in that ...
13
votes
3answers
1k views

Which mouse button is the middle one?

I'm currently developing a program in Java where a certain event must be triggered only when the user clicks with both the left and the right click on a button. Since it is a little unconventional, I ...
2
votes
1answer
1k views

Java Swing mouseDragged callback speed

I have a question regarding the callback speed of the mouseDragged message of the MouseMotionListener in Java Swing. This post is sort of related but it's not entirely the same so I started a question ...
2
votes
3answers
632 views

JList MouseMoved and MousePressed

I've extended a JList to provide two separate functionalities, toolTipText for items, and right-click options. Both work separately, but when I try to use them together, the MouseMoved events aren't ...
0
votes
1answer
932 views

mouse pressed->drag->released. in java

Excuse me: I just can't know how to link these successive operation? Mouse pressed and then drag then release. If an user doesn't do this operation some action won't happen... Should I add code as ...
2
votes
3answers
2k views

GridLayout + Mouse Listener

Okay guys I have a problem, I dont know how know which cell was clicked on a grid layout, is there any function? I have grid layout on container, for 10 rows and 10 columns, and what I want is a ...
2
votes
1answer
103 views

The coordinate of mouse?

public class mouse extends JFrame { private int x, y; private JLabel label; public mouse() { JPanel panel = new JPanel(); addMouseMotionListener(new MouseMotion()); ...
1
vote
2answers
2k views

Mouse coordinates relative to Frame

I'm trying to draw Polygons and would like to be able to click on my Frame to get MouseCoordinates so as to turn a mental Image into x/y values more quickly. I'm using System.out.println("("+ ...
4
votes
3answers
592 views

How can I use the back and forward mouse buttons in a Swing application?

The question is pretty simple. I couldn't find many links regarding this issue, and the ones I found didn't seemed to avoid the real question. My application must handle the mouse pressed/released ...
1
vote
3answers
671 views

Simulate right click

I am wondering how to make my Java program simulate a right click. So imagine your mouse cannot right click anymore. How do I make Java simulate the right click? Im planning to have a button that u ...
6
votes
1answer
2k views

How to handle events from keyboard and mouse in full screen exclusive mode in java?

In passive rendering mode one can use KeyListener and ActionListener interfaces to handle events from user. What is the correct way of event handling in full screen mode? Please extend this ...
-1
votes
1answer
3k views

java : right click event

on TableHeader, I try to make a right click with the mouse as follow : tableHeader.click(MouseEvent.BUTTON3); but this is not working, have you any idea/suggestion ? thanks,
-1
votes
1answer
551 views

Swing mouse drag identification problem?

How do I identify mouse dragged in downward direction? Suppose I dragged down, I need code such as this: int graphy = e.getY(); System.out.println("this is y axises " + graphy); ...
5
votes
2answers
605 views

Changing the cursor for hovering over hyperlinks when JEditor.setEditable() is called

I have a JTextPane containing hyperlinks. When it's editable, hyperlinks aren't clickable, and the cursor does not change state when hovering over them (e.g. to a hand). When it is not editable, ...
2
votes
1answer
305 views

Redirecting Swing mouse events

I am trying to make it possible to display and interact with Java Swing components on top of a Java3D canvas. I am displaying the components by painting a transparent JPanel to a buffered image, and ...
2
votes
1answer
1k views

Keep mouse pointer within frame/window

I want to prevent the mouse from being moved out of the window. I've seen it done before on Minecraft, where you have to press esc to release the mouse from the window.
8
votes
1answer
655 views

getting mouse location without a listener

In some situations I need to place a JFrame right where the mouse cursor is located. Do I really need a mouse listener to track mouse move events, or I can just read current mouse position somehow?
2
votes
2answers
319 views

Stopping a Swing timer until the user clicks

I'm writing a card game. Right now I'm having problems with mouse handling. Below is the timer that handles the game flow of drawing and discarding cards. final Timer timer = new Timer(1000, ...
1
vote
2answers
349 views

How to detect more than 3 mouse buttons in Java (Swing)?

Additionally to the regular 3 buttons my mouse has a backward & forward button - how can I detect in Java if one of these two buttons is pressed?
12
votes
2answers
15k views

Java Mouse Event Right Click

On my three button mouse MouseEvent.BUTTON2= Middle Click and MouseEvent.BUTTON3 = Right Click. Is this the case on a two button mouse? Thanks
4
votes
4answers
3k views

How to detect mouse moving while left button down?

I would like to detect mouse moving, while the left button is pressed. I simply create a drawing application. I can detect the mouse move without any mouse pressed. But I want to detect WITH left ...
1
vote
2answers
1k views

Java - custom cursor is different in different operating systems

I create custom cursor with bottom code: Toolkit toolkit = Toolkit.getDefaultToolkit(); Image image = ...
2
votes
3answers
3k views

Dragging JPanel

I've got a problem when trying to drag a JPanel. If I implement it purely in MouseDragged as: public void mouseDragged(MouseEvent me) { me.getSource().setLocation(me.getX(), me.getY()); } I get ...
2
votes
1answer
364 views

Java swing: how to know the state of the mouse from outside the component receiving the event?

I want to know the state of my mouse buttons (pressed or not), from outside the target component. I don't want to use a glasspane to intercept events. The MouseInfo class can give me the location of ...

1 2