File: CaretFloatingPointAPITest.java

package info (click to toggle)
openjdk-25 25.0.1%2B8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 825,408 kB
  • sloc: java: 5,585,680; cpp: 1,333,948; xml: 1,321,242; ansic: 488,034; asm: 404,003; objc: 21,088; sh: 15,106; javascript: 13,265; python: 8,319; makefile: 2,518; perl: 357; awk: 351; pascal: 103; exp: 83; sed: 72; jsp: 24
file content (449 lines) | stat: -rw-r--r-- 14,126 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
/*
 * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.Point;
import java.awt.Rectangle;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.geom.Line2D;
import java.awt.geom.Point2D;
import java.awt.geom.Rectangle2D;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;
import javax.swing.event.ChangeListener;
import javax.swing.plaf.TextUI;
import javax.swing.text.BadLocationException;
import javax.swing.text.Caret;
import javax.swing.text.DefaultHighlighter;
import javax.swing.text.Document;
import javax.swing.text.Highlighter;
import javax.swing.text.JTextComponent;
import javax.swing.text.Position;

/*
 * @test
 * @bug 8163175
 * @summary PlainView.modelToView() method should return Rectangle2D
 * @run main/manual CaretFloatingPointAPITest
 */
public class CaretFloatingPointAPITest {

    private static volatile boolean testResult = false;
    private static volatile CountDownLatch countDownLatch;
    private static final String INSTRUCTIONS = "INSTRUCTIONS:\n\n"
            + "Verify that cursor position is not rounded on HiDPI display.\n\n"
            + "If the display does not support HiDPI mode press PASS.\n\n"
            + "1. Press the Right-Arrow key several times to move the red caret"
            + " in the text field.\n"
            + "2. Check that the caret has the same position between chars"
            + " in diffrent locations.\n\n"
            + "If so, press PASS, else press FAIL.\n";

    public static void main(String args[]) throws Exception {
        countDownLatch = new CountDownLatch(1);

        SwingUtilities.invokeLater(CaretFloatingPointAPITest::createUI);
        countDownLatch.await(15, TimeUnit.MINUTES);

        if (!testResult) {
            throw new RuntimeException("Test fails!");
        }
    }

