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

JCK-interactive: Swing does not work if color depth is 16 bpp

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P1 P1
    • None
    • 1.4.0
    • client-libs



      Name: icR10030 Date: 12/07/2000


      If color depth of X Windows for linux Redhat 6.2
      is 16 bits per pixel Swing does not work.
      Due to this reason, all JCK-interactive javax_swing tests fail in
      Linux with color depth 16 bpp.

      To reproduce bug:
      1. Set 16 bits per pixel
      2. Compile following test.java
      3. Run test.class under jdk1.4.0beta-b42

      Test creates single JFrame with JButton.
      JFrame is created, but JButton does not.

      //-------------------- test.java -----------------------
      import javax.swing.*;

      public class test
      {
        public static void main(String[] args) {
          JFrame f=new JFrame();
          JButton p=new JButton("I'm swing button!");
          f.getContentPane().add(p);
          f.setBounds(10,10,200,100);
          f.show();
        }
      }
      //-------------------- end test.java -------------------

      ======================================================================

            Unassigned Unassigned
            ichesunw Iche Iche (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: