1
vote
1answer
50 views

Why do I need to hover my mouse over a button for it to show up?

I got a issue here, my buttons were working fine until I added a background image, when I try to put my mouse over the buttons and textfield for them to show. My labels also don't work either ...
1
vote
1answer
44 views

Paint a java.awt.Cursor on a java.awt.Graphics

Is it possible to get hold of a standard AWT Cursor in the form of a bitmap image (e.g. BufferedImage) or anything paintable on a Graphics2D? For example, the text cursor new ...
1
vote
3answers
92 views

Own ActionListener with anonymous implementation? (busy cursor)

ActionListeners (with anonymous implementation) are usally added like: someobject.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent ae){ ... } }); But ...
2
votes
2answers
161 views

Larger cursor in Java

Is there a possibility to create a larger cursor (by the method createCustomCursor()) than the predefined 32x32 in Windows (e.g. 64x64 or even more)? Toolkit toolkit = Toolkit.getDefaultToolkit(); ...
1
vote
1answer
174 views

want to change the cursor on mouse move on JTree listed elements

I want to change the cursor to hand cursor on mouse move over JTree component when the cursor is on listed elements only, not for the whole component. The below code is for Jlist Component. I want ...
1
vote
2answers
117 views

Right aligned cursor not showing through in a JTextPane component

I have a JTextPane sandwiched between 2 JLabels - is there a known reason why the cursor shows through if i have it on the left most part of the textpane but not on the right? Here is the code to ...
0
votes
0answers
99 views

How can I change the cursor across an entire java application?

