Tagged Questions
The main Java Swing class for creating a dialog window.
6
votes
3answers
297 views
Dynamically Add Components to a JDialog
I am having trouble adding JComponents to a JDialog when the user clicks a button on the JDialog. Basically I want it to look like this:
Then, when the user clicks "Add New Field" I want it to look ...
5
votes
2answers
81 views
Java: How can I disable clicking on panel while showing dialog?
I want to disable clicking on background panel or frame while showing a dialogue. And I want the dialogue to appear on top of this panel or frame constantly until it is closed.
How can I do this?
...
5
votes
2answers
332 views
JDialog setVisible(false) vs dispose()
Does it make sense to use setVisible(false) on a dialog and reuse it later or is safer to call dispose() every time and to make a new JDialog.
What about memory leaks with setVisible(false)?
EDIT:
My ...
5
votes
5answers
508 views
What is the right action to take upon closing JDialogs?
I just wrote this test code in my CustomUIPanel class:
public static void main(String[] args) {
final JDialog dialog = CustomUIPanel.createDialog(null,
CustomUIPanel.selectFile());
...
4
votes
1answer
36 views
Running KeyEventDispacther the first time JDialog opens and removing it afterwards
I'm doing an application that must read some characters via keyboard and interpret them.
To capture the keys, I open a JDialog and set a KeyEventDispatcher, so I can capture the characters in the ...
4
votes
2answers
78 views
Communication between JOptionPane buttons and a custom panel
I have made a multiple input dialog by building a JPanel with the fields I want and adding it to a JOption pane
JMainPanel mainPanel = new JMainPanel(mensaje, parametros, mgr);
int i = ...
4
votes
1answer
157 views
Can I make ProgressMonitor dialog modal?
is there a way to make the dialog from ProgressMonitor modal?
EDIT:
The ProgressMonitor class in JAVA API will bring a dialog which is on the top but not Modal. User still has access to the ...
4
votes
5answers
453 views
Remove Top-Level Container on Runtime
Unfortunately, it looks like this recently closed question was not well understood. Here is the typical output:
run:
Trying to Remove JDialog
Remove Cycle Done :-)
Checking if still ...
4
votes
2answers
259 views
Font size of JDialog title
How do I set the font size of the title of a JDialog. I'm displaying JDialogs on extremely high resolution monitors (5 mega pixels), and the dialog titles are not legible. I need to do this on a per ...
4
votes
6answers
526 views
Create an inspecting properties window, button driven as a JDialog
What I asked originally didn't clearly state my question/problem, so I will explain it better. I have a JButton that sets a JDialog to visible. The JDialog has a WindowListener that sets it to NOT ...
4
votes
3answers
3k views
Java Swing: positioning dialog on top of existing window
Can someone show simple Java Swing code/web resource that will position the popup dialog center-aligned on top of an existing JFrame window when the JFrame's button clicked?
4
votes
4answers
9k views
Programmatically close a JDialog
Is there a way to close a JDialog through code such that the Window event listeners will still be notified? I've tried just setting visible to false and disposing, but neither seem to do it.
thanks,
...
3
votes
1answer
31 views
Reference to this in actionPerformed
In the constructor of my main window I create a button with the following simple code:
JButton jbOptions = new JButton("Options");
buttonsPanel.add(jbOptions);
jbOptions.addActionListener(new ...
3
votes
1answer
64 views
JDialog.setAlwaysOnTop(true) brings all dialogs to the front under Windows
I create two dialogs:
DialogA: setVisible(true) called only once.
DialogB: setVisible(true) and setAlwaysOnTop(true) called every 1,5 sec
Windows: Each call to dialogB.setAlwaysOnTop(true) brings ...
3
votes
5answers
115 views
How do I change the value of a JOptionPane from a PropertyChangeListener without triggering the listener?
I am trying to make a program to manage a group of sports players. Each player has an enum Sport, and SportManager has convenient factory methods. What I am trying to do is open a dialog that has a ...
3
votes
1answer
70 views
Make a JDialog stick or snap to another one when moving it close to it
I'm trying to reproduce a feature I've seen on several apps:
I have a GUI app with several JDialogs.
I'd like to easily organize them tightly on screen:
when I move one JDialog, and one of its borders ...
3
votes
2answers
945 views
what is different between jframe and jdialog?
What is different between JFrame and JDialog?
why we can't use setDefaultCloseOperation(JDialog.EXIT_ON_CLOSE); for jdialog?
3
votes
2answers
271 views
How to make a modal JDialog execute code immediately upon being shown
Ok, I have a list of objects. I need to show a Modal JDialog and then pass it this list of objects and have it act on them. The problem is that when I call .show() it hijacks the EDT. The ideal ...
2
votes
0answers
32 views
Why isn't this modeless child JDialog minimized when parent JFrame is?
My understanding is that when a parent JFrame is minimized then its children also are minimized but in the following dirt-simple example it doesn't happen (i.e. the child dialog stays visible when the ...
2
votes
1answer
36 views
resizing JDialog box
I'm having trouble with a dialog I created. It packs everything in cutting off border titles and input boxes. I've tried setting the size of the panel and of the components, but to no avail; size ...
2
votes
2answers
53 views
how to show busy/working/loading dialog with dynamic message
i want to show modal dialog, which will block my main window and i want to control it from outside by methods showLoadingDialog(), hideLoadingDialog() and setLoadingMessage(String message) - i tried ...
2
votes
1answer
111 views
action listener to JDialog for clicked button
I have main application where is table with values. Then, I click "Add" button, new CUSTOM (I made it myself) JDialog type popup comes up. There I can input value, make some ticks and click "Confirm". ...
2
votes
2answers
43 views
JOptionPane.createDialog and OK_CANCEL_OPTION
I have a custom dialog box that collects two strings from the user. I use OK_CANCEL_OPTION for the option type when creating the dialog. Evertyhings works except when a user clicks cancel or closes ...
2
votes
2answers
68 views
Why doesn't the JDialog constructor center itself over the specified owner component?
Using this JDialog constructor, where I specify the owning JFrame instance, I find that the JDialog is not centered over it's owner component. Instead, it appears in the top-left corner. In order to ...
2
votes
1answer
102 views
How to really close a JDialog with Java code?
I know setVisible(false),dispose(),but they can't really close a JDialog. When I have the other thread stop, the thread of the JDialog still runs.
And I can't use System.exit(0),because the other ...
2
votes
2answers
44 views
Launching a frame from a dialog
I am new to Swing hopefully someone can help me out.
I have a modal JDialog d1 that contains a JXHyperlink that when I click it I should launch a JFrame f however when I do that the frame f goes ...
2
votes
1answer
99 views
Java 5 - Bring Modal Dialog to Front on any click
Setting: Java 5 - no upgrade possible.
I have a large application that has a number of modal dialog windows. I have heard that hidden modal dialogs can result in uninformed users going so far as to ...
2
votes
1answer
152 views
temporarily disable ok button on a JDialog, accordingly to a JTextField validation
I have a JDialog created in a fashion like this, accordingly to Oracle's tutorial.
using the JOptionPane constructor:
optionPane = new JOptionPane(array,
...
2
votes
2answers
101 views
Java listener on dialog close
I have a Java app that displays a list from a database. Inside the class is the following code to open a new dialog for data entry:
@Action
public void addNewEntry() {
JFrame mainFrame = ...
2
votes
3answers
152 views
How to make a resizable JDialog?
I'm using JOptionPane.showOptionDialog to show a JDialog. I would like to know how:
set the dimension of the dialog (for now I'm using setPreferredSize() method on the given panel but I know that ...
2
votes
1answer
104 views
Java — JDialog unmovable
What code will facilitate making a JDialog unmovable? I've looked at two options:
setUndecorated(true); which works but removes all the trimmings.
addComponentListener and overriding the ...
2
votes
3answers
159 views
Button for closing a JDialog
I want to add a button (JButton) at the bottom of a JDialog which should close the JDialog when pressed. The problem is I don't know what to write in the ActionListener of that button. I don't want ...
2
votes
1answer
186 views
Problem updating JPanel in JDialog with JComboBox
I have created a JDialog which contains a JComboBox and a panel underneath which should display a different content based on the value selected in the JComboBox. I have created a JPanel (panel_1) ...
2
votes
5answers
137 views
Dynamically change the width of JDialog
I have created a JDialog which contains a JLabel. Because the length of text, which changes based on users' input, can contain a large number of characters, there is the need to dynamically change the ...
2
votes
2answers
107 views
Create Modal JDialog while things are processing
how do you create a Modal JDialog saying "loading" while a task is processing that shows after more than 3 seconds has passed?
2
votes
3answers
121 views
Identify whether JDialog is already opened
How do I identify whether a JDialog component is already opened or not, thus, it would avoid the same JDialog to be opened twice at the same application instance?
One solution I had in mind was to ...
2
votes
2answers
169 views
JDialog box not gaining focus
I have a modeless dialog box being generated which prompts users to open a new window. The box can be opened in two ways, either directly from the file menu for the frame I'm writing or indirectly ...
2
votes
3answers
192 views
how to check if user has input something or not in JDialogBox?
I have created a custom dialog box which requires 3 fields
public class Test{
public static void main(String args[])
{
JTextField firstName = new JTextField();
JTextField ...
2
votes
1answer
87 views
Remove JPanel with some JComponents from JDialog
if created a JPanel and then added some JComponents with these rules
public class MyPanel extends JPanel {
myButton = new MyButton()
myButton.addXxxListener(...)
myButton ....
...
2
votes
3answers
530 views
Java Fullscreen Modal Dialogs
How does one create a custom modal JDialog that can be used as an internal dialog? For use in FullscreenExclusiveMode.
I have a JScrollPane (with a huge scrollbar) full of huge buttons like so:
...
2
votes
4answers
896 views
Setting the maximum size of a JDialog?
The short version: do I need to do something tricky to get JDialog's setMaximumSize() to work?
The full version: I've got a JDialog (layout manager: BorderLayout) which contains a scroll pane and a ...
2
votes
4answers
667 views
Modal dialog hide behind Main Frame after swich focus
I have a swing application, basically, a main frame that could pop up a modal dialog.
When the modal dialog is showing, if I switch to another window, like firefox. And then switch back to the swing ...
2
votes
5answers
376 views
Java Swing: Centering components
I'm working on a Swing UI in which I want to center multiple components (JDialogs and JFrames). I know that the following code will calculate the user's screen size, and from there, I can easily ...
2
votes
2answers
3k views
How can I return a value from a JDialog box to the parent JFrame?
I have created a modal JDialog box with a custom drawing on it and a JButton. When I click the JButton, the JDialog box should close and a value should be returned.
I have created a function in the ...
2
votes
3answers
601 views
ClassCastException with JDialog and Thread
I have a JDialog with a thread in it. It sporadically gives me a ClassCastException when the dialog is created (which means I can have succesful ones with no exception), and I have no clue to where it ...
2
votes
1answer
1k views
JDialog with minimize button
Is it possible to have a minimize and maximize button for a non-modal(modal=false) JDialog.I know JFrame is the ideal solution for this but this change has to be made in an existing code and its ...
2
votes
2answers
303 views
Error Dialog Not Being Destroyed
I am working on a project that is using a JTable to display, among other things, a column of dates. We needed validation for the user input for dates, so I have implemented a combination of masking ...
2
votes
1answer
1k views
Resize a JPanel in line with a JDialog
I've got a JDialog which contains a series of JPanels in a CardLayout. Some of these panels contain JTables which I would like to be resized in line with any resizing of the JDialog. I am not sure how ...
1
vote
2answers
40 views
Center JDialog over JPanel on JTabbedPane
I have tried all of the suggestions I found here and on other sites.
I can't seem to get this JDialog to be centered over the panel on the JTabbedPane.
Please note, I must have the close button ...
1
vote
1answer
28 views
JDialog with WindowListener - windowClosing not fired
I have a class that extends JDialog that have a window listener:
class MyClass extends JDialog {
public MyClass() {
setDefaultCloseOperation( JDialog.DO_NOTHING_ON_CLOSE );
...