author | serb |
Mon, 24 Sep 2012 21:33:41 +0400 | |
changeset 13993 | 8b3fe3d8badb |
parent 13143 | 31c70a66a053 |
child 15326 | e0b5489e29a6 |
permissions | -rw-r--r-- |
12047 | 1 |
/* |
13993 | 2 |
* Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved. |
12047 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. Oracle designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
24 |
*/ |
|
25 |
||
26 |
||
27 |
package sun.lwawt; |
|
28 |
||
29 |
import java.awt.Dimension; |
|
30 |
import java.awt.Point; |
|
31 |
import java.awt.TextField; |
|
32 |
import java.awt.event.ActionEvent; |
|
33 |
import java.awt.event.ActionListener; |
|
12399
6221283c619f
7124528: [macosx] Selection is not cleared properly in text component.
serb
parents:
12047
diff
changeset
|
34 |
import java.awt.event.FocusEvent; |
12047 | 35 |
import java.awt.peer.TextFieldPeer; |
36 |
||
37 |
import javax.swing.JPasswordField; |
|
38 |
import javax.swing.text.JTextComponent; |
|
39 |
||
40 |
final class LWTextFieldPeer |
|
41 |
extends LWTextComponentPeer<TextField, JPasswordField> |
|
42 |
implements TextFieldPeer, ActionListener { |
|
43 |
||
44 |
LWTextFieldPeer(final TextField target, |
|
45 |
final PlatformComponent platformComponent) { |
|
46 |
super(target, platformComponent); |
|
47 |
} |
|
48 |
||
49 |
@Override |
|
50 |
protected JPasswordField createDelegate() { |
|
51 |
return new JTextAreaDelegate(); |
|
52 |
} |
|
53 |
||
54 |
@Override |
|
13143
31c70a66a053
7142091: [macosx] RFE: Refactoring of peer initialization/disposing
serb
parents:
12891
diff
changeset
|
55 |
void initializeImpl() { |
31c70a66a053
7142091: [macosx] RFE: Refactoring of peer initialization/disposing
serb
parents:
12891
diff
changeset
|
56 |
super.initializeImpl(); |
12047 | 57 |
setEchoChar(getTarget().getEchoChar()); |
58 |
synchronized (getDelegateLock()) { |
|
59 |
getDelegate().addActionListener(this); |
|
60 |
} |
|
61 |
} |
|
62 |
||
63 |
@Override |
|
64 |
public JTextComponent getTextComponent() { |
|
65 |
return getDelegate(); |
|
66 |
} |
|
67 |
||
68 |
@Override |
|
69 |
public void setEchoChar(final char echoChar) { |
|
70 |
synchronized (getDelegateLock()) { |
|
71 |
getDelegate().setEchoChar(echoChar); |
|
72 |
getDelegate().putClientProperty("JPasswordField.cutCopyAllowed", |
|
73 |
getDelegate().echoCharIsSet() |
|
74 |
? Boolean.FALSE : Boolean.TRUE); |
|
75 |
} |
|
76 |
} |
|
77 |
||
78 |
@Override |
|
79 |
public Dimension getPreferredSize(final int columns) { |
|
13993 | 80 |
return getMinimumSize(columns); |
12047 | 81 |
} |
82 |
||
83 |
@Override |
|
84 |
public Dimension getMinimumSize(final int columns) { |
|
13993 | 85 |
return getMinimumSize(1, columns); |
12047 | 86 |
} |
87 |
||
88 |
@Override |
|
89 |
public void actionPerformed(final ActionEvent e) { |
|
90 |
postEvent(new ActionEvent(getTarget(), ActionEvent.ACTION_PERFORMED, |
|
12531
42a9335fd8b3
7124210: [macosx] Replacing text in a TextField does generate an extra TextEvent
alexp
parents:
12399
diff
changeset
|
91 |
getText(), e.getWhen(), e.getModifiers())); |
12047 | 92 |
} |
93 |
||
12399
6221283c619f
7124528: [macosx] Selection is not cleared properly in text component.
serb
parents:
12047
diff
changeset
|
94 |
/** |
6221283c619f
7124528: [macosx] Selection is not cleared properly in text component.
serb
parents:
12047
diff
changeset
|
95 |
* Restoring native behavior. We should sets the selection range to zero, |
6221283c619f
7124528: [macosx] Selection is not cleared properly in text component.
serb
parents:
12047
diff
changeset
|
96 |
* when component lost its focus. |
6221283c619f
7124528: [macosx] Selection is not cleared properly in text component.
serb
parents:
12047
diff
changeset
|
97 |
* |
6221283c619f
7124528: [macosx] Selection is not cleared properly in text component.
serb
parents:
12047
diff
changeset
|
98 |
* @param e the focus event |
6221283c619f
7124528: [macosx] Selection is not cleared properly in text component.
serb
parents:
12047
diff
changeset
|
99 |
*/ |
6221283c619f
7124528: [macosx] Selection is not cleared properly in text component.
serb
parents:
12047
diff
changeset
|
100 |
@Override |
6221283c619f
7124528: [macosx] Selection is not cleared properly in text component.
serb
parents:
12047
diff
changeset
|
101 |
protected void handleJavaFocusEvent(final FocusEvent e) { |
6221283c619f
7124528: [macosx] Selection is not cleared properly in text component.
serb
parents:
12047
diff
changeset
|
102 |
if (e.getID() == FocusEvent.FOCUS_LOST) { |
6221283c619f
7124528: [macosx] Selection is not cleared properly in text component.
serb
parents:
12047
diff
changeset
|
103 |
// In order to de-select the selection |
6221283c619f
7124528: [macosx] Selection is not cleared properly in text component.
serb
parents:
12047
diff
changeset
|
104 |
setCaretPosition(0); |
6221283c619f
7124528: [macosx] Selection is not cleared properly in text component.
serb
parents:
12047
diff
changeset
|
105 |
} |
6221283c619f
7124528: [macosx] Selection is not cleared properly in text component.
serb
parents:
12047
diff
changeset
|
106 |
super.handleJavaFocusEvent(e); |
6221283c619f
7124528: [macosx] Selection is not cleared properly in text component.
serb
parents:
12047
diff
changeset
|
107 |
} |
6221283c619f
7124528: [macosx] Selection is not cleared properly in text component.
serb
parents:
12047
diff
changeset
|
108 |
|
12047 | 109 |
private final class JTextAreaDelegate extends JPasswordField { |
110 |
||
111 |
// Empty non private constructor was added because access to this |
|
112 |
// class shouldn't be emulated by a synthetic accessor method. |
|
113 |
JTextAreaDelegate() { |
|
114 |
super(); |
|
115 |
} |
|
116 |
||
117 |
@Override |
|
12531
42a9335fd8b3
7124210: [macosx] Replacing text in a TextField does generate an extra TextEvent
alexp
parents:
12399
diff
changeset
|
118 |
public void replaceSelection(String content) { |
42a9335fd8b3
7124210: [macosx] Replacing text in a TextField does generate an extra TextEvent
alexp
parents:
12399
diff
changeset
|
119 |
getDocument().removeDocumentListener(LWTextFieldPeer.this); |
42a9335fd8b3
7124210: [macosx] Replacing text in a TextField does generate an extra TextEvent
alexp
parents:
12399
diff
changeset
|
120 |
super.replaceSelection(content); |
42a9335fd8b3
7124210: [macosx] Replacing text in a TextField does generate an extra TextEvent
alexp
parents:
12399
diff
changeset
|
121 |
// post only one text event in this case |
42a9335fd8b3
7124210: [macosx] Replacing text in a TextField does generate an extra TextEvent
alexp
parents:
12399
diff
changeset
|
122 |
postTextEvent(); |
42a9335fd8b3
7124210: [macosx] Replacing text in a TextField does generate an extra TextEvent
alexp
parents:
12399
diff
changeset
|
123 |
getDocument().addDocumentListener(LWTextFieldPeer.this); |
42a9335fd8b3
7124210: [macosx] Replacing text in a TextField does generate an extra TextEvent
alexp
parents:
12399
diff
changeset
|
124 |
} |
42a9335fd8b3
7124210: [macosx] Replacing text in a TextField does generate an extra TextEvent
alexp
parents:
12399
diff
changeset
|
125 |
|
42a9335fd8b3
7124210: [macosx] Replacing text in a TextField does generate an extra TextEvent
alexp
parents:
12399
diff
changeset
|
126 |
@Override |
12047 | 127 |
public boolean hasFocus() { |
128 |
return getTarget().hasFocus(); |
|
129 |
} |
|
130 |
||
131 |
@Override |
|
132 |
public Point getLocationOnScreen() { |
|
133 |
return LWTextFieldPeer.this.getLocationOnScreen(); |
|
134 |
} |
|
135 |
} |
|
136 |
} |