    private static void createUI() {

        final JFrame mainFrame = new JFrame("Metal L&F icons test");
        GridBagLayout layout = new GridBagLayout();
        JPanel mainControlPanel = new JPanel(layout);
        JPanel resultButtonPanel = new JPanel(layout);

        GridBagConstraints gbc = new GridBagConstraints();

        JTextField textField = new JTextField("aaaaaaaaaaaaaaaaaaaaaaa");
        Dimension size = new Dimension(400, 100);
        textField.setPreferredSize(size);
        textField.setFont(textField.getFont().deriveFont(28.0f));
        textField.setCaretColor(Color.RED);
        textField.setCaret(new CustomCaret());
        gbc.gridx = 0;
        gbc.gridy = 0;
        gbc.insets = new Insets(5, 15, 5, 15);
        gbc.fill = GridBagConstraints.HORIZONTAL;
        mainControlPanel.add(textField, gbc);

        JTextArea instructionTextArea = new JTextArea();
        instructionTextArea.setText(INSTRUCTIONS);
        instructionTextArea.setEditable(false);
        instructionTextArea.setBackground(Color.white);

        gbc.gridx = 0;
        gbc.gridy = 1;
        gbc.fill = GridBagConstraints.HORIZONTAL;
        mainControlPanel.add(instructionTextArea, gbc);

        JButton passButton = new JButton("Pass");
        passButton.setActionCommand("Pass");
        passButton.addActionListener((ActionEvent e) -> {
            testResult = true;
            mainFrame.dispose();
            countDownLatch.countDown();

        });

        JButton failButton = new JButton("Fail");
        failButton.setActionCommand("Fail");
        failButton.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                mainFrame.dispose();
                countDownLatch.countDown();
            }
        });

        gbc.gridx = 0;
        gbc.gridy = 0;

        resultButtonPanel.add(passButton, gbc);

        gbc.gridx = 1;
        gbc.gridy = 0;
        resultButtonPanel.add(failButton, gbc);

        gbc.gridx = 0;
        gbc.gridy = 2;
        mainControlPanel.add(resultButtonPanel, gbc);

        mainFrame.add(mainControlPanel);
        mainFrame.pack();

        mainFrame.addWindowListener(new WindowAdapter() {

            @Override
            public void windowClosing(WindowEvent e) {
                mainFrame.dispose();
                countDownLatch.countDown();
            }
        });
        mainFrame.setVisible(true);
    }

    static class CustomCaret implements Caret {

        private JTextComponent component;
        private boolean visible;
        private boolean selectionVisible = true;
        int blinkRate;
        int dot;
        int mark;
        Position.Bias dotBias;
        Position.Bias markBias;
        Object selectionTag;
        Point2D magicCaretPosition;

        private MouseListener mouseListener = new CaretMouseListener();

        @Override
        public void install(JTextComponent c) {
            this.component = c;
            c.addMouseListener(mouseListener);
        }

        @Override
        public void deinstall(JTextComponent c) {
            c.removeMouseListener(mouseListener);
            this.component = null;
        }

        @Override
        public void paint(Graphics g) {

            if (component == null) {
                return;
            }

            int dot = getDot();
            Rectangle2D r = null;
            try {
                r = component.modelToView2D(dot);
            } catch (BadLocationException e) {
                return;
            }

            if (r == null) {
                return;
            }

            Rectangle2D cr = getCaretRectangle(r);
            repaint(cr.getBounds());

            g.setColor(component.getCaretColor());
            float cx = (float) cr.getX();
            float cy = (float) cr.getY();
            float cw = (float) cr.getWidth();
            float ch = (float) cr.getHeight();
            float c = cx + cw / 2;

            Graphics2D g2d = (Graphics2D) g;
            g2d.draw(new Line2D.Float(c, cy, c, cy + ch));
        }

        void repaint(Rectangle r) {
            r.width += 1;
            r.height += 1;
            component.repaint(r);
        }

        Rectangle2D getCaretRectangle(Rectangle2D r) {
            int d = 3;
            double cx = r.getX() - d;
            double cy = r.getY();
            double cw = 2 * d;
            double ch = r.getHeight();
            return new Rectangle2D.Double(cx, cy, cw, ch);
        }

        @Override
        public void addChangeListener(ChangeListener l) {
        }

        @Override
        public void removeChangeListener(ChangeListener l) {
        }

        @Override
        public boolean isVisible() {
            return visible;
        }

        @Override
        public void setVisible(boolean v) {
            this.visible = true;
        }

        @Override
        public boolean isSelectionVisible() {
            return selectionVisible;
        }

        @Override
        public void setSelectionVisible(boolean v) {
            this.selectionVisible = v;
            updateSelection();
        }

        @Override
        public void setMagicCaretPosition(Point p) {
            magicCaretPosition = p;
        }

        @Override
        public Point getMagicCaretPosition() {
            if (magicCaretPosition != null) {
                return new Point((int) magicCaretPosition.getX(),
                                 (int) magicCaretPosition.getY());
            }
            return null;
        }

        @Override
        public void setBlinkRate(int rate) {
            this.blinkRate = rate;
        }

        @Override
        public int getBlinkRate() {
            return blinkRate;
        }

        @Override
        public int getDot() {
            return dot;
        }

        @Override
        public int getMark() {
            return mark;
        }

        @Override
        public void setDot(int dot) {
            setDot(dot, Position.Bias.Forward);
        }

        private void setDot(int dot, Position.Bias bias) {
            handleSetDot(dot, bias);
            updateSelection();
        }

        @Override
        public void moveDot(int dot) {
            moveDot(dot, Position.Bias.Forward);
        }

        private void moveDot(int dot, Position.Bias bias) {
            changeCaretPosition(dot, bias);
            updateSelection();
        }

        void handleSetDot(int dot, Position.Bias dotBias) {

            if (component == null) {
                return;
            }

            Document doc = component.getDocument();
            if (doc != null) {
                dot = Math.min(dot, doc.getLength());
            }

            dot = Math.max(dot, 0);

            if (dot == 0) {
                dotBias = Position.Bias.Forward;
            }

            mark = dot;

            if (this.dot != dot || this.dotBias != dotBias) {
                changeCaretPosition(dot, dotBias);
                updateSelection();
            }

            this.markBias = this.dotBias;
        }

        void changeCaretPosition(int dot, Position.Bias dotBias) {
            this.dot = dot;
            this.dotBias = dotBias;
            setMagicCaretPosition(null);
            SwingUtilities.invokeLater(this::repaintNewCaret);
        }

        private void updateSelection() {
            Highlighter h = component.getHighlighter();
            if (h != null) {
                int p0 = Math.min(dot, mark);
                int p1 = Math.max(dot, mark);

                if (p0 == p1 || !selectionVisible) {
                    if (selectionTag != null) {
                        h.removeHighlight(selectionTag);
                        selectionTag = null;
                    }
                } else {
                    try {
                        if (selectionTag != null) {
                            h.changeHighlight(selectionTag, p0, p1);
                        } else {
                            Highlighter.HighlightPainter p = getSelectionPainter();
                            selectionTag = h.addHighlight(p0, p1, p);
                        }
                    } catch (BadLocationException e) {
                        throw new RuntimeException(e);
                    }
                }
            }
        }

        void repaintNewCaret() {
            if (component != null) {
                TextUI mapper = component.getUI();
                Document doc = component.getDocument();
                if ((mapper != null) && (doc != null)) {
                    Rectangle2D newLoc;
                    try {
                        newLoc = mapper.modelToView2D(component, this.dot, this.dotBias);
                    } catch (BadLocationException e) {
                        newLoc = null;
                    }
                    if (newLoc != null) {
                        adjustVisibility(newLoc.getBounds());
                        if (getMagicCaretPosition() == null) {
                            setMagicCaretPosition(new Point((int) newLoc.getX(),
                                                            (int) newLoc.getY()));
                        }
                    }
                    damage(newLoc.getBounds());
                }
            }
        }

        protected Highlighter.HighlightPainter getSelectionPainter() {
            return DefaultHighlighter.DefaultPainter;
        }

        protected void adjustVisibility(Rectangle nloc) {
            if (component == null) {
                return;
            }
            if (SwingUtilities.isEventDispatchThread()) {
                component.scrollRectToVisible(nloc);
            } else {
                SwingUtilities.invokeLater(() -> {
                    component.scrollRectToVisible(nloc);
                });
            }
        }

        protected synchronized void damage(Rectangle r) {
            if (r != null && component != null) {
                r.width += 1;
                r.height += 1;
                component.repaint(r);
            }
        }

        private class CaretMouseListener extends MouseAdapter {

            @Override
            public void mousePressed(MouseEvent e) {
                Point pt = new Point(e.getX(), e.getY());
                Position.Bias[] biasRet = new Position.Bias[1];
                int pos = component.getUI().viewToModel(component, pt, biasRet);
                if (biasRet[0] == null) {
                    biasRet[0] = Position.Bias.Forward;
                }
                if (pos >= 0) {
                    setDot(pos);
                }
            }
        }
    }
}