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
|
package javax.swing.plaf.basic;
import javax.swing.text.*;
import javax.swing.plaf.*;
import java.awt.*;
import javax.swing.*;
public class BasicTextUI extends TextUI
{
int gap = 3;
View view = new RootView();
Color textColor, disabledTextColor, normalBackgroundColor;
EditorKit kit = new DefaultEditorKit();
class RootView extends View
{
RootView()
{
super(null);
}
public void paint(Graphics g, Shape s)
{
if (view != null)
{
Rectangle r = s.getBounds();
view.setSize((int)r.getWidth(),
(int)r.getHeight());
view.paint(g, s);
}
}
}
public BasicTextUI()
{
}
public static ComponentUI createUI(final JComponent c)
{
return new BasicTextUI();
}
public void installUI(final JComponent c)
{
super.installUI(c);
textColor = new Color(0,0,0);
disabledTextColor = new Color(130, 130, 130);
normalBackgroundColor = new Color(192,192,192);
}
public Dimension getPreferredSize(JComponent c)
{
JTextComponent b = (JTextComponent) c;
View v = getRootView(b);
float w = v.getPreferredSpan(View.X_AXIS);
float h = v.getPreferredSpan(View.Y_AXIS);
return new Dimension((int)w, (int) h);
}
public void paint(Graphics g, JComponent c)
{
// view.paint(
}
public void damageRange(JTextComponent t, int p0, int p1)
{
damageRange(t, p0, p1, null, null);
}
public void damageRange(JTextComponent t,
int p0, int p1,
Position.Bias firstBias,
Position.Bias secondBias)
{
}
public EditorKit getEditorKit(JTextComponent t)
{
return kit;
}
public int getNextVisualPositionFrom(JTextComponent t,
int pos,
Position.Bias b,
int direction,
Position.Bias[] biasRet)
{
return 0;
}
public View getRootView(JTextComponent t)
{
return view;
}
public Rectangle modelToView(JTextComponent t, int pos)
{
return modelToView(t, pos, null);
}
public Rectangle modelToView(JTextComponent t, int pos, Position.Bias bias)
{
return null;
}
public int viewToModel(JTextComponent t, Point pt)
{
return viewToModel(t, pt, null);
}
public int viewToModel(JTextComponent t, Point pt, Position.Bias[] biasReturn)
{
return 0;
}
}
|