Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4470141

RedHat 7.1: KDE-only: Modal dialogs always placed at the top-left corner.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 1.4.0
    • client-libs
    • x86
    • generic

      Modal dialogs when invoked, appear always at the top-left corner of the screen irrespective of whether they have a owner or the owner is null. This happens only in KDE. In other OSs and GNOME, the dialog box appears on top of the owner if they have one else appear at the center of the screen (I think this is the right behaviour).

      Tried in both b67 & b68.

      Code to reproduce:
      import java.awt.*;
      import javax.swing.*;
      import java.awt.event.*;

      public class testModal extends JFrame implements ActionListener {
        JPanel panel;
        JButton button1, button2, button3;

        public testModal() {
          setSize(600, 100);

          panel = new JPanel(new GridLayout(1,3));

          button1 = new JButton("No Parent");
          button1.addActionListener(this);
          button2 = new JButton("Parent=Panel");
          button2.addActionListener(this);
          button3 = new JButton("Parent=null");
          button3.addActionListener(this);
          panel.add(button1);
          panel.add(button2);
          panel.add(button3);

          getContentPane().add(panel);
        }

        public void actionPerformed(ActionEvent ae) {
          String btnAction = ae.getActionCommand();

          if (btnAction.equals("No Parent")) {
            JOptionPane.showInputDialog("choose one", "Input");
          }
          else
          if (btnAction.equals("Parent=Panel")) {
            JOptionPane.showInputDialog(panel, "choose one", "Input");
          }
          else
          if (btnAction.equals("Parent=null")) {
            JOptionPane.showInputDialog(null, "choose one", "Input");
          }
        }

        public static void main(String args[]) {
          testModal t = new testModal();
          t.setVisible(true);
        }
      }

            rraysunw Richard Ray (Inactive)
            sramansunw Sridhar Raman (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: