The main Java Swing class for creating a dialog window.

learn more… | top users | synonyms

0
votes
0answers
14 views

prevent minimize on jdialog in ubuntu

I use JDialog and have set setResizable(false), setUndecorated(true). So there is no maximize, minimize button on the title bar. (Actually the minimize and maximize button disappear by using a ...
0
votes
1answer
18 views

JDialog inside a wrapper class does not appear

I have a login form which is an instance of JDialog class. but it doesn't appear inside the JFrame. I implemented it inside the Application before as a method and it worked. but after wrapping it ...
0
votes
2answers
32 views

How to use JDialog in a Swing GUI?

I want to extend my JFrame Form ... with one JDialog form (I want to connect with frame, I want in the menu-bar when someone click to the HELP (from the menu) will show the new dialog box. I do not ...
0
votes
1answer
37 views

JFrame Glasspane is also over JDialog but shouldn't

I have a JFrame (undecorated) with a Glasspane. This Frame opens a JDialog (also undecorated and has also a glassPane) and hides itself (setVisible(false)). The Glasspanes are set with ...
1
vote
2answers
46 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
15 views

JDialog influence each other [closed]

I set an JDialog for plotting, Plot object. And I call it twice, like: double[] data1 = new double[m][n]; double[] data2 = new double[m][n]; // initialize data1, data2 Plot plot1 = new Plot(data1); ...
0
votes
1answer
33 views

Make a JDialog sit until user has disposed properly

I extended JDialog and made it modal, etc. How do I make it not return from the dialog until the user has selected OK button or Cancel and the dialog has been disposed? I don't want to add a thread ...
2
votes
3answers
72 views

Is there a way to only have the OK button in a JOptionPane showInputDialog (and no CANCEL button)?

I've seen that this is possible in other types of dialog windows such as "showConfirmDialog", where one can specify the amount of buttons and their names; but is this same functionality achievable ...
0
votes
1answer
48 views

JInternalFrame As Modal

I Have the following code: import java.awt.AWTEvent; import java.awt.ActiveEvent; import java.awt.Component; import java.awt.EventQueue; import java.awt.MenuComponent; import ...
1
vote
3answers
43 views

How does MVC/MVP work in a Swing app?

I have been asked to revamp an existing JDialog that is a child container of an in-house Swing app. I will be re-writing the dialog from scratch and have been asked to lead the charge towards making ...
0
votes
0answers
25 views

windowDeactivated not working on Mac

I have the following code: public AudioDialog() { this.addWindowListener(new WindowListener() { public void windowActivated(WindowEvent e) { } public void ...
0
votes
1answer
26 views

How to get the decendant components of a custom JDialog?

For some reasons I have to get the components in a custom JDilog. I tried to do that like this: private class RepoListDialog extends JDialog { public RepoListDialog(JFrame jf, String message){ ...
0
votes
0answers
31 views

JDialog onTop overlapped by another in a strange way

I am developing a Swing application with custom CSS rendering. As part of the system I use JDialogs as well, but I need to access certain components outside of the dialog (emergency buttons). For this ...
0
votes
1answer
30 views

MousExited doesn't get fired on JDialog with GlassPane, MouseEntered does

I have made an own Window-Model, which extend JFrame and JDialog, without Window-Decoration. If I make a new window, its a instanciation of the respective model. To handle resizing of these windows, I ...
5
votes
2answers
61 views

How is this Swing code working?

I see the following code in a Java/Swing GUI project: MyDialog dlg = new MyDialog(parent, isFizz); MyDialogResults results = dlg.getResults(); eventBus.fireEvent(new MyDialogEvent(results)); In ...
0
votes
1answer
36 views

How to get rid of the top header

How can I get rid of the top header of java containning the close button,minimize and maximize? I want to make a plane Panel with no top header for loading of my program. Like this Image here I ...
2
votes
1answer
55 views

How can i close a FrameView java

I've tried everything and i cant get with the answer, there is not much topics talking about it. Here the escenario: Once the user run the app, 2 FrameViews display. The main frame and the login. ...
1
vote
2answers
47 views

Mouse position of JDialog relative to JTable

This is my code: JTable1.addMouseListener(new MouseAdapter() { public void mouseReleased(MouseEvent e) { if (e.getButton() == MouseEvent.BUTTON1) ...
0
votes
2answers
46 views

JDialog to get input, instead get error

I wrote a class that extends JDialog, to be shown when I press save (save is a JMenuItem object). However, when I press save, I get the dialog with an error of having file name as null, and I didn't ...
1
vote
2answers
36 views

creating a JDialog with multiple, selectable image items

I'm attempting to create a JDialog frame that will have a background image and an interactive JPanel above that. In this context, the JDialog would represent a 'combat' field where units would be ...
1
vote
2answers
55 views

Creating JTabbedPane in a JDialog and making the frame available

I'm working with GUI in Java and I've made several JDialogs opening one above the other. I tried to create a JTabbedPane and I have succeed. However, I have to make the JTabbedPane in a JFrame. I've ...
1
vote
1answer
40 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 ...
0
votes
1answer
49 views

Transfer of control from JFrame back to the calling class

I am making a project in which I have a class named runner_HMMPayl from the main of this class I am initiating a JFrame0 f instance. JFrame0 returns the values of text fields in JFrame0 that are then ...
0
votes
1answer
33 views

Java: How to tell when JFrame or JDialog is moved?

I have a JDialog inside of a JFrame and I want it to move with my JFrame. So when the user drags the window around, I want the JDialog to stay at the same position. How can I tell when the user drags ...
2
votes
1answer
48 views

How to force JContainer to re-layout itself?

I have JFrame with BorderLayout: JTextArea in the NORTH and JButton in the SOUTH. I pack() it in the beginning. My code changes font size for the text area. How do I force the dialog window and its ...
2
votes
1answer
57 views

Keep focus on a JDialog using SwingUtilities.invokeLater?

I want to display a JDialog so I use this: SwingUtilities.invokeLater(new Runnable() { @Override public void run() { new DialogBox().setVisible(true); } }); It works fine to display it but ...
0
votes
0answers
79 views

Passing data to JPanel from a JDialog once a button is clicked

I have created a JPanel that contain a JScrollPane. the JScrollPane is a place holder of a jtable. when clicking a button a JDialog appear displaying a jTable wih data from the data base. the user ...
0
votes
1answer
68 views

Unable to disable frame button from JDialog

I want to disable a button on the frame from a JDialog, I tried everything but it won't work. The program's execution starts from a frame and when the button is clicked the Dialog pops up. Simple, ...
0
votes
1answer
63 views

JDialog - How to make enter key response to button focus on dialog

I am developing Java Swing application. Focus is switched by left,right key and the button focus is active when I press enter. My Question is how to make button focus response to enter key. ...
0
votes
1answer
70 views

Drag undecorated jDialog

So, I have a jFrame in which I'm building the main interface window of a chat. This window/jFrame has several buttons , each of which show a jDialog (Which I created previously in Netbeans dragging a ...
0
votes
0answers
26 views

JDialog Error display should be on Controller or View?

I'm learning about the MVC pattern and now I have a doubt. Just giving you some context, I have a jtextfield where you only can type digits so if you type anything else a jdialog will be displayed ...
2
votes
2answers
62 views

Memory leaking on JDialog closing

I work on a Java application consisting (as yet) of a regular Window (JFrame) and a JDialog called by a menuitem in the first: public class MainWindow { private JFrame frame; public MyDialog ...
1
vote
1answer
90 views

Passing objects from JDialog back to root frame

Let's say we have a JFrame frame that contains two JPanels, buttonPanel and dataPanel, and in this panel a single JButton button. When clicked, button creates and shows a JDialog dialog in its own ...
0
votes
1answer
97 views

Java MouseListener not always working

I find it odd that in my project, the mouselistener is not always heard. Has anyone else come across this? Or am I doing something wrong? I have to sometimes click it several times before it opens. I ...
1
vote
2answers
173 views

JTable loses focus when a dialog is shown from a cell editor component

In my main application, the JTable is losing focus when a dialog is shown from a cell editor component. Below is a simple SSCCE I made for you to see the problem. Do these simples experiments: ...
-1
votes
1answer
54 views

JDialog does not close on 'X' button click

I have written an application that has one main window and multiple dialogs, however one of these dialogs does not close when the user clicks the 'X' button at the top right corner. There is an OK ...
0
votes
1answer
87 views

MineSweeper with GUI, How to change the size of the field and then refresh the JFrame?

I am trying to make a minesweeper game with GUI and when I am adding a menu where people can change the size of the field and number of mines, I wasn't be able to change JFrame. I want to change the ...
0
votes
1answer
44 views

How to update a jtable from a different form?

public class A extends JInternalFrame implements ActionListener { private JTable table; private JButton button; public A() { button = new JButton("Load Dialog"); ...
0
votes
2answers
176 views

How to manage multiple windows system - Java(Swing)

I'm working on my 2nd year Project and I need your help. I want to create a DIY Store System that will contain multiple windows. All the screens are done, just need the idea how they will be managed ...
1
vote
1answer
430 views

JAVA Swing onclick opens a new window/JFrame

Open new window/Jframe (i.e. in another class...Table_Edit) and i have another class of Image containing a single button. i want something like when i click that button that should popup a window ...
2
votes
2answers
107 views

JDialog not updating for new input

I am building my first gui and so far everything is working fine except for a malfunction with a JDialog. It accepts a list of names and processes accordingly when used the first time. But when I pull ...
0
votes
0answers
122 views

JAVA show my own form as a dialog

Creating Java application, and have a task: Need to open new form from my "parent" form, but it should be opened like a dialog (block "parent" form from editing, while new form is opened) Tried, to ...
-1
votes
1answer
40 views

JDialog not working properly [closed]

I am a newbie at Java and am in the process of writing my first project, a multiple-file one, that processes information on race horses. It is so far working well, but the JDialog window that pops up ...
0
votes
1answer
140 views

My custom JDialog appears minimized and JScrollPane's scroll disappears

I have created a basic swing program which displays an image in a JDialog box after it has been selected through a JFileChooser. I have used a JScrollPane inside the dialog box and a JLabel on which ...
1
vote
1answer
69 views

Unable to update JDialog GUI inside a thread

Please have a look at the following code private class EmergencyAlertNotifier implements Runnable, ActionListener { JDialog dialog = new JDialog(); int number=0; JLabel ...
0
votes
0answers
249 views

JWindow vs. JFrame vs. JDialog [closed]

What is actually the key difference of JWindow vs. JFrame vs. JDialog in Java/Swing? Using JWindow as first attempt to produce an independent window for Java/Swing, I ran into window manager and ...
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 ...
1
vote
1answer
88 views

How can you set an actionlistener on the ok option of a jdialog?

Hi i want to trigger some action when the ok button of jdialog is pressed, i know that you can do this way int rep =JOptionPane.showConfirmDialog(null, pangesfac, "Gestion des chambres a facturer", ...
1
vote
1answer
68 views

Access one instance of a jdialog from different class java

I have a JFrame that houses my many JPanels that represent different parts of my application in which you can do certain calculations. I have a JDialog that is created in my Main.java class (extends ...
3
votes
1answer
129 views

How to set the JFrame as a parent to the JDialog

I am having trouble to set the frame as a owner to the dialog. Normally when I extend JDialog class for creating a dialog then I used super(frame) to specify the owner of the dialog. Such that both of ...

1 2 3 4 5 9