1
vote
1answer
32 views

JTree valueChanged event gets called before focusLost of another component on clicking a node

I have a JTree where each node of the tree represents some user data. The data is editable and is stored in a file/db. There are a bunch of JTextField that lets you edit/update the user data for the ...
0
votes
0answers
33 views

requestFocus() not working with show() method

I'm making a game where the program has to show one panel, and from that panel show the previous panel, and then show the first panel again. To make things simpler, let's say we have PanelA and PanelB ...
0
votes
1answer
43 views

KeyListener wont focus

I'm new to Java so please forgive me asking for help, but after 4 hours of searching for a solution I'm really getting desperate. I'm currently setting up a game and want to implement key controls. I ...
0
votes
1answer
46 views

Transfer cursor from one JTextField to another on Enter press?

I have one JTextField called Name and one JTextArea called Address. My requirement is when user has entered name in the JTextFieldand pressed enter key the cursor should go to the next text area which ...
0
votes
1answer
41 views

jTextFields requesting focus (if empty after lostFocus) not working

I have 2 jTextFields and both have listeners for a lostFocus event, if the first textfield lost focus and is empty I want it to regain focus,and almost the same for the second field. I tried this: ...
0
votes
0answers
50 views

Problems with KeyListener and CardLayout, only works the first

I've several JPanels with different Key Listeners in the same CardLayout, but when I change the visible panel, the KeyListener of the next doesn't work. I don't know why, because all my panels are ...
1
vote
3answers
67 views

Best practice for setting focus to a Swing control in a JPanel

One school of thought says to add a window listener and set focus when the windowOpened event fires: addWindowListener(new WindowAdapter(){ public void windowOpened( WindowEvent e){ ...
0
votes
1answer
33 views

Focusing in different JPanels? (java)

Quick question, I have 3 JPanels, one has a keylistener and it draw my game graphics, and you can alter it by moving your character around, etc. and I have a second JPanel which is just a JTextArea, ...
1
vote
1answer
124 views

Unable to gain focus on JTextField used in JDialog for the second time on linux server

I am using a JDialog with 2 JTextfields and JButtons in it. When Jdialog opens for the first time I have a cursor on my first textfield. Now if I click somewhere outside Jdialog and then try clicking ...
0
votes
2answers
100 views

Lose Focus on JTextField when clicking on the panel

I want to lose the focus on a JTextField when the user is clicking on the main panel. setFocusable(true) doens't work for me. If I am clicking on the main panel, the JTextField has still the focus ...
0
votes
0answers
87 views

JSpinner does not transfer focus when pressing Enter

The code bellow was supposed to transfer the focus to the next control after hitting the Enter key at anytime, the event fires but .transferFocus is not transfering the focus, what could be wrong? ...
1
vote
1answer
70 views

How to extend JTextField to generate a defined response to focusgain

I suspect this is a pretty trivial question. I wish to create a component MyTextField which extends JTextField; The component should respond to gaining focus by changing color and respond to losing ...
0
votes
2answers
64 views

Focus on component when a panel is loaded

I have a frame, where i load a panel into. It works fine, but nothing has focus when it loads. Pressing tab doesn't help. I have to use the mouse to press a textfield. I've tried: ...
0
votes
3answers
49 views

JButton getting focused before a JTextField

As you can see, the passwordField is positioned before jButton1 in the navigator, however, when the usernameField is focused, and I press the TAB key, the second element being focused is the ...
0
votes
1answer
45 views

Detecting change of focus on jpanel

I have a JTabbedPane. On this component are four JPanels. On each of those panels there is a scrollPanel. Finally, on each scrollPanel is another JPanel. I need to keep track of which of these final ...
2
votes
1answer
175 views

swing focus issue, lost focus, focusgain not invoked

I have a complex and heavy swing client application which contains many modal compponents, jdialogs, internal frames etc. on some cases, a problem occurs and it is impossible to focus on swing ...
3
votes
1answer
81 views

Focusing a JTextArea in a JTabbedPane

I'm programming a chat client in Java, where I'd like to have one single JDialog for all open chats. So I decided to work with a JTabbedPane where a tab represents a single chat. I put a JPanel into ...
2
votes
2answers
164 views

switching JTextFields by pressing Enter key

I have created number of text fields and I'm wonder how can I switch the focus between the fields by pressing the enter key. In addition, Can I control the Target field ? for example can I defined ...
1
vote
1answer
76 views

Some components aren't responsive to events

My Event Controller class isn't receiving events from the JColorChooser whenever its chosen color changes, nor is it receiving KeyEvents from the JComponent (The one I'm using to draw the star into). ...
0
votes
1answer
66 views

Stop newly created dialog from taking focus

I'm trying to have Java Swing dialog be created but I don't want to have the dialog to take focus away from whatever is currently focused. So for example, if you're editing a word doc and a different ...
2
votes
1answer
137 views

Combining 'Excel-like' behavior and updating the model when focus leaves my JTable

I had a request for JTable functionality that would allow data entry more like in Excel. If the user types in a cell, the previous value is replaced by the new value and one can navigate between rows ...
5
votes
4answers
339 views

Auto-focus on a jButton on a jpanel

I have a JPanel loaded on a JFrame. The JPanel contains 4 JButtons. The thing I am trying to do is to get the focus automatically on the 1st jbutton so that I can traverse between the JButtons with ...
2
votes
2answers
230 views

Blocking Swing input without using modal dialog

I want to block input to a window, but still be able to move it. If there was a modal dialog type allowing the window that spawned it to move, then I would be happy. Say I have a window that opens ...
2
votes
2answers
206 views

Java - how do I gain focus on JTextArea when selecting a new JTabbedPane

I have a swing GUI with multiple JTabbedPanes; each tab contains two JButtons at the top, then a JTextArea (for user input), and a JTextField at the bottom for a result. My problem is that I can't ...
0
votes
2answers
54 views

Mantaining focus in application even when it have subwindows

I need to implement a routine that ensure that the application will never lose the focus for others applications (however when it is minimized I shouldn't force it come back). So I decided to ...
7
votes
2answers
453 views

KeyPressed and mousePressed Event in an unfocused Component

What are several ways of detecting a key stroke without the need of focusing on the component that the event was implemented? Here's my idea on this: Even without focusing on myComponent, upon ...
1
vote
0answers
185 views

Java listen key events without being in focus

i searched all over stackoverflow and found no good/complete solution to my problem. All i want is that my java app should stay minimized, but still read system key events. a smallest COMPLETE ...
1
vote
0answers
173 views

Java Change Focus Traversal

In my Java application I have changed the default FORWARD_TRAVERSAL_KEYS to be done by ENTER, using the following code: Set<AWTKeyStroke> ftk = new ...
4
votes
1answer
159 views

Modifying a JFrame from within a Listener [duplicate]

Possible Duplicate: How to call setUndecorated() after a frame is made visible? How should I make a JFrame be undecorated when unfocused and decorated when focused? Here's my code: ...
0
votes
2answers
174 views

JTextField focus is not getting on the first click of Tab button

i've done an application with two JTextField with the autocomplete feature the application works fine but On clicking the Tab Button while the mouse pointer is on the first TextField the Mouse focus ...
0
votes
0answers
189 views

Java Applet Key (apparently) loses focus after firing

I have a Java Applet that works totally fine in eclipse, but when I export it to a jar-file, embed it in a HTML and open it with Opera or Firefox, the Key Listener does not work properly. I've tried ...
2
votes
2answers
234 views

what causes component requestFocus to fail sometimes?

I have a jDialog which contains some fields that need to get focused. I am seeing some strange behaviour where sometimes the focusing fails, and if you hit the tab key you can see the focus change in ...
0
votes
1answer
291 views

Utilising both a mouse listener and key listener in Java

I have a program which moves a an object to the left or to the right. I want to utilise it so that it works with both a mouse listener and a key listener. With both the left arrow key and a left mouse ...
2
votes
1answer
130 views

JApplet can't get focus when run from browser

I have some simple code where I'm trying to get keyboard events into a Java applet. The code runs just fine when being run with appletviewer, but when I'm loading it from a browser (tried both Chrome ...
2
votes
0answers
100 views

java popup menu has no focus with VK_CONTEXTMENU

I am incorporating a popup menu in my java application. I have added a mouse listener to show it up and I have also registed a keyboard action with the key event KeyEvent.VK_CONTEXT_MENU, that brings ...
0
votes
0answers
123 views

Prevent jLabel from losing focus when clicking on a nested jcombobox

I am making an app that will have some 'rectangles' (myLabel) with a text (rectangleName). Whenever I click on that rectangle, a combobox (nameComboBox) is shown to change the name of it. So this is ...
0
votes
1answer
110 views

Giving a button mouse click focus

Hopefully I can explain this well enough to make sense. My cousin is disabled and used a single button to control applications on the computer. All these applications are custom made and they rely ...
2
votes
2answers
433 views

JButton & Action & KeyBinding

I have created a JButton class that recieving Action, the JButton class includes keystrokes & mouse listener so i can use the same class in multiple frames as needed. My problems is that: JButton ...
1
vote
3answers
71 views

Select text by default in swing

There is any way to automatically by default select text in JTextField and JTextArea when focusGained event occurs?
0
votes
1answer
117 views

My internal frames don't earn focus after opening… (Java)

I have a menu with items that open internal frames, but every time I need to click twice in the frame. One time to give focus to the Int.frame and the second time to actually do something (give focus ...
0
votes
1answer
259 views

Keep focus on Java game for Key Listener

I'm working on Java game development, and an issue I'm running into is implementing key strokes. The code I have properly implements the KeyListeners, but as soon as I click on the game window or ...
0
votes
1answer
166 views

Java Swing form and cannot type text in newly added jtextfield

I was asked to change a previously made java swing form to add a JTextField which would respond to keystrokes. I added the text field to the form, tried to force focus on it with no success and even ...
0
votes
1answer
219 views

Set Focus on a JDateChooser

Is it possible to change the focus from a jFormattedTextField to a JDateChooser? I've tried the following: jFormattedTextField.addActionListener(new ActionListener() { @Override ...
0
votes
0answers
90 views

Updating JList forces a window focus

I have a Java Swing app that I'm writing, that connects to my minecraft server and acts as administrative aid. It has a JList object in one of its panes that keeps track of which players are online. ...
0
votes
0answers
90 views

KeyEvent not being sent to the expected Component after a requestFocusInWindow

I use a java.util.Robot to send key events to some components of my Swing App. I've got the following issue: to send an event to an unfocused component, I call requestFocusInWindow (from the AWT ...
0
votes
1answer
301 views

jTextfield with input from jList

I have a jTextfield for which I have to take input from jList. On FocusGained property,jList should appear exactly below jTextfield and jList should disappear on FocusLost property. I have done some ...
3
votes
2answers
150 views

Java Swing default focus on frame

I am learning java and Swing right now and trying to develop simple programms for education purposes. So here is the question. I have gridlayout and fields on my frame with default text ...
0
votes
2answers
194 views

Change size of JButton and text of a label on focus Gain and lost event of JButton

I want to increase and decrease the size of JButton on its focus gain and lost event. Simultaneously I want to change the JLabel with the text of focussed JButton. If I'm not changing the JLabel ...
0
votes
1answer
158 views

modifying focus traversal in a JTree

I have a JTree that's working fine, with a mixture of leaf and non-leaf nodes. When I give the tree root focus, the down arrow and uparrow keys do the obvious thing. The small change I want to make is ...
1
vote
1answer
219 views

JTable not losing focus on ENTER and TAB

table.changeSelection(table.getRowCount()-1, 3, false, false); after setting the cell selection like above, the cell is selected and if i enter the value in to the cell, the cell goes to editing ...

1 2 3 4