I am creating a custom cursor in my java application using the following code: this.setCursor(Toolkit.getDefaultToolkit().createCustomCursor( ...
0
votes
1answer
140 views

JFormattedTextField's is add characters on focus

I have a JFormattedTextField being initialized with the code JFormattedTextField f = new JFormattedTextField(createFormatter()); f.setValue(null); f.setColumns(1); f.setEditable(true); ...
0
votes
1answer
704 views

set text cursor in text field, Java

I have two text fields, and text_field2 text_fiel1. when the program is run directly to the text cursor automatically text_field1. I want to ask how can I make the text cursor when the program is run ...
4
votes
4answers
387 views

Implementing Cursor in Java with some Transparency

I have a 35x40 px. png image I want to use as a custom cursor in a Swing application. The image has a glow so contains alpha transparency values. Problem is when I attempt to use the conventional ...
0
votes
2answers
164 views

getCursor() doesn't work in my actionListener

So I am just putting the last details of my assignment in and I noticed the getCursor(); works when I run my program, but later in the program (in the two actionListeners) it doesn't teturn to the ...
2
votes
1answer
168 views

Modal dialog prevents correct cursor state

I have problem with displaying modal dialog and busy cursor at the same time. I display a modal dialog and set the cursor of the main frame on "waiting state". Everything is fine, except that if the ...
3
votes
2answers
380 views

Change Text Cursor Size in JTextPane

I'm making a simple text editor, and I have a JTextPane and changed the spacing to 1.5f. The only problem is that the "Text Cursor" spans all the pixels from the current line to the next one, ...
0
votes
0answers
62 views

How to hide the mouse cursor in java [duplicate]

Possible Duplicate: How to hide cursor in a Swing application? I want to hide the cursor in JFrame. Can anyone tell me how to do this?
1
vote
2answers
544 views

Java annotation to execute some code before and after method

I'm writing an swing app and i'd like to have 'wait' cursor when some methods are executed. We can do it this way: public void someMethod() { ...
4
votes
2answers
210 views

Change cursor for all buttons on Swing app

I have a Swing app with a main frame and some other forms loaded inside it. I Need to implement a general method to set the hand cursor for all buttons on any form. This is similar of what we do with ...
0
votes
1answer
89 views

JTextPane - Make Caret Normal Size?

So I am trying to make the text in a JTextPane double spaced. Here's my code: MutableAttributeSet attrs = editor.getInputAttributes(); StyleConstants.setLineSpacing(attrs, 2); ...
0
votes
2answers
271 views

How to simulate keyboard input (including cursor movement) by programmatically generating KeyEvents

I am trying to simulate keyboard input by programmatically generating KeyEvent objects and pumping them to the event queue. This works fine except that when characters are being entered into a ...
1
vote
1answer
145 views

Change my mouse cursor to the polygon i click on in java

In my program in java, I have drawn these polygons in my JFrame and I want my mouse cursor to change to the one that I click on it, so by clicking again, the polygon will be drawn in the point of my ...
2
votes
1answer
92 views

JOptionPane cursor

I have some problem with the cursor when using JOprionPane. I set a cursor to the pharent frame, then show a dialog using this: Object[] possibilities = {"ham", "spam", "yam"}; String s = (String) ...
0
votes
2answers
237 views

Java - How to change cursor without Swing Component?

I have a Java application that run as a background service, i.e. no GUI. But when starting it, say through a batch script, I have some preparation works to be done at the very beginning of my program ...
2
votes
3answers
339 views

How to make a JLable clickable?

I want to customize a JLable to make him clickable, i'm not talking about adding an Action Listener because i already have, i'm talking about changing the mouse cursor's reaction when the JLabel gain ...
2
votes
1answer
171 views

How to set a cursor for Header of JTable?

I used setCursor() method to set a cursor for JTable.But that cursor is applying only for rows (datapart) of the table.How can I set cursor for Header of the same table,so that I can resize the column ...
4
votes
1answer
1k views

Select all text in editable JComboBox and set cursor position

public class CursorAtStartFocusListener extends FocusAdapter { @Override public void focusGained(java.awt.event.FocusEvent evt) { Object source = evt.getSource(); if (source instanceof ...
4
votes
3answers
650 views

Move cursor of JTextField or JComboBox to the start

I have a JTextField with some text. When I click text field the cursor moves to the end of field. I want the cursor to move to the start of the field when it becomes focused. I have the same problem ...
2
votes
1answer
649 views

JTable change mouse cursor

I have following method in my class which extends JTable: protected void setTableCursor(Cursor cursor) { // data gathering cursor = (cursor != null) ? cursor : Cursor.getDefaultCursor(); ...
1
vote
1answer
271 views

Java: custom cursor for Jscrollpane or Jsplitpane?

any way to set custom cursor from image for a jscrollpane in a jsplitpane panel? right now I get a custom icon that displays in the entire Jframe and I would like it limited to a specific ...
2
votes
3answers
2k views

Wait cursor and disable java application

I want to have the user press a button to kick off a background thread. While the thread is processing, I want two things to happen: 1) A WAIT_CURSOR should be displayed. 2) The application should ...
3
votes
2answers
2k views

Cursor icon does not change after trigerring setCursor method

There is a JTable in my application with resizable header columns. Normally when I move the cursor over table header for resizing, the cursor icon changes to resize arrow, like <-->. But things ...
0
votes
2answers
79 views

How to put the type cursor automatically in a JEditorPane?

After a card panel switch I would like to automatically put the type cursor in a JEditorPane located in my new displayed card. How can I do that?
2
votes
2answers
914 views

Keep cursor in TextArea when non-editable

I'm using java, and I'm trying to make a JTextArea that is non-editable but still has the cursor in the field. In other words, a Text Area that does not display characters typed by the user, but still ...
2
votes
3answers
363 views

How to detect when main thread freeze GUI in java?

I want to detect when some time consumption operations in main thread cause gui freeze. My target is to set and unset wait cursor automatically. thanks
2
votes
2answers
986 views

How to change the cursor image in Java AWT and/or Swing?

I'm making a simple graphics editor (i.e a paint program). I am not planning on anything fancy, but I do want my program to change the mouse cursor to something like a "+" or an "O" when it enters the ...
5
votes
1answer
531 views

JTreeTable DnD crazy blinking drop cursor

I am using a slightly modified version of the Sun's example JTreeTable backed by my own model. That would be the third example (bookmarks one at ...
3
votes
2answers
503 views

How to hide a popup window after some seconds if the cursor exits

I have a JDialog as a Popup which shows up for 3 seconds and dispose. It comes up at cursor position and has to dispose only if the cursor exits the popup. If the cursor entered the Popup the timer ...
2
votes
1answer
620 views

setting cursor to JTextfield

im trying to get the cursor to move to a textfield when a specific key is pressed like when you press tab. im trying to do this instead of just using tab because i want to implement other actions at ...
5
votes
2answers
609 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, ...
1
vote
2answers
1k views

Java change cursor

is there any way to change the cursor in Java at all, not just for one JComponent? I need this because I want the cursor to change, when your mouse leaves the JFrame, so there is no JComponent in the ...
5
votes
3answers
5k views

Java: column number and line number of cursor's current position

I want to know the column number and row number where the cursor in JTextArea. ie. in notepad when i m at first line than status bar shows Ln 1, Col 1. thanks in advance...
2
votes
3answers
1k views

Java SwingUtilities.invokeLater

.addActionListener(new ActionListener(){ public void actionPerformed (ActionEvent e){ try{ ta.append("Searching Initiated at: "+datetime()+"\n"); ...
4
votes
1answer
669 views

Java swing “working in background” mouse cursor

Is there a built in cursor that will show the "arrow plus hourglass" mouse pointer that is used when windows is working in the background, yet still allowing you to click on things? I know about ...
3
votes
1answer
424 views

Background activity cursor in Swing

how can I set the Cursor on a Component to a "background activity" cursor. Like the one in Windows with the arrow and the small hourglass. All I find ist the Cursor.WAIT_CURSOR, which is only an hour ...
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
2answers
874 views

Crosshairs in Java

I am making a game that needs a crosshair. I have been playing with the java.awt.cursor class and that is easy enough, but the problem is that I do not want the crosshairs to be able to leave the ...
0
votes
2answers
779 views

swing: setting cursor on JDialog

I have a JPanel inside a dialog. A MouseListener listens to mouse movements, and when the mouse is on a specific location, I call setCursor() on the panel to change the cursor. This all works well, ...
0
votes
2answers
670 views

removing mouse events/controls from swing components with glasspane

I have a client-server application and i am using swing in the client side. My swing client has one main window (jframe) and lots of panels, toolbars and menubar in it. I want to remove all client ...
19
votes
6answers
14k views

How to hide cursor in a Swing application?

Is there anyway to hide cursor other than using transparent gif image?
0
votes
1answer
361 views

Small dot trailing cursor in Swing application

There is a small dot that keeps trailing the cursor on a Swing application as I move the cursor about over the application frame. What is causing this?
4
votes
2answers
2k views

How to convert from a mouse position to a character position in a JEditorPane in Java Swing

I'm currently trying to solve a problem where I need to find the position in a piece of text in a JEditorPane based on where the mouse was clicked. Basically, when the user right-clicks over a word ...