jdk/test/javax/swing/border/Test4252164.java
author dcubed
Wed, 20 Jun 2012 14:18:25 -0700
changeset 13092 3b4aad065f27
parent 5506 202f599c92aa
child 24544 c0133e7c7162
permissions -rw-r--r--
7175255: symlinks are wrong, which caused jdk8-promote-2 to fail (client/64/64 directories in debuginfo zips) Summary: Fix bad paths in client/64 and server/64 debug info and symlink creation Reviewed-by: ohair, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1274
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1274
diff changeset
     2
 * Copyright (c) 2007, 2008, Oracle and/or its affiliates. All rights reserved.
1274
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
     4
 *
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
     7
 * published by the Free Software Foundation.
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
     8
 *
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    13
 * accompanied this code).
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    14
 *
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1274
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1274
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1274
diff changeset
    21
 * questions.
1274
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    22
 */
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    23
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    24
/*
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    25
 * @test
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    26
 * @bug 4252164
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    27
 * @summary Tests rounded LineBorder for components
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    28
 * @author Sergey Malenkov
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    29
 * @run applet/manual=yesno Test4252164.html
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    30
 */
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    31
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    32
import java.awt.Color;
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    33
import java.awt.event.MouseWheelEvent;
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    34
import java.awt.event.MouseWheelListener;
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    35
import javax.swing.JApplet;
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    36
import javax.swing.JLabel;
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    37
import javax.swing.JPanel;
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    38
import javax.swing.border.LineBorder;
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    39
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    40
public class Test4252164 extends JApplet implements MouseWheelListener {
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    41
    private int thickness;
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    42
    private JLabel rounded;
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    43
    private JLabel straight;
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    44
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    45
    public void mouseWheelMoved(MouseWheelEvent event) {
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    46
        update(event.getWheelRotation());
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    47
    }
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    48
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    49
    public void init() {
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    50
        add(createUI());
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    51
        addMouseWheelListener(this);
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    52
    }
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    53
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    54
    private JPanel createUI() {
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    55
        this.rounded = new JLabel("ROUNDED"); // NON-NLS: the label for rounded border
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    56
        this.straight = new JLabel("STRAIGHT"); // NON-NLS: the label for straight border
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    57
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    58
        JPanel panel = new JPanel();
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    59
        panel.add(this.rounded);
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    60
        panel.add(this.straight);
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    61
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    62
        update(10);
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    63
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    64
        return panel;
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    65
    }
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    66
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    67
    private void update(int thickness) {
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    68
        this.thickness += thickness;
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    69
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    70
        this.rounded.setBorder(new LineBorder(Color.RED, this.thickness, true));
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    71
        this.straight.setBorder(new LineBorder(Color.RED, this.thickness, false));
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    72
    }
5561e281cda6 6718964: Swing border tests should be open source
malenkov
parents:
diff changeset
    73
}