Java AWT and Swing listener interface for receiving window events.

learn more… | top users | synonyms

1
vote
2answers
44 views

WindowClosing method

I have multiple custom dialogs and I wanted an easy way to specify the closing operation. To start with I was using the anonymous inner windowListener class and specifying the closing method that way ...
0
votes
0answers
27 views

Read the value of a JSlider

How to read the value of a JSlider? I am using sliders in my program, something I have not used before but I am struggling to display the changes made to it! The problem is, the JLabel displays the ...
0
votes
1answer
17 views

Is it valid to instantiate windowListener interface?

WindowListener is an interface? But how instantiation is valid as per the following? We can not instantiate interface right? WindowListener l1=new WindowListener() { public void ...
-2
votes
1answer
42 views

Unable to detect when user closes (Xs) JFrame [duplicate]

For moderators: Please see the comments of this answer: stackoverflow.com/a/16388697/1574975 I'm trying to detect when a user is done using a client program with a GUI so that when they close the ...
1
vote
3answers
52 views

Run function on JFrame close

void terminate() {} protected JFrame frame = new JFrame(); How can I get frame to run the terminate function when I press the close button? Edit: I tried to run this, but for some reason it doesn't ...
0
votes
4answers
62 views

Ask user if wants to quit via JOptionPane

I'm using this code to confirm the user whether wants to quit or not when he CLICKS THE RED CROSS CLOSE BUTTON OF JFrame (right upper corner) Object[] options = {"Quit, My Computing Fellow", "No, I ...
0
votes
1answer
55 views

Java Swing adding Action Listener for EXIT_ON_CLOSE

I have a simple GUI: public class MyGUI extends JFrame{ public MyGUI(){ run(); } void run(){ setSize(100, 100); setVisible(true); ...
1
vote
1answer
37 views

How to handle JDialog opened after setVisible(false)?

This is the scenario: add windowOpened() handler to new instance of JDialog show dialog for the first time using jdialog.setVisible(true) as expected: windowOpened() handler triggered ...
-1
votes
1answer
25 views

Why Frme windowClosing with ConfirmDialog closes with both cases(OK & Cancel)?

here is my code : addWindowListener(new WindowAdapter() { @Override public void windowClosing(WindowEvent e) { int a = ...
1
vote
3answers
61 views

How do I prevent a window from closing?

first sorry for my bad english. Hi, i'm trying to use a confirmDialog with a YES_NO_OPTION. what i want is that when i close a frame a confimDialog will be displayed asking me if want to close. if i ...
0
votes
2answers
45 views

Why does WindowClosing handler not execute Background Tasks before exiting program?

mainFrame().addWindowListener(new java.awt.event.WindowAdapter() { @Override public void windowClosing(java.awt.event.WindowEvent evt) { retrieveItems(); ...
0
votes
2answers
117 views

Calling function on windows close

Using Java: I have a GUI built using the netbeans GUI builder. The GUI class was created by extending a jFrame public class ArduinoGUI extends javax.swing.JFrame and the GUI displayed using: ...
2
votes
1answer
113 views

javax.swing.Timer inside JDialog does not stop when closing JDialog

I have a small application with a main JFrame opening a JDialog as modal. Inside this JDialog I start a javax.swing.Timer that is supposed to stop if the JDialog closes. public Tasks() { ...
1
vote
2answers
216 views

Popup for JFrame close button

i am doing some basic Java Swing application (beginner level) . what i have to do is when i press close button on JFrame to colse the window i want a JOptionPane Confirm Dialog instead of ...
1
vote
1answer
125 views

JDialog WindowOpened event is fired just once

I'm trying to get the WindowOpened event from JDialog, but it is fired just once. Why windowClosing works correctly and WindowOpened just once? Is there any way to fire the open event for JDialog ...
0
votes
0answers
85 views

how to call a method before exit in jframe with java

i tried like they answered in this question How can save some Objects, directly after the User has closed the Applications JFrame, but before the Program exits? but the frame won't close i wrote the ...
0
votes
1answer
52 views

How to cancel exit from JFrame? [duplicate]

Possible Duplicate: Java: How to cancel application exit I've set a listener for closing JFrame: addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) { ...
1
vote
3answers
241 views

How to listen for close in a JPanel

I am working with some strange legacy code. They have a custom object which implements a JPanel. This JPanel object is a secondary popup screen within the main application. The issue I'm having is to ...
1
vote
2answers
185 views

Execute actions in main() after closing JFrame

I am sorry, for I believe that this question has been asked already, but none of the answers have actually helped me out. I have a class with gui, it contains a JFrame with several textfields and ...
2
votes
1answer
117 views

How would I execute a function before you close JFrame [duplicate]

Possible Duplicate: Call a method when application closes I want to call a method just before I close my java application using setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); I have tried ...
0
votes
2answers
236 views

How to stop program running infinite loop on close GUI (java)

I have a simple program for server/client communication using sockets. The server class contains run() method, this method has infinite loop to wait for socket acceptance. Any way, I wrote a code in ...
0
votes
1answer
244 views

Adding a new WindowListener to a JFrame

mainFrame.addWindowListener(new WindowListener() { @Override public void windowClosing(WindowEvent e) { if (JOptionPane.showConfirmDialog(mainFrame, "Are you sure you ...
1
vote
2answers
315 views

awt window not closing when close button is clicked

I implemented a sample class for a Virtual KeyBoard and ran this VirtualKeyboardTest.The keyboard appears but the main problem is that it is not closing properly when the x button is clicked.How can i ...
0
votes
2answers
197 views

Can't close frame in java?

Hi guys I am writing a little program in java and it's my first try at anything with an interface/picture. It makes the frame for me but when I click the close button X, it doesn't close it just ...
2
votes
5answers
199 views

Do something before window closes after user presses [x]

I'm building an instant messenger application.I need to add an action event on the default closing button of the Swing JFrame(The little "x"). When the client presses the X button,I need to tell the ...
1
vote
1answer
120 views

JDialogs with translucency disappear when the main window is minimized

There appears to be a bug with the window translucency functionality in Java 7 (I believe the problem existed in Java 6 as well). If I open a translucent window and then minimize its parent window, ...
3
votes
1answer
100 views

Why does my application terminate if user closes separate window?

I have a simple GUI program that creates a new window (which contains a JTable) at some point in time. If the user closes the JTable, the main application closes as well. How do I prevent this? Would ...
1
vote
3answers
896 views

setDefaultCloseOperation to show a JFrame instead

I am making a word processor application in order to practise Java and I would like it so that when the user attempts to close the appliction, a JFrame will come up asking to save changes. I was ...
0
votes
1answer
91 views

Can I add a WindowListener to a MenuItem?

I have a program written in AWT, so I am using Frame (Not JFrame/Swing). I am using MenuItem objects to do some operations through ActionListeners. However, on my last MenuItem, I want to use a ...
2
votes
1answer
182 views

Easiest way to implement minimize function using custom icon in JDialog

I want to implement minimize function for JDialog , using custom minimize graphic icon. I have google it but not found any satisfactory solution. I found some how close solution on this page but its ...
6
votes
3answers
243 views

How to prevent JFrame from closing

I have a Java GUI application from which another java GUI application is invoked using reflection and loading. It works fine the only problem faced is, on closing the JFrame of invoked application ...
2
votes
1answer
405 views

JAVA AWT how can I close dialog by pressing a button

I have an AWT modal dialog public class d extends java.awt.Dialog {... On the dialog frame, using netbeans gui designer I put dialog then panel then button. I am trying to close the dialog by ...
2
votes
2answers
2k views

How to detect JFrame window minimize and maximize events?

Is there a way to an event listener to a JFrame object to detect when the user clicks the window maximize or minimize buttons? Am using the JFrame object as follows: JFrame frame = new ...
0
votes
2answers
408 views

How can I set an action command to window closing event?

How can I set an action command to closing event of a custom frame class which is a subclass of javax.swing.JFrame? This is the current code: this.addWindowListener(new WindowAdapter() { @Override ...
-3
votes
3answers
1k views

Custom design for Close/Minimize buttons on JFrame

I would like to apply my own close and minimize buttons. Is there any way to change the JFrame design?
1
vote
2answers
961 views

Terminate running threads on JFrame close

How do I invoke extra operations when the user closes a JFrame window? I have to stop existing threads. As I understand it, setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); causes the frame to be ...
1
vote
1answer
226 views

Close current window and pop out previous (windowListener)

I have a server/client app. When the system is started a login window pops out. When Connect clicked - another JFrame (the Game frame) pops out. What I want is: when the 'X' on the Game frame is ...
7
votes
1answer
191 views

AbstractAction as WindowListener

I'm trying to separate function from state in my GUI application by the use of Action objects. I've been successful in using these to create menu items and buttons that have the same functionality. ...
5
votes
2answers
2k views

JFrame On Close Operation

I was wondering if there is a way, by clicking on the "X", to let the program perform some code before closing the JFrame. The setDefaultCloseOperation() method takes only an integer. ...
4
votes
2answers
379 views

`WindowListener` acting up, perpetual firing

I have an application with an abstract class that extends JDialog. The class as an abstract void onClose(), and, in the class's constructor, the following code is added: addWindowListener(new ...
2
votes
2answers
238 views

Calling windowClosed on an EXIT_ON_CLOSE JFrame

I have a small problem. My Java application holds some native resources. I want to free those resources just before I exit the application. Therefore I wrote a WindowListener that frees those ...
1
vote
1answer
327 views

Make JButton Close a Window But Run Code In WindowClosing(WindowsEvent e) Before Closing

I have to save the state of the program in a xml when the user clicks the Close Button or another JButton which says Exit on it. I have it so it runs using a WindowListener when the Window is closing ...
2
votes
1answer
107 views

How can save some Objects, directly after the User has closed the Applications JFrame, but before the Program exits?

Good day! I'm developping a small Java Application with NetBeans IDE that extends JFrame. I implemented several ways to close the App, for example pressing Ctrl-Q and pressing the X of the JFrame. ...
1
vote
4answers
3k views

How to override windowsClosing event in JFrame

i'm developing a JFrame which has a button to show another JFrame. On the second JFrame i want to override WindowsClosing event to hide this frame but not close all the application. So i do like this: ...
1
vote
3answers
467 views

Java add ActionListener to special button

Is there a way to add/override the action event of THIS button ? I couldn't find anywhere how to acces this button and override it's action. In my case I need to do this because I need to save the ...
2
votes
1answer
1k views

No WindowEvent on closing a JDialog

I display a JDialog in a JFrame. This JDialog does nothing on dispose. I would like to catch the closing event and display a Popup but nothing happens. I cannot find the bug. Could you tell me where ...
2
votes
2answers
2k views

Java: Cancel Button does not close the window for JFrame

I want the window to close when I press on Cancel button, but it's not working. Code: public class FirstClass{ private JFrame frame; private JButton btnCancel; public FirstClass() { frame = ...
2
votes
1answer
2k views

How do stop exit program when clicking the red cross in JFrame title bar

I have a simple java GUI application, which will prompt a user for a message like "Are you sure you want to quit?", before he quits the program. Though this only works when I use my Exit Program ...
0
votes
1answer
265 views

Java Swing: addWindowListener repeating

Hey all i have two JFrames one is my main login frame, user enters a username and password etc... Once logged in the user is moved to the main desktop program. Example: When a user loads the first ...
5
votes
2answers
881 views

Java: How to cancel application exit

On one of my programs, I want a Dialog to appear when the user attempts to exit the application. The user must then choose to save some state of the program, not to save or to cancel the exit ...

1 2