summaryrefslogtreecommitdiff
path: root/java/awt/Dialog.java
diff options
context:
space:
mode:
authorFernando Nasser <fnasser@redhat.com>2004-01-26 15:43:41 +0000
committerFernando Nasser <fnasser@redhat.com>2004-01-26 15:43:41 +0000
commitae2f063af547aaa1434bc4313311edeb7273036f (patch)
tree46582e74ea72f448e0801224c371234d8fa4d675 /java/awt/Dialog.java
parentf439e779aba94957bcabea19601a88fbc0403345 (diff)
downloadclasspath-ae2f063af547aaa1434bc4313311edeb7273036f.tar.gz
* java/awt/Dialog.java (show): Enable blocking for all modal dialogs
and run secondary dispatch thread to process event queue while this thread is blocked.
Diffstat (limited to 'java/awt/Dialog.java')
-rw-r--r--java/awt/Dialog.java31
1 files changed, 22 insertions, 9 deletions
diff --git a/java/awt/Dialog.java b/java/awt/Dialog.java
index fd1eb4fbc..5516ff906 100644
--- a/java/awt/Dialog.java
+++ b/java/awt/Dialog.java
@@ -88,6 +88,12 @@ private boolean undecorated = false;
*/
private boolean blocked = false;
+/**
+ * Secondary EventQueue to handle AWT events while
+ * we are blocked for modality in show
+ */
+private EventQueue eq2 = null;
+
/*************************************************************************/
/*
@@ -394,20 +400,22 @@ public synchronized void
show()
{
super.show();
+
if (isModal())
{
// If already shown (and blocked) just return
if (blocked)
return;
- /* FIXME: Currently this thread may block forever if it called from
- the event dispatch thread, so we only do this for FileDialog which
- only depends on a signal which is delivered in the Gtk thread.
- Remove this test when we add code to start another event
- dispatch thread. */
- if ((Thread.currentThread () instanceof EventDispatchThread) &&
- !(this instanceof FileDialog))
- return;
+ /* If show is called in the dispatch thread for a modal dialog it will
+ block so we must run another thread so the events keep being
+ dispatched.*/
+ if (EventQueue.isDispatchThread ())
+ {
+ EventQueue eq = Toolkit.getDefaultToolkit().getSystemEventQueue();
+ eq2 = new EventQueue ();
+ eq.push (eq2);
+ }
try
{
@@ -418,8 +426,13 @@ show()
catch (InterruptedException e)
{
blocked = false;
- return;
}
+
+ if (eq2 != null)
+ {
+ eq2.pop ();
+ eq2 = null;
+ }
}
}